Module Values.ImageMappingSource

Specifies image mappings that workflow tasks can use. For example, you can replace all the task references of a public image to use an equivalent image in your private ECR repository. You can use image mappings with upstream registries that don't support pull through cache. You need to manually synchronize the upstream registry with your private repository.

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

    Specifies the URI of the source image in the upstream registry.

    *)
  2. destinationImage : Uri_.t option;
    (*

    Specifies the URI of the corresponding image in the private ECR registry.

    *)
}
Sourceval make : ?sourceImage:??? -> ?destinationImage:??? -> 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