Interface CfnAlgorithmPropsMixin.HyperParameterSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAlgorithmPropsMixin.HyperParameterSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnAlgorithmPropsMixin
@Stability(Stable)
public static interface CfnAlgorithmPropsMixin.HyperParameterSpecificationProperty
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.*;
HyperParameterSpecificationProperty hyperParameterSpecificationProperty = HyperParameterSpecificationProperty.builder()
.defaultValue("defaultValue")
.description("description")
.isRequired(false)
.isTunable(false)
.name("name")
.range(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())
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAlgorithmPropsMixin.HyperParameterSpecificationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Stringdefault Stringdefault ObjectReturns union: eitherBooleanorIResolvabledefault ObjectReturns union: eitherBooleanorIResolvabledefault StringgetName()default ObjectgetRange()Returns union: eitherIResolvableorCfnAlgorithmPropsMixin.ParameterRangePropertydefault StringgetType()Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultValue
- See Also:
-
getDescription
- See Also:
-
getIsRequired
Returns union: eitherBooleanorIResolvable- See Also:
-
getIsTunable
Returns union: eitherBooleanorIResolvable- See Also:
-
getName
- See Also:
-
getRange
Returns union: eitherIResolvableorCfnAlgorithmPropsMixin.ParameterRangeProperty- See Also:
-
getType
- See Also:
-
builder
@Stability(Stable) static CfnAlgorithmPropsMixin.HyperParameterSpecificationProperty.Builder builder()
-