Module Values.ExportTaskSource

Export task.

Sourcetype nonrec t = {
  1. exportID : ExportID.t option;
    (*

    Export task id.

    *)
  2. arn : ARN.t option;
    (*

    ExportTask arn.

    *)
  3. s3Bucket : S3BucketName.t option;
    (*

    Export task s3 bucket.

    *)
  4. s3Key : S3Key.t option;
    (*

    Export task s3 key.

    *)
  5. s3BucketOwner : AccountID.t option;
    (*

    Export task s3 bucket owner.

    *)
  6. creationDateTime : ISO8601DatetimeString.t option;
    (*

    Export task creation datetime.

    *)
  7. endDateTime : ISO8601DatetimeString.t option;
    (*

    Export task end datetime.

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

    Export task status.

    *)
  9. progressPercentage : Float_.t option;
    (*

    Export task progress percentage.

    *)
  10. summary : ExportTaskSummary.t option;
    (*

    Export task summary.

    *)
  11. tags : TagsMap.t option;
    (*

    Export task tags.

    *)
}
Sourceval make : ?exportID:??? -> ?arn:??? -> ?s3Bucket:??? -> ?s3Key:??? -> ?s3BucketOwner:??? -> ?creationDateTime:??? -> ?endDateTime:??? -> ?status:??? -> ?progressPercentage:??? -> ?summary:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Float of Float_.t | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ExportID.t | `Structure of (string * [> `Long of PositiveInteger.t ]) list ]) 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