Interface ConnectionHttpParameters.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ConnectionHttpParameters.Builder,
,ConnectionHttpParameters> SdkBuilder<ConnectionHttpParameters.Builder,
,ConnectionHttpParameters> SdkPojo
- Enclosing class:
ConnectionHttpParameters
-
Method Summary
Modifier and TypeMethodDescriptionbodyParameters
(Collection<ConnectionBodyParameter> bodyParameters) Any additional body string parameters for the connection.bodyParameters
(Consumer<ConnectionBodyParameter.Builder>... bodyParameters) Any additional body string parameters for the connection.bodyParameters
(ConnectionBodyParameter... bodyParameters) Any additional body string parameters for the connection.headerParameters
(Collection<ConnectionHeaderParameter> headerParameters) Any additional header parameters for the connection.headerParameters
(Consumer<ConnectionHeaderParameter.Builder>... headerParameters) Any additional header parameters for the connection.headerParameters
(ConnectionHeaderParameter... headerParameters) Any additional header parameters for the connection.queryStringParameters
(Collection<ConnectionQueryStringParameter> queryStringParameters) Any additional query string parameters for the connection.queryStringParameters
(Consumer<ConnectionQueryStringParameter.Builder>... queryStringParameters) Any additional query string parameters for the connection.queryStringParameters
(ConnectionQueryStringParameter... queryStringParameters) Any additional query string parameters for the connection.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 Details
-
headerParameters
ConnectionHttpParameters.Builder headerParameters(Collection<ConnectionHeaderParameter> headerParameters) Any additional header parameters for the connection.
- Parameters:
headerParameters
- Any additional header parameters for the connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
headerParameters
Any additional header parameters for the connection.
- Parameters:
headerParameters
- Any additional header parameters for the connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
headerParameters
ConnectionHttpParameters.Builder headerParameters(Consumer<ConnectionHeaderParameter.Builder>... headerParameters) Any additional header parameters for the connection.
This is a convenience method that creates an instance of theConnectionHeaderParameter.Builder
avoiding the need to create one manually viaConnectionHeaderParameter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toheaderParameters(List<ConnectionHeaderParameter>)
.- Parameters:
headerParameters
- a consumer that will call methods onConnectionHeaderParameter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
queryStringParameters
ConnectionHttpParameters.Builder queryStringParameters(Collection<ConnectionQueryStringParameter> queryStringParameters) Any additional query string parameters for the connection.
- Parameters:
queryStringParameters
- Any additional query string parameters for the connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryStringParameters
ConnectionHttpParameters.Builder queryStringParameters(ConnectionQueryStringParameter... queryStringParameters) Any additional query string parameters for the connection.
- Parameters:
queryStringParameters
- Any additional query string parameters for the connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryStringParameters
ConnectionHttpParameters.Builder queryStringParameters(Consumer<ConnectionQueryStringParameter.Builder>... queryStringParameters) Any additional query string parameters for the connection.
This is a convenience method that creates an instance of theConnectionQueryStringParameter.Builder
avoiding the need to create one manually viaConnectionQueryStringParameter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toqueryStringParameters(List<ConnectionQueryStringParameter>)
.- Parameters:
queryStringParameters
- a consumer that will call methods onConnectionQueryStringParameter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
bodyParameters
Any additional body string parameters for the connection.
- Parameters:
bodyParameters
- Any additional body string parameters for the connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bodyParameters
Any additional body string parameters for the connection.
- Parameters:
bodyParameters
- Any additional body string parameters for the connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bodyParameters
ConnectionHttpParameters.Builder bodyParameters(Consumer<ConnectionBodyParameter.Builder>... bodyParameters) Any additional body string parameters for the connection.
This is a convenience method that creates an instance of theConnectionBodyParameter.Builder
avoiding the need to create one manually viaConnectionBodyParameter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tobodyParameters(List<ConnectionBodyParameter>)
.- Parameters:
bodyParameters
- a consumer that will call methods onConnectionBodyParameter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-