Class: Aws::Transfer::Types::UpdateUserResponse

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb

Overview

UpdateUserResponse returns the user name and identifier for the request to update a user's properties.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#server_idString

A system-assigned unique identifier for a Transfer Family server instance that the account is assigned to.

Returns:

  • (String)


6396
6397
6398
6399
6400
6401
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 6396

class UpdateUserResponse < Struct.new(
  :server_id,
  :user_name)
  SENSITIVE = []
  include Aws::Structure
end

#user_nameString

The unique identifier for a user that is assigned to a server instance that was specified in the request.

Returns:

  • (String)


6396
6397
6398
6399
6400
6401
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 6396

class UpdateUserResponse < Struct.new(
  :server_id,
  :user_name)
  SENSITIVE = []
  include Aws::Structure
end