Skip to main content

elasticsearch_versions

Creates, updates, deletes, gets or lists an elasticsearch_versions resource.

Overview

Nameelasticsearch_versions
TypeResource
Idaws.es.elasticsearch_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
elasticsearch_versionstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_elasticsearch_versionsselectregionmaxResults, nextTokenList all supported Elasticsearch versions

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
maxResultsintegerSet this value to limit the number of results returned. Value provided must be greater than 10 else it wont be honored.
nextTokenstring

SELECT examples

List all supported Elasticsearch versions

SELECT
elasticsearch_version
FROM aws.es.elasticsearch_versions
WHERE region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;