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.
Constant Summary collapse
- SENSITIVE =
[]
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.)
100 101 102 103 104 105 |
# File 'lib/aws-sdk-iot/types.rb', line 100 class AcceptCertificateTransferRequest < Struct.new( :certificate_id, :set_as_active) SENSITIVE = [] include Aws::Structure end |
#set_as_active ⇒ Boolean
Specifies whether the certificate is active.
100 101 102 103 104 105 |
# File 'lib/aws-sdk-iot/types.rb', line 100 class AcceptCertificateTransferRequest < Struct.new( :certificate_id, :set_as_active) SENSITIVE = [] include Aws::Structure end |