Class: Aws::Transfer::Types::DescribedHostKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::DescribedHostKey
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-transfer/types.rb
Overview
The details for a server host key.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The unique Amazon Resource Name (ARN) for the host key.
-
#date_imported ⇒ Time
The date on which the host key was added to the server.
-
#description ⇒ String
The text description for this host key.
-
#host_key_fingerprint ⇒ String
The public key fingerprint, which is a short sequence of bytes used to identify the longer public key.
-
#host_key_id ⇒ String
A unique identifier for the host key.
-
#tags ⇒ Array<Types::Tag>
Key-value pairs that can be used to group and search for host keys.
-
#type ⇒ String
The encryption algorithm that is used for the host key.
Instance Attribute Details
#arn ⇒ String
The unique Amazon Resource Name (ARN) for the host key.
2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 |
# File 'lib/aws-sdk-transfer/types.rb', line 2392 class DescribedHostKey < Struct.new( :arn, :host_key_id, :host_key_fingerprint, :description, :type, :date_imported, :tags) SENSITIVE = [] include Aws::Structure end |
#date_imported ⇒ Time
The date on which the host key was added to the server.
2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 |
# File 'lib/aws-sdk-transfer/types.rb', line 2392 class DescribedHostKey < Struct.new( :arn, :host_key_id, :host_key_fingerprint, :description, :type, :date_imported, :tags) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The text description for this host key.
2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 |
# File 'lib/aws-sdk-transfer/types.rb', line 2392 class DescribedHostKey < Struct.new( :arn, :host_key_id, :host_key_fingerprint, :description, :type, :date_imported, :tags) SENSITIVE = [] include Aws::Structure end |
#host_key_fingerprint ⇒ String
The public key fingerprint, which is a short sequence of bytes used to identify the longer public key.
2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 |
# File 'lib/aws-sdk-transfer/types.rb', line 2392 class DescribedHostKey < Struct.new( :arn, :host_key_id, :host_key_fingerprint, :description, :type, :date_imported, :tags) SENSITIVE = [] include Aws::Structure end |
#host_key_id ⇒ String
A unique identifier for the host key.
2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 |
# File 'lib/aws-sdk-transfer/types.rb', line 2392 class DescribedHostKey < Struct.new( :arn, :host_key_id, :host_key_fingerprint, :description, :type, :date_imported, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
Key-value pairs that can be used to group and search for host keys.
2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 |
# File 'lib/aws-sdk-transfer/types.rb', line 2392 class DescribedHostKey < Struct.new( :arn, :host_key_id, :host_key_fingerprint, :description, :type, :date_imported, :tags) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The encryption algorithm that is used for the host key. The ‘Type` parameter is specified by using one of the following values:
-
‘ssh-rsa`
-
‘ssh-ed25519`
-
‘ecdsa-sha2-nistp256`
-
‘ecdsa-sha2-nistp384`
-
‘ecdsa-sha2-nistp521`
2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 |
# File 'lib/aws-sdk-transfer/types.rb', line 2392 class DescribedHostKey < Struct.new( :arn, :host_key_id, :host_key_fingerprint, :description, :type, :date_imported, :tags) SENSITIVE = [] include Aws::Structure end |