Class: Aws::Transfer::Types::ImportSshPublicKeyRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Transfer::Types::ImportSshPublicKeyRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-transfer/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #server_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A system-assigned unique identifier for a server.
 - 
  
    
      #ssh_public_key_body  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The public key portion of an SSH key pair.
 - 
  
    
      #user_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the Transfer Family user that is assigned to one or more servers.
 
Instance Attribute Details
#server_id ⇒ String
A system-assigned unique identifier for a server.
      3449 3450 3451 3452 3453 3454 3455  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 3449 class ImportSshPublicKeyRequest < Struct.new( :server_id, :ssh_public_key_body, :user_name) SENSITIVE = [] include Aws::Structure end  | 
  
#ssh_public_key_body ⇒ String
The public key portion of an SSH key pair.
Transfer Family accepts RSA, ECDSA, and ED25519 keys.
      3449 3450 3451 3452 3453 3454 3455  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 3449 class ImportSshPublicKeyRequest < Struct.new( :server_id, :ssh_public_key_body, :user_name) SENSITIVE = [] include Aws::Structure end  | 
  
#user_name ⇒ String
The name of the Transfer Family user that is assigned to one or more servers.
      3449 3450 3451 3452 3453 3454 3455  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 3449 class ImportSshPublicKeyRequest < Struct.new( :server_id, :ssh_public_key_body, :user_name) SENSITIVE = [] include Aws::Structure end  |