Module Values.ImageDetailsSource

Information about the container image used for a task.

Sourcetype nonrec t = {
  1. image : Uri_.t option;
    (*

    The URI of the container image.

    *)
  2. imageDigest : TaskImageDigest.t option;
    (*

    The container image digest. If the image URI was transformed, this will be the digest of the container image referenced by the transformed URI.

    *)
  3. sourceImage : Uri_.t option;
    (*

    URI of the source registry. If the URI is from a third-party registry, Amazon Web Services HealthOmics transforms the URI to the corresponding ECR path, using the pull-through cache mapping rules.

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