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.
| 13095 13096 13097 13098 13099 13100 13101 13102 | # File 'lib/aws-sdk-iot/types.rb', line 13095 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.
| 13095 13096 13097 13098 13099 13100 13101 13102 | # File 'lib/aws-sdk-iot/types.rb', line 13095 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`
| 13095 13096 13097 13098 13099 13100 13101 13102 | # File 'lib/aws-sdk-iot/types.rb', line 13095 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`.
| 13095 13096 13097 13098 13099 13100 13101 13102 | # File 'lib/aws-sdk-iot/types.rb', line 13095 class RegisterCertificateRequest < Struct.new( :certificate_pem, :ca_certificate_pem, :set_as_active, :status) SENSITIVE = [] include Aws::Structure end |