Class: Aws::Transfer::Types::ImportSshPublicKeyResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ImportSshPublicKeyResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-transfer/types.rb
Overview
Identifies the user, the server they belong to, and the identifier of the SSH public key associated with that user. A user can have more than one key on each server that they are associated with.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#server_id ⇒ String
A system-assigned unique identifier for a server.
-
#ssh_public_key_id ⇒ String
The name given to a public key by the system that was imported.
-
#user_name ⇒ String
A user name assigned to the ‘ServerID` value that you specified.
Instance Attribute Details
#server_id ⇒ String
A system-assigned unique identifier for a server.
3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-transfer/types.rb', line 3516 class ImportSshPublicKeyResponse < Struct.new( :server_id, :ssh_public_key_id, :user_name) SENSITIVE = [] include Aws::Structure end |
#ssh_public_key_id ⇒ String
The name given to a public key by the system that was imported.
3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-transfer/types.rb', line 3516 class ImportSshPublicKeyResponse < Struct.new( :server_id, :ssh_public_key_id, :user_name) SENSITIVE = [] include Aws::Structure end |
#user_name ⇒ String
A user name assigned to the ‘ServerID` value that you specified.
3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-transfer/types.rb', line 3516 class ImportSshPublicKeyResponse < Struct.new( :server_id, :ssh_public_key_id, :user_name) SENSITIVE = [] include Aws::Structure end |