Class: Aws::Transfer::Types::ImportSshPublicKeyResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ImportSshPublicKeyResponse
- Defined in:
- gems/aws-sdk-transfer/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.
3794 3795 3796 3797 3798 3799 3800 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3794 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.
3794 3795 3796 3797 3798 3799 3800 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3794 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.
3794 3795 3796 3797 3798 3799 3800 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3794 class ImportSshPublicKeyResponse < Struct.new( :server_id, :ssh_public_key_id, :user_name) SENSITIVE = [] include Aws::Structure end |