Class: Aws::IoT::Types::KeyPair
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::KeyPair
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Describes a key pair.
Instance Attribute Summary collapse
-
#private_key ⇒ String
The private key.
-
#public_key ⇒ String
The public key.
Instance Attribute Details
#private_key ⇒ String
The private key.
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_key ⇒ String
The public key.
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 |