Class: Aws::ElasticsearchService::Types::ListElasticsearchVersionsResponse

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

Overview

Container for the parameters for response received from ‘ ListElasticsearchVersions ` operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#elasticsearch_versionsArray<String>

List of supported elastic search versions.

Returns:

  • (Array<String>)


3011
3012
3013
3014
3015
3016
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3011

class ListElasticsearchVersionsResponse < Struct.new(
  :elasticsearch_versions,
  :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)


3011
3012
3013
3014
3015
3016
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3011

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