Skip to main content

versions

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

Overview

Nameversions
TypeResource
Idaws.evs.versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
instance_type_esx_versionsarrayA list of EC2 instance types and their available ESX versions.
vcf_versionsarrayA list of VCF versions with their availability status, default ESX version, and instance types.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_versionsselectregionReturns information about VCF versions, ESX versions and EC2 instance types provided by Amazon EVS. For each VCF version, the response also includes the default ESX version and provided EC2 instance types.

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)

SELECT examples

Returns information about VCF versions, ESX versions and EC2 instance types provided by Amazon EVS. For each VCF version, the response also includes the default ESX version and provided EC2 instance types.

SELECT
instance_type_esx_versions,
vcf_versions
FROM aws.evs.versions
WHERE region = '{{ region }}' -- required
;