Class: Aws::IoT::Types::RejectCertificateTransferRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::RejectCertificateTransferRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass RejectCertificateTransferRequest data as a hash:
{
certificate_id: "CertificateId", # required
reject_reason: "Message",
}
The input for the RejectCertificateTransfer operation.
Instance Attribute Summary collapse
-
#certificate_id ⇒ String
The ID of the certificate.
-
#reject_reason ⇒ String
The reason the certificate transfer was rejected.
Instance Attribute Details
#certificate_id ⇒ String
The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)
8498 8499 8500 8501 8502 |
# File 'lib/aws-sdk-iot/types.rb', line 8498 class RejectCertificateTransferRequest < Struct.new( :certificate_id, :reject_reason) include Aws::Structure end |
#reject_reason ⇒ String
The reason the certificate transfer was rejected.
8498 8499 8500 8501 8502 |
# File 'lib/aws-sdk-iot/types.rb', line 8498 class RejectCertificateTransferRequest < Struct.new( :certificate_id, :reject_reason) include Aws::Structure end |