Class: Aws::IoT::Types::RegisterCertificateRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::RegisterCertificateRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
The input to the RegisterCertificate operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #ca_certificate_pem  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The CA certificate used to sign the device certificate being registered.
 - 
  
    
      #certificate_pem  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The certificate data, in PEM format.
 - 
  
    
      #set_as_active  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A boolean value that specifies if the certificate is set to active.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of the register certificate request.
 
Instance Attribute Details
#ca_certificate_pem ⇒ String
The CA certificate used to sign the device certificate being registered.
      14214 14215 14216 14217 14218 14219 14220 14221  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 14214 class RegisterCertificateRequest < Struct.new( :certificate_pem, :ca_certificate_pem, :set_as_active, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#certificate_pem ⇒ String
The certificate data, in PEM format.
      14214 14215 14216 14217 14218 14219 14220 14221  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 14214 class RegisterCertificateRequest < Struct.new( :certificate_pem, :ca_certificate_pem, :set_as_active, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#set_as_active ⇒ Boolean
A boolean value that specifies if the certificate is set to active.
Valid values: ‘ACTIVE | INACTIVE`
      14214 14215 14216 14217 14218 14219 14220 14221  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 14214 class RegisterCertificateRequest < Struct.new( :certificate_pem, :ca_certificate_pem, :set_as_active, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
The status of the register certificate request. Valid values that you can use include ‘ACTIVE`, `INACTIVE`, and `REVOKED`.
      14214 14215 14216 14217 14218 14219 14220 14221  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 14214 class RegisterCertificateRequest < Struct.new( :certificate_pem, :ca_certificate_pem, :set_as_active, :status) SENSITIVE = [] include Aws::Structure end  |