Interface CfnAlgorithmPropsMixin.ParameterRangeProperty

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

@Stability(Stable) public static interface CfnAlgorithmPropsMixin.ParameterRangeProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 ParameterRangeProperty parameterRangeProperty = ParameterRangeProperty.builder()
         .categoricalParameterRangeSpecification(CategoricalParameterRangeSpecificationProperty.builder()
                 .values(List.of("values"))
                 .build())
         .continuousParameterRangeSpecification(ContinuousParameterRangeSpecificationProperty.builder()
                 .maxValue("maxValue")
                 .minValue("minValue")
                 .build())
         .integerParameterRangeSpecification(IntegerParameterRangeSpecificationProperty.builder()
                 .maxValue("maxValue")
                 .minValue("minValue")
                 .build())
         .build();
 

See Also: