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.
      2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 2358 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.
      2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 2358 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.
      2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 2358 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.
      2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 2358 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.
      2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 2358 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.
      2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 2358 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`
 
      2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 2358 class DescribedHostKey < Struct.new( :arn, :host_key_id, :host_key_fingerprint, :description, :type, :date_imported, :tags) SENSITIVE = [] include Aws::Structure end  |