Interface CfnModelCardPropsMixin.TrainingMetricProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelCardPropsMixin.TrainingMetricProperty.Jsii$Proxy
- Enclosing class:
CfnModelCardPropsMixin
@Stability(Stable)
public static interface CfnModelCardPropsMixin.TrainingMetricProperty
extends software.amazon.jsii.JsiiSerializable
A result from a SageMaker AI 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.mixins.preview.services.sagemaker.mixins.*;
TrainingMetricProperty trainingMetricProperty = TrainingMetricProperty.builder()
.name("name")
.notes("notes")
.value(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelCardPropsMixin.TrainingMetricPropertystatic final classAn implementation forCfnModelCardPropsMixin.TrainingMetricProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetName()The name of the result from the SageMaker AI training job.default StringgetNotes()Any additional notes describing the result of the training job.default NumbergetValue()The value of a result from the SageMaker AI training job.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the result from the SageMaker AI training job.- See Also:
-
getNotes
Any additional notes describing the result of the training job.- See Also:
-
getValue
The value of a result from the SageMaker AI training job.- See Also:
-
builder
-