Class: Aws::IoT::Types::KeyPair

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

Overview

Describes a key pair.

Instance Attribute Summary collapse

Instance Attribute Details

#private_keyString

The private key.

Returns:

  • (String)


5822
5823
5824
5825
5826
# File 'lib/aws-sdk-iot/types.rb', line 5822

class KeyPair < Struct.new(
  :public_key,
  :private_key)
  include Aws::Structure
end

#public_keyString

The public key.

Returns:

  • (String)


5822
5823
5824
5825
5826
# File 'lib/aws-sdk-iot/types.rb', line 5822

class KeyPair < Struct.new(
  :public_key,
  :private_key)
  include Aws::Structure
end