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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnTrialComponentPropsMixin.TrialComponentParameterValueProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNumberValue
The numeric value of a numeric hyperparameter.- See Also:
-
getStringValue
The string value of a categorical hyperparameter.- See Also:
-
builder
@Stability(Stable) static CfnTrialComponentPropsMixin.TrialComponentParameterValueProperty.Builder builder()
-