Module Values.SetRepositoryPolicyRequestSource

Applies a repository policy to the specified repository to control access permissions. For more information, see Amazon ECR Repository policies in the Amazon Elastic Container Registry User Guide.

Sourcetype nonrec t = {
  1. registryId : RegistryId.t option;
    (*

    The Amazon Web Services account ID associated with the registry that contains the repository. If you do not specify a registry, the default registry is assumed.

    *)
  2. repositoryName : RepositoryName.t;
    (*

    The name of the repository to receive the policy.

    *)
  3. policyText : RepositoryPolicyText.t;
    (*

    The JSON repository policy text to apply to the repository. For more information, see Amazon ECR repository policies in the Amazon Elastic Container Registry User Guide.

    *)
  4. force : ForceFlag.t option;
    (*

    If the policy you are attempting to set on a repository policy would prevent you from setting another policy in the future, you must force the SetRepositoryPolicy operation. This is intended to prevent accidental repository lock outs.

    *)
}
Sourceval context_ : string
Sourceval make : ?registryId:??? -> ?force:??? -> repositoryName:RepositoryName.t -> policyText:RepositoryPolicyText.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of ForceFlag.t | `String of RegistryId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t