Class: Aws::IoT::Types::DeleteCertificateRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::DeleteCertificateRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
The input for the DeleteCertificate operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #certificate_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the certificate.
 - 
  
    
      #force_delete  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Forces the deletion of a certificate if it is inactive and is not attached to an IoT thing.
 
Instance Attribute Details
#certificate_id ⇒ String
The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)
      4313 4314 4315 4316 4317 4318  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 4313 class DeleteCertificateRequest < Struct.new( :certificate_id, :force_delete) SENSITIVE = [] include Aws::Structure end  | 
  
#force_delete ⇒ Boolean
Forces the deletion of a certificate if it is inactive and is not attached to an IoT thing.
      4313 4314 4315 4316 4317 4318  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 4313 class DeleteCertificateRequest < Struct.new( :certificate_id, :force_delete) SENSITIVE = [] include Aws::Structure end  |