Module Values.CreateAppBundleRequestSource

Creates an app bundle to collect data from an application using AppFabric.

Sourcetype nonrec t = {
  1. clientToken : UUID.t option;
    (*

    Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value. If you don't provide this value, then Amazon Web Services generates a random one for you. If you retry the operation with the same ClientToken, but with different parameters, the retry fails with an IdempotentParameterMismatch error.

    *)
  2. customerManagedKeyIdentifier : Identifier.t option;
    (*

    The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to use to encrypt the application data. If this is not specified, an Amazon Web Services owned key is used for encryption.

    *)
  3. tags : TagList.t option;
    (*

    A map of the key-value pairs of the tag or tags to assign to the resource.

    *)
}
Sourceval make : ?clientToken:??? -> ?customerManagedKeyIdentifier:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of UUID.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