Class: Aws::Transfer::Types::ListUsersRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ListUsersRequest
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
Specifies the number of users to return as a response to the
ListUsers
request. -
#next_token ⇒ String
When you can get additional results from the
ListUsers
call, aNextToken
parameter is returned in the output. -
#server_id ⇒ String
A system-assigned unique identifier for a server that has users assigned to it.
Instance Attribute Details
#max_results ⇒ Integer
Specifies the number of users to return as a response to the
ListUsers
request.
3552 3553 3554 3555 3556 3557 3558 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3552 class ListUsersRequest < Struct.new( :max_results, :next_token, :server_id) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
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.
3552 3553 3554 3555 3556 3557 3558 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3552 class ListUsersRequest < Struct.new( :max_results, :next_token, :server_id) SENSITIVE = [] include Aws::Structure end |
#server_id ⇒ String
A system-assigned unique identifier for a server that has users assigned to it.
3552 3553 3554 3555 3556 3557 3558 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3552 class ListUsersRequest < Struct.new( :max_results, :next_token, :server_id) SENSITIVE = [] include Aws::Structure end |