Module Values.GetExportJobResponseSource

An HTTP 200 response if the request succeeds, or an error message if the request fails.

Sourcetype nonrec t = {
  1. jobId : JobId.t option;
    (*

    The export job ID.

    *)
  2. exportSourceType : ExportSourceType.t option;
    (*

    The type of source of the export job.

    *)
  3. jobStatus : JobStatus.t option;
    (*

    The status of the export job.

    *)
  4. exportDestination : ExportDestination.t option;
    (*

    The destination of the export job.

    *)
  5. exportDataSource : ExportDataSource.t option;
    (*

    The data source of the export job.

    *)
  6. createdTimestamp : Timestamp.t option;
    (*

    The timestamp of when the export job was created.

    *)
  7. completedTimestamp : Timestamp.t option;
    (*

    The timestamp of when the export job was completed.

    *)
  8. failureInfo : FailureInfo.t option;
    (*

    The failure details about an export job.

    *)
  9. statistics : ExportStatistics.t option;
    (*

    The statistics about the export job.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `NotFoundException of NotFoundException.t
  3. | `TooManyRequestsException of TooManyRequestsException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?jobId:??? -> ?exportSourceType:??? -> ?jobStatus:??? -> ?exportDestination:??? -> ?exportDataSource:??? -> ?createdTimestamp:??? -> ?completedTimestamp:??? -> ?failureInfo:??? -> ?statistics:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of unit | `NotFoundException of unit | `TooManyRequestsException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of unit | `NotFoundException of unit | `TooManyRequestsException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of JobId.t | `Structure of (string * [> `Enum of string | `Integer of ProcessedRecordsCount.t | `String of S3Url.t | `Structure of (string * [> `Enum of string | `Integer of MessageInsightsExportMaxResults.t | `List of [> `Structure of (string * [> `Enum of string ]) list ] list | `Map of ([> `Enum of string ] * [> `List of [> `String of MetricDimensionValue.t ] list ]) list | `Structure of (string * [> `List of [> `Enum of string | `String of InsightsEmailAddress.t ] list ]) list | `Timestamp of Timestamp.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