Module Values.ContainerImageSource

The details about the container image a service revision uses. To ensure that all tasks in a service use the same container image, Amazon ECS resolves container image names and any image tags specified in the task definition to container image digests. After the container image digest has been established, Amazon ECS uses the digest to start any other desired tasks, and for any future service and service revision updates. This leads to all tasks in a service always running identical container images, resulting in version consistency for your software. For more information, see Container image resolution in the Amazon ECS Developer Guide.

Sourcetype nonrec t = {
  1. containerName : String_.t option;
    (*

    The name of the container.

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

    The container image digest.

    *)
  3. image : String_.t option;
    (*

    The container image.

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