Interface CreateConnectionRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreateConnectionRequest.Builder,CreateConnectionRequest>,EventBridgeRequest.Builder,SdkBuilder<CreateConnectionRequest.Builder,CreateConnectionRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateConnectionRequest
public static interface CreateConnectionRequest.Builder extends EventBridgeRequest.Builder, SdkPojo, CopyableBuilder<CreateConnectionRequest.Builder,CreateConnectionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CreateConnectionRequest.BuilderauthorizationType(String authorizationType)The type of authorization to use for the connection.CreateConnectionRequest.BuilderauthorizationType(ConnectionAuthorizationType authorizationType)The type of authorization to use for the connection.default CreateConnectionRequest.BuilderauthParameters(Consumer<CreateConnectionAuthRequestParameters.Builder> authParameters)ACreateConnectionAuthRequestParametersobject that contains the authorization parameters to use to authorize with the endpoint.CreateConnectionRequest.BuilderauthParameters(CreateConnectionAuthRequestParameters authParameters)ACreateConnectionAuthRequestParametersobject that contains the authorization parameters to use to authorize with the endpoint.CreateConnectionRequest.Builderdescription(String description)A description for the connection to create.CreateConnectionRequest.Buildername(String name)The name for the connection to create.CreateConnectionRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateConnectionRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.eventbridge.model.EventBridgeRequest.Builder
build
-
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
CreateConnectionRequest.Builder name(String name)
The name for the connection to create.
- Parameters:
name- The name for the connection to create.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
CreateConnectionRequest.Builder description(String description)
A description for the connection to create.
- Parameters:
description- A description for the connection to create.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authorizationType
CreateConnectionRequest.Builder authorizationType(String authorizationType)
The type of authorization to use for the connection.
OAUTH tokens are refreshed when a 401 or 407 response is returned.
- Parameters:
authorizationType- The type of authorization to use for the connection.OAUTH tokens are refreshed when a 401 or 407 response is returned.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionAuthorizationType,ConnectionAuthorizationType
-
authorizationType
CreateConnectionRequest.Builder authorizationType(ConnectionAuthorizationType authorizationType)
The type of authorization to use for the connection.
OAUTH tokens are refreshed when a 401 or 407 response is returned.
- Parameters:
authorizationType- The type of authorization to use for the connection.OAUTH tokens are refreshed when a 401 or 407 response is returned.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionAuthorizationType,ConnectionAuthorizationType
-
authParameters
CreateConnectionRequest.Builder authParameters(CreateConnectionAuthRequestParameters authParameters)
A
CreateConnectionAuthRequestParametersobject that contains the authorization parameters to use to authorize with the endpoint.- Parameters:
authParameters- ACreateConnectionAuthRequestParametersobject that contains the authorization parameters to use to authorize with the endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authParameters
default CreateConnectionRequest.Builder authParameters(Consumer<CreateConnectionAuthRequestParameters.Builder> authParameters)
A
This is a convenience method that creates an instance of theCreateConnectionAuthRequestParametersobject that contains the authorization parameters to use to authorize with the endpoint.CreateConnectionAuthRequestParameters.Builderavoiding the need to create one manually viaCreateConnectionAuthRequestParameters.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toauthParameters(CreateConnectionAuthRequestParameters).- Parameters:
authParameters- a consumer that will call methods onCreateConnectionAuthRequestParameters.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
authParameters(CreateConnectionAuthRequestParameters)
-
overrideConfiguration
CreateConnectionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateConnectionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-