Class: Aws::Transfer::Types::ListUsersResponse

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

Overview

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

When you can get additional results from the ‘ListUsers` call, a `NextToken` parameter is returned in the output. You can then pass in a subsequent command to the `NextToken` parameter to continue listing additional users.

Returns:

  • (String)


990
991
992
993
994
995
# File 'lib/aws-sdk-transfer/types.rb', line 990

class ListUsersResponse < Struct.new(
  :next_token,
  :server_id,
  :users)
  include Aws::Structure
end

#server_idString

A system-assigned unique identifier for an SFTP server that the users are assigned to.

Returns:

  • (String)


990
991
992
993
994
995
# File 'lib/aws-sdk-transfer/types.rb', line 990

class ListUsersResponse < Struct.new(
  :next_token,
  :server_id,
  :users)
  include Aws::Structure
end

#usersArray<Types::ListedUser>

Returns the user accounts and their properties for the ‘ServerId` value that you specify.

Returns:



990
991
992
993
994
995
# File 'lib/aws-sdk-transfer/types.rb', line 990

class ListUsersResponse < Struct.new(
  :next_token,
  :server_id,
  :users)
  include Aws::Structure
end