Module Values.DistributeImageRequestSource

DistributeImage distributes existing AMIs to additional regions and accounts without rebuilding the image.

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

    The source image Amazon Resource Name (ARN) to distribute.

    *)
  2. distributionConfigurationArn : DistributionConfigurationArn.t;
    (*

    The Amazon Resource Name (ARN) of the distribution configuration to use.

    *)
  3. executionRole : RoleNameOrArn.t;
    (*

    The IAM role to use for the distribution.

    *)
  4. tags : TagMap.t option;
    (*

    The tags to apply to the distributed image.

    *)
  5. clientToken : ClientToken.t;
    (*

    Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see Ensuring idempotency in the Amazon EC2 API Reference.

    *)
  6. loggingConfiguration : ImageLoggingConfiguration.t option;
    (*

    The logging configuration for the distribution.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> ?loggingConfiguration:??? -> sourceImage:NonEmptyString.t -> distributionConfigurationArn:DistributionConfigurationArn.t -> executionRole:RoleNameOrArn.t -> clientToken:ClientToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of NonEmptyString.t | `Structure of (string * [> `String of LogGroupName.t ]) list ]) 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