Interface CfnModelCard.TrainingMetricProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnModelCard.TrainingMetricProperty.Jsii$Proxy
Enclosing class:
CfnModelCard

@Stability(Stable) public static interface CfnModelCard.TrainingMetricProperty extends software.amazon.jsii.JsiiSerializable
A result from a SageMaker training job.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 TrainingMetricProperty trainingMetricProperty = TrainingMetricProperty.builder()
         .name("name")
         .value(123)
         // the properties below are optional
         .notes("notes")
         .build();