Interface PutApplicationAuthenticationMethodRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<PutApplicationAuthenticationMethodRequest.Builder,
,PutApplicationAuthenticationMethodRequest> SdkBuilder<PutApplicationAuthenticationMethodRequest.Builder,
,PutApplicationAuthenticationMethodRequest> SdkPojo
,SdkRequest.Builder
,SsoAdminRequest.Builder
- Enclosing class:
PutApplicationAuthenticationMethodRequest
public static interface PutApplicationAuthenticationMethodRequest.Builder
extends SsoAdminRequest.Builder, SdkPojo, CopyableBuilder<PutApplicationAuthenticationMethodRequest.Builder,PutApplicationAuthenticationMethodRequest>
-
Method Summary
Modifier and TypeMethodDescriptionapplicationArn
(String applicationArn) Specifies the ARN of the application with the authentication method to add or update.authenticationMethod
(Consumer<AuthenticationMethod.Builder> authenticationMethod) Specifies a structure that describes the authentication method to add or update.authenticationMethod
(AuthenticationMethod authenticationMethod) Specifies a structure that describes the authentication method to add or update.authenticationMethodType
(String authenticationMethodType) Specifies the type of the authentication method that you want to add or update.authenticationMethodType
(AuthenticationMethodType authenticationMethodType) Specifies the type of the authentication method that you want to add or update.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.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
Methods inherited from interface software.amazon.awssdk.services.ssoadmin.model.SsoAdminRequest.Builder
build
-
Method Details
-
applicationArn
Specifies the ARN of the application with the authentication method to add or update.
- Parameters:
applicationArn
- Specifies the ARN of the application with the authentication method to add or update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authenticationMethod
PutApplicationAuthenticationMethodRequest.Builder authenticationMethod(AuthenticationMethod authenticationMethod) Specifies a structure that describes the authentication method to add or update. The structure type you provide is determined by the
AuthenticationMethodType
parameter.- Parameters:
authenticationMethod
- Specifies a structure that describes the authentication method to add or update. The structure type you provide is determined by theAuthenticationMethodType
parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authenticationMethod
default PutApplicationAuthenticationMethodRequest.Builder authenticationMethod(Consumer<AuthenticationMethod.Builder> authenticationMethod) Specifies a structure that describes the authentication method to add or update. The structure type you provide is determined by the
This is a convenience method that creates an instance of theAuthenticationMethodType
parameter.AuthenticationMethod.Builder
avoiding the need to create one manually viaAuthenticationMethod.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toauthenticationMethod(AuthenticationMethod)
.- Parameters:
authenticationMethod
- a consumer that will call methods onAuthenticationMethod.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
authenticationMethodType
PutApplicationAuthenticationMethodRequest.Builder authenticationMethodType(String authenticationMethodType) Specifies the type of the authentication method that you want to add or update.
- Parameters:
authenticationMethodType
- Specifies the type of the authentication method that you want to add or update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
authenticationMethodType
PutApplicationAuthenticationMethodRequest.Builder authenticationMethodType(AuthenticationMethodType authenticationMethodType) Specifies the type of the authentication method that you want to add or update.
- Parameters:
authenticationMethodType
- Specifies the type of the authentication method that you want to add or update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
PutApplicationAuthenticationMethodRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
PutApplicationAuthenticationMethodRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-