Class: Aws::IoT::Types::AcceptCertificateTransferRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::AcceptCertificateTransferRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
The input for the AcceptCertificateTransfer operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #certificate_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the certificate.
 - 
  
    
      #set_as_active  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies whether the certificate is active.
 
Instance Attribute Details
#certificate_id ⇒ String
The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)
      68 69 70 71 72 73  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 68 class AcceptCertificateTransferRequest < Struct.new( :certificate_id, :set_as_active) SENSITIVE = [] include Aws::Structure end  | 
  
#set_as_active ⇒ Boolean
Specifies whether the certificate is active.
      68 69 70 71 72 73  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 68 class AcceptCertificateTransferRequest < Struct.new( :certificate_id, :set_as_active) SENSITIVE = [] include Aws::Structure end  |