Module Values.ImageConfigurationSource

The applied image configuration.

Sourcetype nonrec t = {
  1. imageUri : ImageUri.t option;
    (*

    The image URI.

    *)
  2. resolvedImageDigest : ImageDigest.t option;
    (*

    The SHA256 digest of the image URI. This indicates which specific image the application is configured for. The image digest doesn't exist until an application has started.

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