Interface CfnTrialComponentPropsMixin.TrialComponentParameterValueProperty

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

@Stability(Stable) public static interface CfnTrialComponentPropsMixin.TrialComponentParameterValueProperty extends software.amazon.jsii.JsiiSerializable
The value of a hyperparameter.

Only one of StringValue or NumberValue can be specified.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
 TrialComponentParameterValueProperty trialComponentParameterValueProperty = TrialComponentParameterValueProperty.builder()
         .numberValue(123)
         .stringValue("stringValue")
         .build();
 

See Also: