Interface CfnModelCard.TrainingHyperParameterProperty

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

@Stability(Stable) public static interface CfnModelCard.TrainingHyperParameterProperty extends software.amazon.jsii.JsiiSerializable
A hyper parameter that was configured in training the model.

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.*;
 TrainingHyperParameterProperty trainingHyperParameterProperty = TrainingHyperParameterProperty.builder()
         .name("name")
         .value("value")
         .build();