Class: Aws::Transfer::Types::ListServersRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ListServersRequest
- 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 servers to return as a response to the ‘ListServers` query.
-
#next_token ⇒ String
When additional results are obtained from the ‘ListServers` command, a `NextToken` parameter is returned in the output.
Instance Attribute Details
#max_results ⇒ Integer
Specifies the number of servers to return as a response to the ‘ListServers` query.
4046 4047 4048 4049 4050 4051 |
# File 'lib/aws-sdk-transfer/types.rb', line 4046 class ListServersRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
When additional results are obtained from the ‘ListServers` command, a `NextToken` parameter is returned in the output. You can then pass the `NextToken` parameter in a subsequent command to continue listing additional servers.
4046 4047 4048 4049 4050 4051 |
# File 'lib/aws-sdk-transfer/types.rb', line 4046 class ListServersRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |