Module Values.RegistryAliasSource

An object representing the aliases for a public registry. A public registry is given an alias when it's created. However, a custom alias can be set using the Amazon ECR console. For more information, see Registries in the Amazon Elastic Container Registry User Guide.

Sourcetype nonrec t = {
  1. name : RegistryAliasName.t option;
    (*

    The name of the registry alias.

    *)
  2. status : RegistryAliasStatus.t option;
    (*

    The status of the registry alias.

    *)
  3. primaryRegistryAlias : PrimaryRegistryAliasFlag.t option;
    (*

    Indicates whether the registry alias is the primary alias for the registry. If true, the alias is the primary registry alias and is displayed in both the repository URL and the image URI used in the docker pull commands on the Amazon ECR Public Gallery. A registry alias that isn't the primary registry alias can be used in the repository URI in a docker pull command.

    *)
  4. defaultRegistryAlias : DefaultRegistryAliasFlag.t option;
    (*

    Indicates whether the registry alias is the default alias for the registry. When the first public repository is created, your public registry is assigned a default registry alias.

    *)
}
Sourceval make : ?name:??? -> ?status:??? -> ?primaryRegistryAlias:??? -> ?defaultRegistryAlias:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of PrimaryRegistryAliasFlag.t | `Enum of string | `String of RegistryAliasName.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