Module Values.BatchSegmentJobSummarySource

A truncated version of the BatchSegmentJob datatype. ListBatchSegmentJobs operation returns a list of batch segment job summaries.

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

    The Amazon Resource Name (ARN) of the batch segment job.

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

    The name of the batch segment job.

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

    The status of the batch segment job. The status is one of the following values: PENDING IN PROGRESS ACTIVE CREATE FAILED

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

    The time at which the batch segment job was created.

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

    The time at which the batch segment job was last updated.

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

    If the batch segment job failed, the reason for the failure.

    *)
  7. solutionVersionArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the solution version used by the batch segment job to generate batch segments.

    *)
}
Sourceval make : ?batchSegmentJobArn:??? -> ?jobName:??? -> ?status:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?failureReason:??? -> ?solutionVersionArn:??? -> 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