Class: Aws::Transfer::Types::DescribeUserRequest

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 DescribeUserRequest 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 that has this user assigned.

Returns:

  • (String)


418
419
420
421
422
# File 'lib/aws-sdk-transfer/types.rb', line 418

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

#user_nameString

The name of the user assigned to one or more servers. User names are part of the sign-in credentials to use the AWS Transfer for SFTP service and perform file transfer tasks.

Returns:

  • (String)


418
419
420
421
422
# File 'lib/aws-sdk-transfer/types.rb', line 418

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