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