Class: Aws::Transfer::Types::ListedHostKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ListedHostKey
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Returns properties of the host key that's specified.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The unique Amazon Resource Name (ARN) of the host key.
-
#date_imported ⇒ Time
The date on which the host key was added to the server.
-
#description ⇒ String
The current description for the 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.
-
#type ⇒ String
The encryption algorithm that is used for the host key.
Instance Attribute Details
#arn ⇒ String
The unique Amazon Resource Name (ARN) of the host key.
4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4958 class ListedHostKey < Struct.new( :arn, :host_key_id, :fingerprint, :description, :type, :date_imported) SENSITIVE = [] include Aws::Structure end |
#date_imported ⇒ Time
The date on which the host key was added to the server.
4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4958 class ListedHostKey < Struct.new( :arn, :host_key_id, :fingerprint, :description, :type, :date_imported) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The current description for the host key. You can change it by
calling the UpdateHostKey
operation and providing a new
description.
4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4958 class ListedHostKey < Struct.new( :arn, :host_key_id, :fingerprint, :description, :type, :date_imported) SENSITIVE = [] include Aws::Structure end |
#fingerprint ⇒ String
The public key fingerprint, which is a short sequence of bytes used to identify the longer public key.
4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4958 class ListedHostKey < Struct.new( :arn, :host_key_id, :fingerprint, :description, :type, :date_imported) SENSITIVE = [] include Aws::Structure end |
#host_key_id ⇒ String
A unique identifier for the host key.
4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4958 class ListedHostKey < Struct.new( :arn, :host_key_id, :fingerprint, :description, :type, :date_imported) 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
4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4958 class ListedHostKey < Struct.new( :arn, :host_key_id, :fingerprint, :description, :type, :date_imported) SENSITIVE = [] include Aws::Structure end |