Interface CfnSolution.ContinuousHyperParameterRangeProperty

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

@Stability(Stable) public static interface CfnSolution.ContinuousHyperParameterRangeProperty extends software.amazon.jsii.JsiiSerializable
Provides the name and range of a continuous hyperparameter.

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.personalize.*;
 ContinuousHyperParameterRangeProperty continuousHyperParameterRangeProperty = ContinuousHyperParameterRangeProperty.builder()
         .maxValue(123)
         .minValue(123)
         .name("name")
         .build();
 

See Also: