Interface ComponentParameter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ComponentParameter.Builder,ComponentParameter>,SdkBuilder<ComponentParameter.Builder,ComponentParameter>,SdkPojo
- Enclosing class:
- ComponentParameter
public static interface ComponentParameter.Builder extends SdkPojo, CopyableBuilder<ComponentParameter.Builder,ComponentParameter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ComponentParameter.Buildername(String name)The name of the component parameter to set.ComponentParameter.Buildervalue(String... value)Sets the value for the named component parameter.ComponentParameter.Buildervalue(Collection<String> value)Sets the value for the named component 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, sdkFields
-
-
-
-
Method Detail
-
name
ComponentParameter.Builder name(String name)
The name of the component parameter to set.
- Parameters:
name- The name of the component parameter to set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
ComponentParameter.Builder value(Collection<String> value)
Sets the value for the named component parameter.
- Parameters:
value- Sets the value for the named component parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
ComponentParameter.Builder value(String... value)
Sets the value for the named component parameter.
- Parameters:
value- Sets the value for the named component parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-