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.
3490 3491 3492 3493 3494 3495 3496 |
# File 'lib/aws-sdk-transfer/types.rb', line 3490 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.
3490 3491 3492 3493 3494 3495 3496 |
# File 'lib/aws-sdk-transfer/types.rb', line 3490 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.
3490 3491 3492 3493 3494 3495 3496 |
# File 'lib/aws-sdk-transfer/types.rb', line 3490 class ImportSshPublicKeyRequest < Struct.new( :server_id, :ssh_public_key_body, :user_name) SENSITIVE = [] include Aws::Structure end |