Skip to main content

compatible_elasticsearch_versions

Creates, updates, deletes, gets or lists a compatible_elasticsearch_versions resource.

Overview

Namecompatible_elasticsearch_versions
TypeResource
Idaws.es.compatible_elasticsearch_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
compatible_elasticsearch_versionsarrayA map of compatible Elasticsearch versions returned as part of the GetCompatibleElasticsearchVersions operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_compatible_elasticsearch_versionsselectregiondomainNameReturns a list of upgrade compatible Elastisearch versions. You can optionally pass a DomainName to get all upgrade compatible Elasticsearch versions for that specific domain.

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)
domainNamestring

SELECT examples

Returns a list of upgrade compatible Elastisearch versions. You can optionally pass a DomainName to get all upgrade compatible Elasticsearch versions for that specific domain.

SELECT
compatible_elasticsearch_versions
FROM aws.es.compatible_elasticsearch_versions
WHERE region = '{{ region }}' -- required
AND domainName = '{{ domainName }}'
;