Class: Aws::Transfer::Types::ListServersRequest

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 ListServersRequest data as a hash:

{
  max_results: 1,
  next_token: "NextToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

Specifies the number of servers to return as a response to the ‘ListServers` query.

Returns:

  • (Integer)


849
850
851
852
853
# File 'lib/aws-sdk-transfer/types.rb', line 849

class ListServersRequest < Struct.new(
  :max_results,
  :next_token)
  include Aws::Structure
end

#next_tokenString

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.

Returns:

  • (String)


849
850
851
852
853
# File 'lib/aws-sdk-transfer/types.rb', line 849

class ListServersRequest < Struct.new(
  :max_results,
  :next_token)
  include Aws::Structure
end