Class: Aws::IoT::Types::TransferCertificateRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iot/types.rb

Overview

Note:

When making an API call, you may pass TransferCertificateRequest data as a hash:

{
  certificate_id: "CertificateId", # required
  target_aws_account: "AwsAccountId", # required
  transfer_message: "Message",
}

The input for the TransferCertificate operation.

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_idString

The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)



10619
10620
10621
10622
10623
10624
# File 'lib/aws-sdk-iot/types.rb', line 10619

class TransferCertificateRequest < Struct.new(
  :certificate_id,
  :target_aws_account,
  :transfer_message)
  include Aws::Structure
end

#target_aws_accountString

The AWS account.



10619
10620
10621
10622
10623
10624
# File 'lib/aws-sdk-iot/types.rb', line 10619

class TransferCertificateRequest < Struct.new(
  :certificate_id,
  :target_aws_account,
  :transfer_message)
  include Aws::Structure
end

#transfer_messageString

The transfer message.



10619
10620
10621
10622
10623
10624
# File 'lib/aws-sdk-iot/types.rb', line 10619

class TransferCertificateRequest < Struct.new(
  :certificate_id,
  :target_aws_account,
  :transfer_message)
  include Aws::Structure
end