Class: Aws::ElasticsearchService::Types::ListElasticsearchVersionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::ListElasticsearchVersionsResponse
- 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
-
#elasticsearch_versions ⇒ Array<String>
List of supported elastic search versions.
-
#next_token ⇒ String
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.
Instance Attribute Details
#elasticsearch_versions ⇒ Array<String>
List of supported elastic search versions.
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_token ⇒ String
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.
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 |