Class: Aws::CognitoIdentityProvider::Types::GetDeviceRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CognitoIdentityProvider::Types::GetDeviceRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cognitoidentityprovider/types.rb
 
Overview
Represents the request to get 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 device information you want to request.
 - 
  
    
      #device_key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The device key.
 
Instance Attribute Details
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the user whose device information you want to request.
      6154 6155 6156 6157 6158 6159  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6154 class GetDeviceRequest < Struct.new( :device_key, :access_token) SENSITIVE = [:access_token] include Aws::Structure end  | 
  
#device_key ⇒ String
The device key.
      6154 6155 6156 6157 6158 6159  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6154 class GetDeviceRequest < Struct.new( :device_key, :access_token) SENSITIVE = [:access_token] include Aws::Structure end  |