Module Values.ExportSummarySource

Summary information about an export task.

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

    The Amazon Resource Name (ARN) of the export.

    *)
  2. exportStatus : ExportStatus.t option;
    (*

    Export can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED.

    *)
  3. exportType : ExportType.t option;
    (*

    The type of export that was performed. Valid values are FULL_EXPORT or INCREMENTAL_EXPORT.

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