Module Values.BatchPredictionSource

Represents the output of a GetBatchPrediction operation. The content consists of the detailed metadata, the status, and the data file information of a Batch Prediction.

Sourcetype nonrec t = {
  1. batchPredictionId : EntityId.t option;
    (*

    The ID assigned to the BatchPrediction at creation. This value should be identical to the value of the BatchPredictionID in the request.

    *)
  2. mLModelId : EntityId.t option;
    (*

    The ID of the MLModel that generated predictions for the BatchPrediction request.

    *)
  3. batchPredictionDataSourceId : EntityId.t option;
    (*

    The ID of the DataSource that points to the group of observations to predict.

    *)
  4. inputDataLocationS3 : S3Url.t option;
    (*

    The location of the data file or directory in Amazon Simple Storage Service (Amazon S3).

    *)
  5. createdByIamUser : AwsUserArn.t option;
    (*

    The AWS user account that invoked the BatchPrediction. The account type can be either an AWS root account or an AWS Identity and Access Management (IAM) user account.

    *)
  6. createdAt : EpochTime.t option;
    (*

    The time that the BatchPrediction was created. The time is expressed in epoch time.

    *)
  7. lastUpdatedAt : EpochTime.t option;
    (*

    The time of the most recent edit to the BatchPrediction. The time is expressed in epoch time.

    *)
  8. name : EntityName.t option;
    (*

    A user-supplied name or description of the BatchPrediction.

    *)
  9. status : EntityStatus.t option;
    (*

    The status of the BatchPrediction. This element can have one of the following values: PENDING - Amazon Machine Learning (Amazon ML) submitted a request to generate predictions for a batch of observations. INPROGRESS - The process is underway. FAILED - The request to perform a batch prediction did not run to completion. It is not usable. COMPLETED - The batch prediction process completed successfully. DELETED - The BatchPrediction is marked as deleted. It is not usable.

    *)
  10. outputUri : S3Url.t option;
    (*

    The location of an Amazon S3 bucket or directory to receive the operation results. The following substrings are not allowed in the s3 key portion of the outputURI field: ':', '//', '/./', '/../'.

    *)
  11. message : Message.t option;
    (*

    A description of the most recent details about processing the batch prediction request.

    *)
  12. computeTime : LongType.t option;
  13. finishedAt : EpochTime.t option;
  14. startedAt : EpochTime.t option;
  15. totalRecordCount : LongType.t option;
  16. invalidRecordCount : LongType.t option;
}
Sourceval make : ?batchPredictionId:??? -> ?mLModelId:??? -> ?batchPredictionDataSourceId:??? -> ?inputDataLocationS3:??? -> ?createdByIamUser:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?name:??? -> ?status:??? -> ?outputUri:??? -> ?message:??? -> ?computeTime:??? -> ?finishedAt:??? -> ?startedAt:??? -> ?totalRecordCount:??? -> ?invalidRecordCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of LongType.t | `String of EntityId.t | `Timestamp of EpochTime.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