Interface ConfigurationObject.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConfigurationObject.Builder,ConfigurationObject>,SdkBuilder<ConfigurationObject.Builder,ConfigurationObject>,SdkPojo
- Enclosing class:
- ConfigurationObject
public static interface ConfigurationObject.Builder extends SdkPojo, CopyableBuilder<ConfigurationObject.Builder,ConfigurationObject>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfigurationObject.BuilderallowedValues(String... allowedValues)A list of allowed values for the parameter.ConfigurationObject.BuilderallowedValues(Collection<String> allowedValues)A list of allowed values for the parameter.ConfigurationObject.BuilderdefaultValue(String defaultValue)A default value for the parameter.ConfigurationObject.BuildermaxValue(String maxValue)A maximum allowed value for the parameter.ConfigurationObject.BuilderminValue(String minValue)A minimum allowed value for the parameter.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
defaultValue
ConfigurationObject.Builder defaultValue(String defaultValue)
A default value for the parameter.
- Parameters:
defaultValue- A default value for the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowedValues
ConfigurationObject.Builder allowedValues(Collection<String> allowedValues)
A list of allowed values for the parameter.
- Parameters:
allowedValues- A list of allowed values for the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowedValues
ConfigurationObject.Builder allowedValues(String... allowedValues)
A list of allowed values for the parameter.
- Parameters:
allowedValues- A list of allowed values for the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minValue
ConfigurationObject.Builder minValue(String minValue)
A minimum allowed value for the parameter.
- Parameters:
minValue- A minimum allowed value for the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxValue
ConfigurationObject.Builder maxValue(String maxValue)
A maximum allowed value for the parameter.
- Parameters:
maxValue- A maximum allowed value for the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-