Module Values.StartArchiveExportRequestSource

The request to initiate an export of emails from an archive.

Sourcetype nonrec t = {
  1. archiveId : ArchiveId.t;
    (*

    The identifier of the archive to export emails from.

    *)
  2. filters : ArchiveFilters.t option;
    (*

    Criteria to filter which emails are included in the export.

    *)
  3. fromTimestamp : Timestamp.t;
    (*

    The start of the timestamp range to include emails from.

    *)
  4. toTimestamp : Timestamp.t;
    (*

    The end of the timestamp range to include emails from.

    *)
  5. maxResults : ExportMaxResults.t option;
    (*

    The maximum number of email items to include in the export.

    *)
  6. exportDestinationConfiguration : ExportDestinationConfiguration.t;
    (*

    Details on where to deliver the exported email data.

    *)
  7. includeMetadata : Boolean.t option;
    (*

    Whether to include message metadata as JSON files in the export.

    *)
}
Sourceval context_ : string
Sourceval make : ?filters:??? -> ?maxResults:??? -> ?includeMetadata:??? -> archiveId:ArchiveId.t -> fromTimestamp:Timestamp.t -> toTimestamp:Timestamp.t -> exportDestinationConfiguration:ExportDestinationConfiguration.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of ExportMaxResults.t | `String of ArchiveId.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `String of StringValue.t ] list | `Structure of (string * [> `Enum of string ]) list ]) list ]) list ] list | `Structure of (string * [> `String of S3Location.t ]) list ]) list | `Timestamp of Timestamp.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