Class: Aws::ElasticsearchService::Types::ListElasticsearchVersionsRequest

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

Overview

Container for the parameters to the ‘ ListElasticsearchVersions ` operation. Use ` MaxResults ` to control the maximum number of results to retrieve in a single call.

Use ` NextToken ` in response to retrieve more results. If the

received response does not contain a NextToken, then there are no more results to retrieve.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

Set this value to limit the number of results returned. Value provided must be greater than 10 else it wont be honored.

Returns:

  • (Integer)


2991
2992
2993
2994
2995
2996
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2991

class ListElasticsearchVersionsRequest < Struct.new(
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

Paginated APIs accepts NextToken input to returns next page results and provides a NextToken output in the response which can be used by the client to retrieve more results.

Returns:

  • (String)


2991
2992
2993
2994
2995
2996
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2991

class ListElasticsearchVersionsRequest < Struct.new(
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end