Module Values.InferenceExecutionSummarySource

Contains information about the specific inference execution, including input and output data configuration, inference scheduling information, status, and so on.

Sourcetype nonrec t = {
  1. modelName : ModelName.t option;
    (*

    The name of the machine learning model being used for the inference execution.

    *)
  2. modelArn : ModelArn.t option;
    (*

    The Amazon Resource Name (ARN) of the machine learning model used for the inference execution.

    *)
  3. inferenceSchedulerName : InferenceSchedulerName.t option;
    (*

    The name of the inference scheduler being used for the inference execution.

    *)
  4. inferenceSchedulerArn : InferenceSchedulerArn.t option;
    (*

    The Amazon Resource Name (ARN) of the inference scheduler being used for the inference execution.

    *)
  5. scheduledStartTime : Timestamp.t option;
    (*

    Indicates the start time at which the inference scheduler began the specific inference execution.

    *)
  6. dataStartTime : Timestamp.t option;
    (*

    Indicates the time reference in the dataset at which the inference execution began.

    *)
  7. dataEndTime : Timestamp.t option;
    (*

    Indicates the time reference in the dataset at which the inference execution stopped.

    *)
  8. dataInputConfiguration : InferenceInputConfiguration.t option;
    (*

    Specifies configuration information for the input data for the inference scheduler, including delimiter, format, and dataset location.

    *)
  9. dataOutputConfiguration : InferenceOutputConfiguration.t option;
    (*

    Specifies configuration information for the output results from for the inference execution, including the output Amazon S3 location.

    *)
  10. customerResultObject : S3Object.t option;
    (*

    The S3 object that the inference execution results were uploaded to.

    *)
  11. status : InferenceExecutionStatus.t option;
    (*

    Indicates the status of the inference execution.

    *)
  12. failedReason : BoundedLengthString.t option;
    (*

    Specifies the reason for failure when an inference execution has failed.

    *)
  13. modelVersion : ModelVersion.t option;
    (*

    The model version used for the inference execution.

    *)
  14. modelVersionArn : ModelVersionArn.t option;
    (*

    The Amazon Resource Number (ARN) of the model version used for the inference execution.

    *)
}
Sourceval make : ?modelName:??? -> ?modelArn:??? -> ?inferenceSchedulerName:??? -> ?inferenceSchedulerArn:??? -> ?scheduledStartTime:??? -> ?dataStartTime:??? -> ?dataEndTime:??? -> ?dataInputConfiguration:??? -> ?dataOutputConfiguration:??? -> ?customerResultObject:??? -> ?status:??? -> ?failedReason:??? -> ?modelVersion:??? -> ?modelVersionArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of ModelVersion.t | `String of ModelName.t | `Structure of (string * [> `String of TimeZoneOffset.t | `Structure of (string * [> `String of S3Bucket.t ]) list ]) list | `Timestamp of 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