Class: Aws::CognitoIdentityProvider::Types::ForgetDeviceRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CognitoIdentityProvider::Types::ForgetDeviceRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cognitoidentityprovider/types.rb
 
Overview
Represents the request to forget the device.
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 registered device you want to forget.
 - 
  
    
      #device_key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The device key.
 
Instance Attribute Details
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the user whose registered device you want to forget.
      5987 5988 5989 5990 5991 5992  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5987 class ForgetDeviceRequest < Struct.new( :access_token, :device_key) SENSITIVE = [:access_token] include Aws::Structure end  | 
  
#device_key ⇒ String
The device key.
      5987 5988 5989 5990 5991 5992  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5987 class ForgetDeviceRequest < Struct.new( :access_token, :device_key) SENSITIVE = [:access_token] include Aws::Structure end  |