Interface ConnectionHeaderParameter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectionHeaderParameter.Builder,ConnectionHeaderParameter>,SdkBuilder<ConnectionHeaderParameter.Builder,ConnectionHeaderParameter>,SdkPojo
- Enclosing class:
- ConnectionHeaderParameter
public static interface ConnectionHeaderParameter.Builder extends SdkPojo, CopyableBuilder<ConnectionHeaderParameter.Builder,ConnectionHeaderParameter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectionHeaderParameter.BuilderisValueSecret(Boolean isValueSecret)Specified whether the value is a secret.ConnectionHeaderParameter.Builderkey(String key)The key for the parameter.ConnectionHeaderParameter.Buildervalue(String value)The value associated with the 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, sdkFields
-
-
-
-
Method Detail
-
key
ConnectionHeaderParameter.Builder key(String key)
The key for the parameter.
- Parameters:
key- The key for the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
ConnectionHeaderParameter.Builder value(String value)
The value associated with the key.
- Parameters:
value- The value associated with the key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isValueSecret
ConnectionHeaderParameter.Builder isValueSecret(Boolean isValueSecret)
Specified whether the value is a secret.
- Parameters:
isValueSecret- Specified whether the value is a secret.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-