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
-
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 Detail
-
applicationArn
PutApplicationAuthenticationMethodRequest.Builder applicationArn(String 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:
authenticationMethod(AuthenticationMethod)
-
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
,AuthenticationMethodType
-
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:
AuthenticationMethodType
,AuthenticationMethodType
-
overrideConfiguration
PutApplicationAuthenticationMethodRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
PutApplicationAuthenticationMethodRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-