Module Values.RegistrySource

The details of a public registry.

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

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

    *)
  2. registryArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the public registry.

    *)
  3. registryUri : Url.t option;
    (*

    The URI of a public registry. The URI contains a universal prefix and the registry alias.

    *)
  4. verified : RegistryVerified.t option;
    (*

    Indicates whether the account is a verified Amazon Web Services Marketplace vendor. If an account is verified, each public repository receives a verified account badge on the Amazon ECR Public Gallery.

    *)
  5. aliases : RegistryAliasList.t option;
    (*

    An array of objects that represents the aliases for a public registry.

    *)
}
Sourceval make : ?registryId:??? -> ?registryArn:??? -> ?registryUri:??? -> ?verified:??? -> ?aliases:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of RegistryVerified.t | `List of [> `Structure of (string * [> `Boolean of PrimaryRegistryAliasFlag.t | `Enum of string | `String of RegistryAliasName.t ]) list ] list | `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