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