Interface VerifySoftwareTokenRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CognitoIdentityProviderRequest.Builder,CopyableBuilder<VerifySoftwareTokenRequest.Builder,VerifySoftwareTokenRequest>,SdkBuilder<VerifySoftwareTokenRequest.Builder,VerifySoftwareTokenRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- VerifySoftwareTokenRequest
@Mutable @NotThreadSafe public static interface VerifySoftwareTokenRequest.Builder extends CognitoIdentityProviderRequest.Builder, SdkPojo, CopyableBuilder<VerifySoftwareTokenRequest.Builder,VerifySoftwareTokenRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VerifySoftwareTokenRequest.BuilderaccessToken(String accessToken)A valid access token that Amazon Cognito issued to the currently signed-in user.VerifySoftwareTokenRequest.BuilderfriendlyDeviceName(String friendlyDeviceName)A friendly name for the device that's running the TOTP authenticator.VerifySoftwareTokenRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)VerifySoftwareTokenRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)VerifySoftwareTokenRequest.Buildersession(String session)The session ID from anAssociateSoftwareTokenrequest.VerifySoftwareTokenRequest.BuilderuserCode(String userCode)A TOTP that the user generated in their configured authenticator app.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.cognitoidentityprovider.model.CognitoIdentityProviderRequest.Builder
build
-
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
-
-
-
-
Method Detail
-
accessToken
VerifySoftwareTokenRequest.Builder accessToken(String accessToken)
A valid access token that Amazon Cognito issued to the currently signed-in user. Must include a scope claim for
aws.cognito.signin.user.admin.- Parameters:
accessToken- A valid access token that Amazon Cognito issued to the currently signed-in user. Must include a scope claim foraws.cognito.signin.user.admin.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
session
VerifySoftwareTokenRequest.Builder session(String session)
The session ID from an
AssociateSoftwareTokenrequest.- Parameters:
session- The session ID from anAssociateSoftwareTokenrequest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userCode
VerifySoftwareTokenRequest.Builder userCode(String userCode)
A TOTP that the user generated in their configured authenticator app.
- Parameters:
userCode- A TOTP that the user generated in their configured authenticator app.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
friendlyDeviceName
VerifySoftwareTokenRequest.Builder friendlyDeviceName(String friendlyDeviceName)
A friendly name for the device that's running the TOTP authenticator.
- Parameters:
friendlyDeviceName- A friendly name for the device that's running the TOTP authenticator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
VerifySoftwareTokenRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
VerifySoftwareTokenRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-