Class: Aws::IoT::Types::AttachThingPrincipalRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::AttachThingPrincipalRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
The input for the AttachThingPrincipal operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #principal  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The principal, which can be a certificate ARN (as returned from the CreateCertificate operation) or an Amazon Cognito ID.
 - 
  
    
      #thing_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the thing.
 
Instance Attribute Details
#principal ⇒ String
The principal, which can be a certificate ARN (as returned from the CreateCertificate operation) or an Amazon Cognito ID.
      619 620 621 622 623 624  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 619 class AttachThingPrincipalRequest < Struct.new( :thing_name, :principal) SENSITIVE = [] include Aws::Structure end  | 
  
#thing_name ⇒ String
The name of the thing.
      619 620 621 622 623 624  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 619 class AttachThingPrincipalRequest < Struct.new( :thing_name, :principal) SENSITIVE = [] include Aws::Structure end  |