Class: Aws::Transfer::Types::ImportSshPublicKeyResponse

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#server_idString

A system-assigned unique identifier for a server.

Returns:

  • (String)


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_idString

The name given to a public key by the system that was imported.

Returns:

  • (String)


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_nameString

A user name assigned to the ‘ServerID` value that you specified.

Returns:

  • (String)


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