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 AssociateSoftwareTokenrequest.
- 
  
    
      #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.
| 13921 13922 13923 13924 13925 13926 13927 13928 | # File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 13921 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.
| 13921 13922 13923 13924 13925 13926 13927 13928 | # File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 13921 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.
| 13921 13922 13923 13924 13925 13926 13927 13928 | # File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 13921 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.
| 13921 13922 13923 13924 13925 13926 13927 13928 | # File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 13921 class VerifySoftwareTokenRequest < Struct.new( :access_token, :session, :user_code, :friendly_device_name) SENSITIVE = [:access_token, :session, :user_code] include Aws::Structure end |