Class: Aws::IoT::Types::AcceptCertificateTransferRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::AcceptCertificateTransferRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass AcceptCertificateTransferRequest data as a hash:
{
certificate_id: "CertificateId", # required
set_as_active: false,
}
The input for the AcceptCertificateTransfer operation.
Instance Attribute Summary collapse
-
#certificate_id ⇒ String
The ID of the certificate.
-
#set_as_active ⇒ Boolean
Specifies whether the certificate is active.
Instance Attribute Details
#certificate_id ⇒ String
The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)
96 97 98 99 100 |
# File 'lib/aws-sdk-iot/types.rb', line 96 class AcceptCertificateTransferRequest < Struct.new( :certificate_id, :set_as_active) include Aws::Structure end |
#set_as_active ⇒ Boolean
Specifies whether the certificate is active.
96 97 98 99 100 |
# File 'lib/aws-sdk-iot/types.rb', line 96 class AcceptCertificateTransferRequest < Struct.new( :certificate_id, :set_as_active) include Aws::Structure end |