Class: Aws::Transfer::Types::DeleteUserRequest

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

Overview

Note:

When making an API call, you may pass DeleteUserRequest data as a hash:

{
  server_id: "ServerId", # required
  user_name: "UserName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#server_idString

A system-assigned unique identifier for an SFTP server instance that has the user assigned to it.

Returns:

  • (String)


361
362
363
364
365
# File 'lib/aws-sdk-transfer/types.rb', line 361

class DeleteUserRequest < Struct.new(
  :server_id,
  :user_name)
  include Aws::Structure
end

#user_nameString

A unique string that identifies a user that is being deleted from the server.

Returns:

  • (String)


361
362
363
364
365
# File 'lib/aws-sdk-transfer/types.rb', line 361

class DeleteUserRequest < Struct.new(
  :server_id,
  :user_name)
  include Aws::Structure
end