Module Values.ExportSummarySource

Summary information about an export, including its unique identifier, current status, creation time, and the domain being exported.

Sourcetype nonrec t = {
  1. exportArn : ExportArn.t option;
    (*

    Unique ARN identifier of the export.

    *)
  2. 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.

    *)
  3. requestedAt : RequestedAt.t option;
    (*

    Timestamp when the export request was received by the service

    *)
  4. domainName : DomainName.t option;
    (*

    The name of the domain for which the export was created.

    *)
}
Sourceval make : ?exportArn:??? -> ?exportStatus:??? -> ?requestedAt:??? -> ?domainName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ExportArn.t | `Timestamp of RequestedAt.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