Module Values_2.LabelingJobSummarySource

Provides summary information about a labeling job.

Sourcetype nonrec t = {
  1. labelingJobName : Values_1.LabelingJobName.t option;
    (*

    The name of the labeling job.

    *)
  2. labelingJobArn : Values_1.LabelingJobArn.t option;
    (*

    The Amazon Resource Name (ARN) assigned to the labeling job when it was created.

    *)
  3. creationTime : Values_0.Timestamp.t option;
    (*

    The date and time that the job was created (timestamp).

    *)
  4. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    The date and time that the job was last modified (timestamp).

    *)
  5. labelingJobStatus : Values_1.LabelingJobStatus.t option;
    (*

    The current status of the labeling job.

    *)
  6. labelCounters : Values_1.LabelCounters.t option;
    (*

    Counts showing the progress of the labeling job.

    *)
  7. workteamArn : Values_0.WorkteamArn.t option;
    (*

    The Amazon Resource Name (ARN) of the work team assigned to the job.

    *)
  8. preHumanTaskLambdaArn : Values_0.LambdaFunctionArn.t option;
    (*

    The Amazon Resource Name (ARN) of a Lambda function. The function is run before each data object is sent to a worker.

    *)
  9. annotationConsolidationLambdaArn : Values_0.LambdaFunctionArn.t option;
    (*

    The Amazon Resource Name (ARN) of the Lambda function used to consolidate the annotations from individual workers into a label for a data object. For more information, see Annotation Consolidation.

    *)
  10. failureReason : Values_0.FailureReason.t option;
    (*

    If the LabelingJobStatus field is Failed, this field contains a description of the error.

    *)
  11. labelingJobOutput : Values_1.LabelingJobOutput.t option;
    (*

    The location of the output produced by the labeling job.

    *)
  12. inputConfig : Values_1.LabelingJobInputConfig.t option;
    (*

    Input configuration for the labeling job.

    *)
}
Sourceval make : ?labelingJobName:??? -> ?labelingJobArn:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> ?labelingJobStatus:??? -> ?labelCounters:??? -> ?workteamArn:??? -> ?preHumanTaskLambdaArn:??? -> ?annotationConsolidationLambdaArn:??? -> ?failureReason:??? -> ?labelingJobOutput:??? -> ?inputConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_1.LabelingJobName.t | `Structure of (string * [> `Integer of int | `String of Values_0.S3Uri.t | `Structure of (string * [> `List of [> `Enum of string ] list | `Structure of (string * [> `String of Values_0.S3Uri.t ]) list ]) list ]) list | `Timestamp of Values_0.Timestamp.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