Module Values.CreateArchiveRequestSource

The request to create a new email archive.

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

    A unique token Amazon SES uses to recognize retries of this request.

    *)
  2. archiveName : ArchiveNameString.t;
    (*

    A unique name for the new archive.

    *)
  3. retention : ArchiveRetention.t option;
    (*

    The period for retaining emails in the archive before automatic deletion.

    *)
  4. kmsKeyArn : KmsKeyArn.t option;
    (*

    The Amazon Resource Name (ARN) of the KMS key for encrypting emails in the archive.

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

    The tags used to organize, track, or control access for the resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?retention:??? -> ?kmsKeyArn:??? -> ?tags:??? -> archiveName:ArchiveNameString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of IdempotencyToken.t | `Structure of (string * [> `Enum of string ]) 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