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