Class: Aws::CognitoIdentityProvider::Types::VerifySoftwareTokenRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::VerifySoftwareTokenRequest
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:access_token, :session, :user_code]
Instance Attribute Summary collapse
-
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the currently signed-in user.
-
#friendly_device_name ⇒ String
A friendly name for the device that's running the TOTP authenticator.
-
#session ⇒ String
The session ID from an
AssociateSoftwareToken
request. -
#user_code ⇒ String
A TOTP that the user generated in their configured authenticator app.
Instance Attribute Details
#access_token ⇒ String
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
.
13270 13271 13272 13273 13274 13275 13276 13277 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 13270 class VerifySoftwareTokenRequest < Struct.new( :access_token, :session, :user_code, :friendly_device_name) SENSITIVE = [:access_token, :session, :user_code] include Aws::Structure end |
#friendly_device_name ⇒ String
A friendly name for the device that's running the TOTP authenticator.
13270 13271 13272 13273 13274 13275 13276 13277 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 13270 class VerifySoftwareTokenRequest < Struct.new( :access_token, :session, :user_code, :friendly_device_name) SENSITIVE = [:access_token, :session, :user_code] include Aws::Structure end |
#session ⇒ String
The session ID from an AssociateSoftwareToken
request.
13270 13271 13272 13273 13274 13275 13276 13277 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 13270 class VerifySoftwareTokenRequest < Struct.new( :access_token, :session, :user_code, :friendly_device_name) SENSITIVE = [:access_token, :session, :user_code] include Aws::Structure end |
#user_code ⇒ String
A TOTP that the user generated in their configured authenticator app.
13270 13271 13272 13273 13274 13275 13276 13277 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 13270 class VerifySoftwareTokenRequest < Struct.new( :access_token, :session, :user_code, :friendly_device_name) SENSITIVE = [:access_token, :session, :user_code] include Aws::Structure end |