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
Modifier and TypeMethodDescriptionThe name of the key-value pair.The value of the key-value pair.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields 
- 
Method Details
- 
name
The name of the key-value pair. For environment variables, this is the name of the environment variable.
- Parameters:
 name- The name of the key-value pair. For environment variables, this is the name of the environment variable.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
value
The value of the key-value pair. For environment variables, this is the value of the environment variable.
- Parameters:
 value- The value of the key-value pair. For environment variables, this is the value of the environment variable.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 
 -