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