Interface UpdateConnectionOAuthRequestParameters.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UpdateConnectionOAuthRequestParameters.Builder,UpdateConnectionOAuthRequestParameters>,SdkBuilder<UpdateConnectionOAuthRequestParameters.Builder,UpdateConnectionOAuthRequestParameters>,SdkPojo
- Enclosing class:
- UpdateConnectionOAuthRequestParameters
public static interface UpdateConnectionOAuthRequestParameters.Builder extends SdkPojo, CopyableBuilder<UpdateConnectionOAuthRequestParameters.Builder,UpdateConnectionOAuthRequestParameters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateConnectionOAuthRequestParameters.BuilderauthorizationEndpoint(String authorizationEndpoint)The URL to the authorization endpoint when OAuth is specified as the authorization type.default UpdateConnectionOAuthRequestParameters.BuilderclientParameters(Consumer<UpdateConnectionOAuthClientRequestParameters.Builder> clientParameters)AUpdateConnectionOAuthClientRequestParametersobject that contains the client parameters to use for the connection when OAuth is specified as the authorization type.UpdateConnectionOAuthRequestParameters.BuilderclientParameters(UpdateConnectionOAuthClientRequestParameters clientParameters)AUpdateConnectionOAuthClientRequestParametersobject that contains the client parameters to use for the connection when OAuth is specified as the authorization type.UpdateConnectionOAuthRequestParameters.BuilderhttpMethod(String httpMethod)The method used to connect to the HTTP endpoint.UpdateConnectionOAuthRequestParameters.BuilderhttpMethod(ConnectionOAuthHttpMethod httpMethod)The method used to connect to the HTTP endpoint.default UpdateConnectionOAuthRequestParameters.BuilderoAuthHttpParameters(Consumer<ConnectionHttpParameters.Builder> oAuthHttpParameters)The additional HTTP parameters used for the OAuth authorization request.UpdateConnectionOAuthRequestParameters.BuilderoAuthHttpParameters(ConnectionHttpParameters oAuthHttpParameters)The additional HTTP parameters used for the OAuth authorization request.-
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
-
clientParameters
UpdateConnectionOAuthRequestParameters.Builder clientParameters(UpdateConnectionOAuthClientRequestParameters clientParameters)
A
UpdateConnectionOAuthClientRequestParametersobject that contains the client parameters to use for the connection when OAuth is specified as the authorization type.- Parameters:
clientParameters- AUpdateConnectionOAuthClientRequestParametersobject that contains the client parameters to use for the connection when OAuth is specified as the authorization type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientParameters
default UpdateConnectionOAuthRequestParameters.Builder clientParameters(Consumer<UpdateConnectionOAuthClientRequestParameters.Builder> clientParameters)
A
This is a convenience method that creates an instance of theUpdateConnectionOAuthClientRequestParametersobject that contains the client parameters to use for the connection when OAuth is specified as the authorization type.UpdateConnectionOAuthClientRequestParameters.Builderavoiding the need to create one manually viaUpdateConnectionOAuthClientRequestParameters.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toclientParameters(UpdateConnectionOAuthClientRequestParameters).- Parameters:
clientParameters- a consumer that will call methods onUpdateConnectionOAuthClientRequestParameters.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
clientParameters(UpdateConnectionOAuthClientRequestParameters)
-
authorizationEndpoint
UpdateConnectionOAuthRequestParameters.Builder authorizationEndpoint(String authorizationEndpoint)
The URL to the authorization endpoint when OAuth is specified as the authorization type.
- Parameters:
authorizationEndpoint- The URL to the authorization endpoint when OAuth is specified as the authorization type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
httpMethod
UpdateConnectionOAuthRequestParameters.Builder httpMethod(String httpMethod)
The method used to connect to the HTTP endpoint.
- Parameters:
httpMethod- The method used to connect to the HTTP endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionOAuthHttpMethod,ConnectionOAuthHttpMethod
-
httpMethod
UpdateConnectionOAuthRequestParameters.Builder httpMethod(ConnectionOAuthHttpMethod httpMethod)
The method used to connect to the HTTP endpoint.
- Parameters:
httpMethod- The method used to connect to the HTTP endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionOAuthHttpMethod,ConnectionOAuthHttpMethod
-
oAuthHttpParameters
UpdateConnectionOAuthRequestParameters.Builder oAuthHttpParameters(ConnectionHttpParameters oAuthHttpParameters)
The additional HTTP parameters used for the OAuth authorization request.
- Parameters:
oAuthHttpParameters- The additional HTTP parameters used for the OAuth authorization request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
oAuthHttpParameters
default UpdateConnectionOAuthRequestParameters.Builder oAuthHttpParameters(Consumer<ConnectionHttpParameters.Builder> oAuthHttpParameters)
The additional HTTP parameters used for the OAuth authorization request.
This is a convenience method that creates an instance of theConnectionHttpParameters.Builderavoiding the need to create one manually viaConnectionHttpParameters.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooAuthHttpParameters(ConnectionHttpParameters).- Parameters:
oAuthHttpParameters- a consumer that will call methods onConnectionHttpParameters.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
oAuthHttpParameters(ConnectionHttpParameters)
-
-