Interface ConfigurationOptionSetting.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConfigurationOptionSetting.Builder,ConfigurationOptionSetting>,SdkBuilder<ConfigurationOptionSetting.Builder,ConfigurationOptionSetting>,SdkPojo
- Enclosing class:
- ConfigurationOptionSetting
public static interface ConfigurationOptionSetting.Builder extends SdkPojo, CopyableBuilder<ConfigurationOptionSetting.Builder,ConfigurationOptionSetting>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfigurationOptionSetting.Buildernamespace(String namespace)A unique namespace that identifies the option's associated AWS resource.ConfigurationOptionSetting.BuilderoptionName(String optionName)The name of the configuration option.ConfigurationOptionSetting.BuilderresourceName(String resourceName)A unique resource name for the option setting.ConfigurationOptionSetting.Buildervalue(String value)The current value for the configuration option.-
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, sdkFields
-
-
-
-
Method Detail
-
resourceName
ConfigurationOptionSetting.Builder resourceName(String resourceName)
A unique resource name for the option setting. Use it for a time–based scaling configuration option.
- Parameters:
resourceName- A unique resource name for the option setting. Use it for a time–based scaling configuration option.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
namespace
ConfigurationOptionSetting.Builder namespace(String namespace)
A unique namespace that identifies the option's associated AWS resource.
- Parameters:
namespace- A unique namespace that identifies the option's associated AWS resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
optionName
ConfigurationOptionSetting.Builder optionName(String optionName)
The name of the configuration option.
- Parameters:
optionName- The name of the configuration option.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
ConfigurationOptionSetting.Builder value(String value)
The current value for the configuration option.
- Parameters:
value- The current value for the configuration option.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-