Interface KeyValuePair.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<KeyValuePair.Builder,KeyValuePair>,SdkBuilder<KeyValuePair.Builder,KeyValuePair>,SdkPojo
- Enclosing class:
- KeyValuePair
public static interface KeyValuePair.Builder extends SdkPojo, CopyableBuilder<KeyValuePair.Builder,KeyValuePair>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KeyValuePair.Builderkey(String key)One part of a key-value pair that comprises a tag.KeyValuePair.Buildervalue(String value)One part of a key-value pair that comprises a 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, sdkFields
-
-
-
-
Method Detail
-
key
KeyValuePair.Builder key(String key)
One part of a key-value pair that comprises a tag. A tag key is a general label that acts as a category for more specific tag values.
- Parameters:
key- One part of a key-value pair that comprises a tag. A tag key is a general label that acts as a category for more specific tag values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
KeyValuePair.Builder value(String value)
One part of a key-value pair that comprises a tag. A tag value acts as a descriptor for a tag key. A tag value can be an empty string.
- Parameters:
value- One part of a key-value pair that comprises a tag. A tag value acts as a descriptor for a tag key. A tag value can be an empty string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-