Interface CategoricalParameter.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<CategoricalParameter.Builder,CategoricalParameter>
,SdkBuilder<CategoricalParameter.Builder,CategoricalParameter>
,SdkPojo
- Enclosing class:
- CategoricalParameter
public static interface CategoricalParameter.Builder extends SdkPojo, CopyableBuilder<CategoricalParameter.Builder,CategoricalParameter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CategoricalParameter.Builder
name(String name)
The Name of the environment variable.CategoricalParameter.Builder
value(String... value)
The list of values you can pass.CategoricalParameter.Builder
value(Collection<String> value)
The list of values you can pass.-
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
-
name
CategoricalParameter.Builder name(String name)
The Name of the environment variable.
- Parameters:
name
- The Name of the environment variable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
CategoricalParameter.Builder value(Collection<String> value)
The list of values you can pass.
- Parameters:
value
- The list of values you can pass.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
CategoricalParameter.Builder value(String... value)
The list of values you can pass.
- Parameters:
value
- The list of values you can pass.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-