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

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

Overview

Describes a key pair.

Constant Summary collapse

SENSITIVE =
[:private_key]

Instance Attribute Summary collapse

Instance Attribute Details

#private_keyString

The private key.

Returns:

  • (String)


9246
9247
9248
9249
9250
9251
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 9246

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

#public_keyString

The public key.

Returns:

  • (String)


9246
9247
9248
9249
9250
9251
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 9246

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