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.
Constant Summary collapse
- SENSITIVE =
[:private_key]
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.
10472 10473 10474 10475 10476 10477 |
# File 'lib/aws-sdk-iot/types.rb', line 10472 class KeyPair < Struct.new( :public_key, :private_key) SENSITIVE = [:private_key] include Aws::Structure end |
#public_key ⇒ String
The public key.
10472 10473 10474 10475 10476 10477 |
# File 'lib/aws-sdk-iot/types.rb', line 10472 class KeyPair < Struct.new( :public_key, :private_key) SENSITIVE = [:private_key] include Aws::Structure end |