Module Values.GetArchiveExportResponseSource

The response containing details of the specified archive export job.

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

    The identifier of the archive the email export was performed from.

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

    The criteria used to filter emails included in the export.

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

    The start of the timestamp range the exported emails cover.

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

    The end of the date range the exported emails cover.

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

    The maximum number of email items included in the export.

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

    Where the exported emails are being delivered.

    *)
  7. status : ExportStatus.t option;
    (*

    The current status of the export job.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ThrottlingException of ThrottlingException.t
  3. | `ValidationException of ValidationException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?archiveId:??? -> ?filters:??? -> ?fromTimestamp:??? -> ?toTimestamp:??? -> ?maxResults:??? -> ?exportDestinationConfiguration:??? -> ?status:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ExportMaxResults.t | `String of ArchiveId.t | `Structure of (string * [> `Enum 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 | `String of ErrorMessage.t | `Structure of (string * [> `String of S3Location.t ]) list | `Timestamp of Timestamp.t ]) 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