Interface PutApplicationAuthenticationMethodRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<PutApplicationAuthenticationMethodRequest.Builder,PutApplicationAuthenticationMethodRequest>,SdkBuilder<PutApplicationAuthenticationMethodRequest.Builder,PutApplicationAuthenticationMethodRequest>,SdkPojo,SdkRequest.Builder,SsoAdminRequest.Builder
- Enclosing class:
- PutApplicationAuthenticationMethodRequest
@Mutable @NotThreadSafe 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, sdkFieldNameToField, 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.
-
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
-
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
AuthenticationMethodTypeparameter.- Parameters:
authenticationMethod- Specifies a structure that describes the authentication method to add or update. The structure type you provide is determined by theAuthenticationMethodTypeparameter.- 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 theAuthenticationMethodTypeparameter.AuthenticationMethod.Builderavoiding the need to create one manually viaAuthenticationMethod.builder().When the
Consumercompletes,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)
-
overrideConfiguration
PutApplicationAuthenticationMethodRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
PutApplicationAuthenticationMethodRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-