Class: Aws::IoT::Types::MqttContext
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::MqttContext
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
Specifies the MQTT context to use for the test authorizer request
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #client_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value of the ‘clientId` key in an MQTT authorization request.
 - 
  
    
      #password  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value of the ‘password` key in an MQTT authorization request.
 - 
  
    
      #username  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value of the ‘username` key in an MQTT authorization request.
 
Instance Attribute Details
#client_id ⇒ String
The value of the ‘clientId` key in an MQTT authorization request.
      12039 12040 12041 12042 12043 12044 12045  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 12039 class MqttContext < Struct.new( :username, :password, :client_id) SENSITIVE = [] include Aws::Structure end  | 
  
#password ⇒ String
The value of the ‘password` key in an MQTT authorization request.
      12039 12040 12041 12042 12043 12044 12045  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 12039 class MqttContext < Struct.new( :username, :password, :client_id) SENSITIVE = [] include Aws::Structure end  | 
  
#username ⇒ String
The value of the ‘username` key in an MQTT authorization request.
      12039 12040 12041 12042 12043 12044 12045  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 12039 class MqttContext < Struct.new( :username, :password, :client_id) SENSITIVE = [] include Aws::Structure end  |