Class: Aws::Transfer::Types::ListUsersRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ListUsersRequest
- Includes:
- Structure
- Defined in:
- 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, a `NextToken` 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.
3620 3621 3622 3623 3624 3625 3626 |
# File 'lib/aws-sdk-transfer/types.rb', line 3620 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.
3620 3621 3622 3623 3624 3625 3626 |
# File 'lib/aws-sdk-transfer/types.rb', line 3620 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.
3620 3621 3622 3623 3624 3625 3626 |
# File 'lib/aws-sdk-transfer/types.rb', line 3620 class ListUsersRequest < Struct.new( :max_results, :next_token, :server_id) SENSITIVE = [] include Aws::Structure end |