Module Values.ImageIdentifierSource

An object with identifying information for an image in an Amazon ECR repository.

Sourcetype nonrec t = {
  1. imageDigest : ImageDigest.t option;
    (*

    The sha256 digest of the image manifest.

    *)
  2. imageTag : ImageTag.t option;
    (*

    The tag used for the image.

    *)
}
Sourceval make : ?imageDigest:??? -> ?imageTag:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ImageDigest.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