Module Values.BatchSegmentJobSource

Contains information on a batch segment job.

Sourcetype nonrec t = {
  1. jobName : Name.t option;
    (*

    The name of the batch segment job.

    *)
  2. batchSegmentJobArn : Arn.t option;
    (*

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

    *)
  3. filterArn : Arn.t option;
    (*

    The ARN of the filter used on the batch segment job.

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

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

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

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

    *)
  6. numResults : NumBatchResults.t option;
    (*

    The number of predicted users generated by the batch segment job for each line of input data. The maximum number of users per segment is 5 million.

    *)
  7. jobInput : BatchSegmentJobInput.t option;
    (*

    The Amazon S3 path that leads to the input data used to generate the batch segment job.

    *)
  8. jobOutput : BatchSegmentJobOutput.t option;
    (*

    The Amazon S3 bucket that contains the output data generated by the batch segment job.

    *)
  9. roleArn : RoleArn.t option;
    (*

    The ARN of the Amazon Identity and Access Management (IAM) role that requested the batch segment job.

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

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

    The time at which the batch segment job was created.

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

    The time at which the batch segment job last updated.

    *)
}
Sourceval make : ?jobName:??? -> ?batchSegmentJobArn:??? -> ?filterArn:??? -> ?failureReason:??? -> ?solutionVersionArn:??? -> ?numResults:??? -> ?jobInput:??? -> ?jobOutput:??? -> ?roleArn:??? -> ?status:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NumBatchResults.t | `String of Name.t | `Structure of (string * [> `Structure of (string * [> `String of S3Location.t ]) list ]) list | `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