Class: Aws::IoT::Types::UpdateCertificateRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::UpdateCertificateRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
The input for the UpdateCertificate operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #certificate_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the certificate.
 - 
  
    
      #new_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The new status.
 
Instance Attribute Details
#certificate_id ⇒ String
The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)
      15872 15873 15874 15875 15876 15877  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 15872 class UpdateCertificateRequest < Struct.new( :certificate_id, :new_status) SENSITIVE = [] include Aws::Structure end  | 
  
#new_status ⇒ String
The new status.
Note: Setting the status to PENDING_TRANSFER or PENDING_ACTIVATION will result in an exception being thrown. PENDING_TRANSFER and PENDING_ACTIVATION are statuses used internally by IoT. They are not intended for developer use.
Note: The status value REGISTER_INACTIVE is deprecated and should not be used.
      15872 15873 15874 15875 15876 15877  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 15872 class UpdateCertificateRequest < Struct.new( :certificate_id, :new_status) SENSITIVE = [] include Aws::Structure end  |