Class DefaultIntegerHyperParameterRange
- java.lang.Object
-
- software.amazon.awssdk.services.personalize.model.DefaultIntegerHyperParameterRange
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<DefaultIntegerHyperParameterRange.Builder,DefaultIntegerHyperParameterRange>
@Generated("software.amazon.awssdk:codegen") public final class DefaultIntegerHyperParameterRange extends Object implements SdkPojo, Serializable, ToCopyableBuilder<DefaultIntegerHyperParameterRange.Builder,DefaultIntegerHyperParameterRange>
Provides the name and default range of a integer-valued hyperparameter and whether the hyperparameter is tunable. A tunable hyperparameter can have its value determined during hyperparameter optimization (HPO).
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceDefaultIntegerHyperParameterRange.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DefaultIntegerHyperParameterRange.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()BooleanisTunable()Indicates whether the hyperparameter is tunable.IntegermaxValue()The maximum allowable value for the hyperparameter.IntegerminValue()The minimum allowable value for the hyperparameter.Stringname()The name of the hyperparameter.List<SdkField<?>>sdkFields()static Class<? extends DefaultIntegerHyperParameterRange.Builder>serializableBuilderClass()DefaultIntegerHyperParameterRange.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
name
public final String name()
The name of the hyperparameter.
- Returns:
- The name of the hyperparameter.
-
minValue
public final Integer minValue()
The minimum allowable value for the hyperparameter.
- Returns:
- The minimum allowable value for the hyperparameter.
-
maxValue
public final Integer maxValue()
The maximum allowable value for the hyperparameter.
- Returns:
- The maximum allowable value for the hyperparameter.
-
isTunable
public final Boolean isTunable()
Indicates whether the hyperparameter is tunable.
- Returns:
- Indicates whether the hyperparameter is tunable.
-
toBuilder
public DefaultIntegerHyperParameterRange.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<DefaultIntegerHyperParameterRange.Builder,DefaultIntegerHyperParameterRange>
-
builder
public static DefaultIntegerHyperParameterRange.Builder builder()
-
serializableBuilderClass
public static Class<? extends DefaultIntegerHyperParameterRange.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-