The configuration properties of a flywheel iteration.

interface FlywheelIterationProperties {
    CreationTime?: Date;
    EndTime?: Date;
    EvaluatedModelArn?: string;
    EvaluatedModelMetrics?: FlywheelModelEvaluationMetrics;
    EvaluationManifestS3Prefix?: string;
    FlywheelArn?: string;
    FlywheelIterationId?: string;
    Message?: string;
    Status?: FlywheelIterationStatus;
    TrainedModelArn?: string;
    TrainedModelMetrics?: FlywheelModelEvaluationMetrics;
}

Properties

CreationTime?: Date

The creation start time of the flywheel iteration.

EndTime?: Date

The completion time of this flywheel iteration.

EvaluatedModelArn?: string

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

EvaluatedModelMetrics?: FlywheelModelEvaluationMetrics

The evaluation metrics associated with the evaluated model.

EvaluationManifestS3Prefix?: string

FlywheelArn?: string

FlywheelIterationId?: string

Message?: string

A description of the status of the flywheel iteration.

The status of the flywheel iteration.

TrainedModelArn?: string

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

TrainedModelMetrics?: FlywheelModelEvaluationMetrics

The metrics associated with the trained model.