Module Values.BatchInferenceJobSource

Contains information on a batch inference job.

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

    The name of the batch inference job.

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

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

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

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

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

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

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

    The Amazon Resource Name (ARN) of the solution version from which the batch inference job was created.

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

    The number of recommendations generated by the batch inference job. This number includes the error messages generated for failed input records.

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

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

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

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

    *)
  9. batchInferenceJobConfig : BatchInferenceJobConfig.t option;
    (*

    A string to string map of the configuration details of a batch inference job.

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

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

    *)
  11. batchInferenceJobMode : BatchInferenceJobMode.t option;
    (*

    The job's mode.

    *)
  12. themeGenerationConfig : ThemeGenerationConfig.t option;
    (*

    The job's theme generation settings.

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

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

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

    The time at which the batch inference job was created.

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

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

    *)
}
Sourceval make : ?jobName:??? -> ?batchInferenceJobArn:??? -> ?filterArn:??? -> ?failureReason:??? -> ?solutionVersionArn:??? -> ?numResults:??? -> ?jobInput:??? -> ?jobOutput:??? -> ?batchInferenceJobConfig:??? -> ?roleArn:??? -> ?batchInferenceJobMode:??? -> ?themeGenerationConfig:??? -> ?status:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of NumBatchResults.t | `String of Name.t | `Structure of (string * [> `Map of ([> `Enum of string | `String of ParameterName.t ] * [> `Double of RankingInfluenceWeight.t | `String of ParameterValue.t ]) list | `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