Interface TagValuePair.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TagValuePair.Builder,TagValuePair>,SdkBuilder<TagValuePair.Builder,TagValuePair>,SdkPojo
- Enclosing class:
- TagValuePair
public static interface TagValuePair.Builder extends SdkPojo, CopyableBuilder<TagValuePair.Builder,TagValuePair>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TagValuePair.Builderkey(String key)The value for the tag key to use in the condition.TagValuePair.Buildervalue(String value)The tag value, associated with the specified tag key (key), to use in the condition.-
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
-
key
TagValuePair.Builder key(String key)
The value for the tag key to use in the condition.
- Parameters:
key- The value for the tag key to use in the condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
TagValuePair.Builder value(String value)
The tag value, associated with the specified tag key (key), to use in the condition. To specify only a tag key for a condition, specify the tag key for the key property and set this value to an empty string.
- Parameters:
value- The tag value, associated with the specified tag key (key), to use in the condition. To specify only a tag key for a condition, specify the tag key for the key property and set this value to an empty string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-