Interface ConnectAppAuthorizationRequest.Builder
-
- All Superinterfaces:
AppFabricRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<ConnectAppAuthorizationRequest.Builder,ConnectAppAuthorizationRequest>,SdkBuilder<ConnectAppAuthorizationRequest.Builder,ConnectAppAuthorizationRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ConnectAppAuthorizationRequest
public static interface ConnectAppAuthorizationRequest.Builder extends AppFabricRequest.Builder, SdkPojo, CopyableBuilder<ConnectAppAuthorizationRequest.Builder,ConnectAppAuthorizationRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ConnectAppAuthorizationRequest.BuilderappAuthorizationIdentifier(String appAuthorizationIdentifier)The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app authorization to use for the request.ConnectAppAuthorizationRequest.BuilderappBundleIdentifier(String appBundleIdentifier)The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle that contains the app authorization to use for the request.default ConnectAppAuthorizationRequest.BuilderauthRequest(Consumer<AuthRequest.Builder> authRequest)Contains OAuth2 authorization information.ConnectAppAuthorizationRequest.BuilderauthRequest(AuthRequest authRequest)Contains OAuth2 authorization information.ConnectAppAuthorizationRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ConnectAppAuthorizationRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.services.appfabric.model.AppFabricRequest.Builder
build
-
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.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
appBundleIdentifier
ConnectAppAuthorizationRequest.Builder appBundleIdentifier(String appBundleIdentifier)
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle that contains the app authorization to use for the request.
- Parameters:
appBundleIdentifier- The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle that contains the app authorization to use for the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appAuthorizationIdentifier
ConnectAppAuthorizationRequest.Builder appAuthorizationIdentifier(String appAuthorizationIdentifier)
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app authorization to use for the request.
- Parameters:
appAuthorizationIdentifier- The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app authorization to use for the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authRequest
ConnectAppAuthorizationRequest.Builder authRequest(AuthRequest authRequest)
Contains OAuth2 authorization information.
This is required if the app authorization for the request is configured with an OAuth2 (
oauth2) authorization type.- Parameters:
authRequest- Contains OAuth2 authorization information.This is required if the app authorization for the request is configured with an OAuth2 (
oauth2) authorization type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authRequest
default ConnectAppAuthorizationRequest.Builder authRequest(Consumer<AuthRequest.Builder> authRequest)
Contains OAuth2 authorization information.
This is required if the app authorization for the request is configured with an OAuth2 (
This is a convenience method that creates an instance of theoauth2) authorization type.AuthRequest.Builderavoiding the need to create one manually viaAuthRequest.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toauthRequest(AuthRequest).- Parameters:
authRequest- a consumer that will call methods onAuthRequest.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
authRequest(AuthRequest)
-
overrideConfiguration
ConnectAppAuthorizationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ConnectAppAuthorizationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-