Class: Aws::EC2::Types::KeyPair

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

Overview

Describes a key pair.

Constant Summary collapse

SENSITIVE =
[:key_material]

Instance Attribute Summary collapse

Instance Attribute Details

#key_fingerprintString

  • For RSA key pairs, the key fingerprint is the SHA-1 digest of the DER encoded private key.

  • For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.

Returns:

  • (String)


43503
43504
43505
43506
43507
43508
43509
43510
43511
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 43503

class KeyPair < Struct.new(
  :key_fingerprint,
  :key_material,
  :key_name,
  :key_pair_id,
  :tags)
  SENSITIVE = [:key_material]
  include Aws::Structure
end

#key_materialString

An unencrypted PEM encoded RSA or ED25519 private key.

Returns:

  • (String)


43503
43504
43505
43506
43507
43508
43509
43510
43511
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 43503

class KeyPair < Struct.new(
  :key_fingerprint,
  :key_material,
  :key_name,
  :key_pair_id,
  :tags)
  SENSITIVE = [:key_material]
  include Aws::Structure
end

#key_nameString

The name of the key pair.

Returns:

  • (String)


43503
43504
43505
43506
43507
43508
43509
43510
43511
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 43503

class KeyPair < Struct.new(
  :key_fingerprint,
  :key_material,
  :key_name,
  :key_pair_id,
  :tags)
  SENSITIVE = [:key_material]
  include Aws::Structure
end

#key_pair_idString

The ID of the key pair.

Returns:

  • (String)


43503
43504
43505
43506
43507
43508
43509
43510
43511
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 43503

class KeyPair < Struct.new(
  :key_fingerprint,
  :key_material,
  :key_name,
  :key_pair_id,
  :tags)
  SENSITIVE = [:key_material]
  include Aws::Structure
end

#tagsArray<Types::Tag>

Any tags applied to the key pair.

Returns:



43503
43504
43505
43506
43507
43508
43509
43510
43511
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 43503

class KeyPair < Struct.new(
  :key_fingerprint,
  :key_material,
  :key_name,
  :key_pair_id,
  :tags)
  SENSITIVE = [:key_material]
  include Aws::Structure
end