Interface StaticValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StaticValue.Builder,StaticValue>,SdkBuilder<StaticValue.Builder,StaticValue>,SdkPojo
- Enclosing class:
- StaticValue
public static interface StaticValue.Builder extends SdkPojo, CopyableBuilder<StaticValue.Builder,StaticValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StaticValue.Buildervalues(String... values)A list of values.StaticValue.Buildervalues(Collection<String> values)A list of values.-
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
-
values
StaticValue.Builder values(Collection<String> values)
A list of values. For example, the ARN of the assumed role.
- Parameters:
values- A list of values. For example, the ARN of the assumed role.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
StaticValue.Builder values(String... values)
A list of values. For example, the ARN of the assumed role.
- Parameters:
values- A list of values. For example, the ARN of the assumed role.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-