Class: Aws::CognitoIdentityProvider::Types::VerifySoftwareTokenRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CognitoIdentityProvider::Types::VerifySoftwareTokenRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - 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 user whose software token you want to verify.
 - 
  
    
      #friendly_device_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The friendly device name.
 - 
  
    
      #session  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The session that should be passed both ways in challenge-response calls to the service.
 - 
  
    
      #user_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The one- time password computed using the secret code returned by [AssociateSoftwareToken].
 
Instance Attribute Details
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the user whose software token you want to verify.
      13450 13451 13452 13453 13454 13455 13456 13457  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 13450 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
The friendly device name.
      13450 13451 13452 13453 13454 13455 13456 13457  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 13450 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 that should be passed both ways in challenge-response calls to the service.
      13450 13451 13452 13453 13454 13455 13456 13457  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 13450 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
The one- time password computed using the secret code returned by [AssociateSoftwareToken].
[1]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AssociateSoftwareToken.html
      13450 13451 13452 13453 13454 13455 13456 13457  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 13450 class VerifySoftwareTokenRequest < Struct.new( :access_token, :session, :user_code, :friendly_device_name) SENSITIVE = [:access_token, :session, :user_code] include Aws::Structure end  |