Interface TagValues.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TagValues.Builder,TagValues>,SdkBuilder<TagValues.Builder,TagValues>,SdkPojo
- Enclosing class:
- TagValues
public static interface TagValues.Builder extends SdkPojo, CopyableBuilder<TagValues.Builder,TagValues>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TagValues.Builderkey(String key)The key for the tag.TagValues.Buildervalues(String... values)The specific value of the tag.TagValues.Buildervalues(Collection<String> values)The specific value of the tag.-
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
-
key
TagValues.Builder key(String key)
The key for the tag.
- Parameters:
key- The key for the tag.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
TagValues.Builder values(Collection<String> values)
The specific value of the tag.
- Parameters:
values- The specific value of the tag.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
TagValues.Builder values(String... values)
The specific value of the tag.
- Parameters:
values- The specific value of the tag.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-