Class: Aws::IoT::Types::CancelCertificateTransferRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::CancelCertificateTransferRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass CancelCertificateTransferRequest data as a hash:
{
certificate_id: "CertificateId", # required
}
The input for the CancelCertificateTransfer 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.)
1174 1175 1176 1177 |
# File 'lib/aws-sdk-iot/types.rb', line 1174 class CancelCertificateTransferRequest < Struct.new( :certificate_id) include Aws::Structure end |