Module Values.DeleteRepositoryRequestSource

Deletes a repository. If the repository isn't empty, you must either delete the contents of the repository or use the force option to delete the repository and have Amazon ECR delete all of its contents on your behalf.

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

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

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

    The name of the repository to delete.

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

    If true, deleting the repository force deletes the contents of the repository. If false, the repository must be empty before attempting to delete it.

    *)
}
Sourceval context_ : string
Sourceval make : ?registryId:??? -> ?force:??? -> repositoryName:RepositoryName.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