Module Values.ImageSource

An object representing an Amazon ECR image.

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

    The Amazon Web Services account ID associated with the registry containing the image.

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

    The name of the repository associated with the image.

    *)
  3. imageId : ImageIdentifier.t option;
    (*

    An object containing the image tag and image digest associated with an image.

    *)
  4. imageManifest : ImageManifest.t option;
    (*

    The image manifest associated with the image.

    *)
  5. imageManifestMediaType : MediaType.t option;
    (*

    The manifest media type of the image.

    *)
}
Sourceval make : ?registryId:??? -> ?repositoryName:??? -> ?imageId:??? -> ?imageManifest:??? -> ?imageManifestMediaType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RegistryId.t | `Structure of (string * [> `String of ImageDigest.t ]) list ]) 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