Interface CfnAlgorithm.HyperParameterSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAlgorithm.HyperParameterSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnAlgorithm
@Stability(Stable)
public static interface CfnAlgorithm.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.services.sagemaker.*;
HyperParameterSpecificationProperty hyperParameterSpecificationProperty = HyperParameterSpecificationProperty.builder()
.name("name")
.type("type")
// the properties below are optional
.defaultValue("defaultValue")
.description("description")
.isRequired(false)
.isTunable(false)
.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())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAlgorithm.HyperParameterSpecificationPropertystatic final classAn implementation forCfnAlgorithm.HyperParameterSpecificationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Stringdefault Stringdefault ObjectReturns union: eitherBooleanorIResolvabledefault ObjectReturns union: eitherBooleanorIResolvablegetName()default ObjectgetRange()Returns union: eitherIResolvableorCfnAlgorithm.ParameterRangePropertygetType()Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
- See Also:
-
getType
- See Also:
-
getDefaultValue
- See Also:
-
getDescription
- See Also:
-
getIsRequired
Returns union: eitherBooleanorIResolvable- See Also:
-
getIsTunable
Returns union: eitherBooleanorIResolvable- See Also:
-
getRange
Returns union: eitherIResolvableorCfnAlgorithm.ParameterRangeProperty- See Also:
-
builder
-