Module Values.CopyImageRequestSource

Copies the image within the same region or to a new region within the same AWS account. Note that any tags you added to the image will not be copied.

Sourcetype nonrec t = {
  1. sourceImageName : Name.t;
    (*

    The name of the image to copy.

    *)
  2. destinationImageName : Name.t;
    (*

    The name that the image will have when it is copied to the destination.

    *)
  3. destinationRegion : RegionName.t;
    (*

    The destination region to which the image will be copied. This parameter is required, even if you are copying an image within the same region.

    *)
  4. destinationImageDescription : Description.t option;
    (*

    The description that the image will have when it is copied to the destination.

    *)
}
Sourceval context_ : string
Sourceval make : ?destinationImageDescription:??? -> sourceImageName:Name.t -> destinationImageName:Name.t -> destinationRegion:RegionName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Name.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