Values.ExportSummarySourceSummary information about an export, including its unique identifier, current status, creation time, and the domain being exported.
type nonrec t = {exportArn : ExportArn.t option;Unique ARN identifier of the export.
*)exportStatus : ExportStatus.t option;The current state of the export. Current possible values include : PENDING - export request received, IN_PROGRESS - export is being processed, SUCCEEDED - export completed successfully, and FAILED - export encountered an error.
*)requestedAt : RequestedAt.t option;Timestamp when the export request was received by the service
*)domainName : DomainName.t option;The name of the domain for which the export was created.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of ExportArn.t
| `Timestamp of RequestedAt.t ])
list ]