Class: Aws::EC2::Types::KeyPair
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::KeyPair
- 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
-
#key_fingerprint ⇒ String
- For RSA key pairs, the key fingerprint is the SHA-1 digest of the DER encoded private key.
-
#key_material ⇒ String
An unencrypted PEM encoded RSA or ED25519 private key.
-
#key_name ⇒ String
The name of the key pair.
-
#key_pair_id ⇒ String
The ID of the key pair.
-
#tags ⇒ Array<Types::Tag>
Any tags applied to the key pair.
Instance Attribute Details
#key_fingerprint ⇒ String
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.
45977 45978 45979 45980 45981 45982 45983 45984 45985 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 45977 class KeyPair < Struct.new( :key_pair_id, :tags, :key_name, :key_fingerprint, :key_material) SENSITIVE = [:key_material] include Aws::Structure end |
#key_material ⇒ String
An unencrypted PEM encoded RSA or ED25519 private key.
45977 45978 45979 45980 45981 45982 45983 45984 45985 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 45977 class KeyPair < Struct.new( :key_pair_id, :tags, :key_name, :key_fingerprint, :key_material) SENSITIVE = [:key_material] include Aws::Structure end |
#key_name ⇒ String
The name of the key pair.
45977 45978 45979 45980 45981 45982 45983 45984 45985 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 45977 class KeyPair < Struct.new( :key_pair_id, :tags, :key_name, :key_fingerprint, :key_material) SENSITIVE = [:key_material] include Aws::Structure end |
#key_pair_id ⇒ String
The ID of the key pair.
45977 45978 45979 45980 45981 45982 45983 45984 45985 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 45977 class KeyPair < Struct.new( :key_pair_id, :tags, :key_name, :key_fingerprint, :key_material) SENSITIVE = [:key_material] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
Any tags applied to the key pair.
45977 45978 45979 45980 45981 45982 45983 45984 45985 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 45977 class KeyPair < Struct.new( :key_pair_id, :tags, :key_name, :key_fingerprint, :key_material) SENSITIVE = [:key_material] include Aws::Structure end |