Class: Aws::IoT::Types::DeleteCACertificateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::DeleteCACertificateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass DeleteCACertificateRequest data as a hash:
{
certificate_id: "CertificateId", # required
}
Input for the DeleteCACertificate operation.
Instance Attribute Summary collapse
-
#certificate_id ⇒ String
The ID of the certificate to delete.
Instance Attribute Details
#certificate_id ⇒ String
The ID of the certificate to delete. (The last part of the certificate ARN contains the certificate ID.)
3147 3148 3149 3150 |
# File 'lib/aws-sdk-iot/types.rb', line 3147 class DeleteCACertificateRequest < Struct.new( :certificate_id) include Aws::Structure end |