Module Values.DatasetExportJobSummarySource

Provides a summary of the properties of a dataset export job. For a complete listing, call the DescribeDatasetExportJob API.

Sourcetype nonrec t = {
  1. datasetExportJobArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the dataset export job.

    *)
  2. jobName : Name.t option;
    (*

    The name of the dataset export job.

    *)
  3. status : Status.t option;
    (*

    The status of the dataset export job. A dataset export job can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

    *)
  4. creationDateTime : Date.t option;
    (*

    The date and time (in Unix time) that the dataset export job was created.

    *)
  5. lastUpdatedDateTime : Date.t option;
    (*

    The date and time (in Unix time) that the dataset export job status was last updated.

    *)
  6. failureReason : FailureReason.t option;
    (*

    If a dataset export job fails, the reason behind the failure.

    *)
}
Sourceval make : ?datasetExportJobArn:??? -> ?jobName:??? -> ?status:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Arn.t | `Timestamp of Date.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