Module Values.FlywheelIterationPropertiesSource

The configuration properties of a flywheel iteration.

Sourcetype nonrec t = {
  1. flywheelArn : ComprehendFlywheelArn.t option;
  2. flywheelIterationId : FlywheelIterationId.t option;
  3. creationTime : Timestamp.t option;
    (*

    The creation start time of the flywheel iteration.

    *)
  4. endTime : Timestamp.t option;
    (*

    The completion time of this flywheel iteration.

    *)
  5. status : FlywheelIterationStatus.t option;
    (*

    The status of the flywheel iteration.

    *)
  6. message : AnyLengthString.t option;
    (*

    A description of the status of the flywheel iteration.

    *)
  7. evaluatedModelArn : ComprehendModelArn.t option;
    (*

    The ARN of the evaluated model associated with this flywheel iteration.

    *)
  8. evaluatedModelMetrics : FlywheelModelEvaluationMetrics.t option;
  9. trainedModelArn : ComprehendModelArn.t option;
    (*

    The ARN of the trained model associated with this flywheel iteration.

    *)
  10. trainedModelMetrics : FlywheelModelEvaluationMetrics.t option;
    (*

    The metrics associated with the trained model.

    *)
  11. evaluationManifestS3Prefix : S3Uri.t option;
}
Sourceval make : ?flywheelArn:??? -> ?flywheelIterationId:??? -> ?creationTime:??? -> ?endTime:??? -> ?status:??? -> ?message:??? -> ?evaluatedModelArn:??? -> ?evaluatedModelMetrics:??? -> ?trainedModelArn:??? -> ?trainedModelMetrics:??? -> ?evaluationManifestS3Prefix:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ComprehendFlywheelArn.t | `Structure of (string * [> `Double of Double.t ]) 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