Class: Aws::CognitoIdentityProvider::Types::ConfirmDeviceRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CognitoIdentityProvider::Types::ConfirmDeviceRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cognitoidentityprovider/types.rb
 
Overview
The confirm-device request.
Constant Summary collapse
- SENSITIVE =
 [:access_token]
Instance Attribute Summary collapse
- 
  
    
      #access_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A valid access token that Amazon Cognito issued to the user whose device you want to confirm.
 - 
  
    
      #device_key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier, or device key, of the device that you want to update the status for.
 - 
  
    
      #device_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A friendly name for the device, for example ‘MyMobilePhone`.
 - 
  
    
      #device_secret_verifier_config  ⇒ Types::DeviceSecretVerifierConfigType 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The configuration of the device secret verifier.
 
Instance Attribute Details
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the user whose device you want to confirm.
      3154 3155 3156 3157 3158 3159 3160 3161  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 3154 class ConfirmDeviceRequest < Struct.new( :access_token, :device_key, :device_secret_verifier_config, :device_name) SENSITIVE = [:access_token] include Aws::Structure end  | 
  
#device_key ⇒ String
The unique identifier, or device key, of the device that you want to update the status for.
      3154 3155 3156 3157 3158 3159 3160 3161  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 3154 class ConfirmDeviceRequest < Struct.new( :access_token, :device_key, :device_secret_verifier_config, :device_name) SENSITIVE = [:access_token] include Aws::Structure end  | 
  
#device_name ⇒ String
A friendly name for the device, for example ‘MyMobilePhone`.
      3154 3155 3156 3157 3158 3159 3160 3161  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 3154 class ConfirmDeviceRequest < Struct.new( :access_token, :device_key, :device_secret_verifier_config, :device_name) SENSITIVE = [:access_token] include Aws::Structure end  | 
  
#device_secret_verifier_config ⇒ Types::DeviceSecretVerifierConfigType
The configuration of the device secret verifier.
      3154 3155 3156 3157 3158 3159 3160 3161  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 3154 class ConfirmDeviceRequest < Struct.new( :access_token, :device_key, :device_secret_verifier_config, :device_name) SENSITIVE = [:access_token] include Aws::Structure end  |