Skip to main content

service_versions

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

Overview

Nameservice_versions
TypeResource
Idaws.snowball.service_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
dependent_servicesarrayA list of names and versions of dependant services of the service for which the system provided supported versions.
next_tokenstringBecause HTTP requests are stateless, this is the starting point of the next list of returned ListServiceVersionsResult results. (pattern: <code>.*</code>)
service_namestringThe name of the service for which the system provided supported versions. (KUBERNETES, EKS_ANYWHERE)
service_versionsarrayA list of supported versions.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_service_versionsselectregionLists all supported versions for Snow on-device services. Returns an array of ServiceVersion object containing the supported versions for a particular service.

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

Lists all supported versions for Snow on-device services. Returns an array of ServiceVersion object containing the supported versions for a particular service.

SELECT
dependent_services,
next_token,
service_name,
service_versions
FROM aws.snowball.service_versions
WHERE region = '{{ region }}' -- required
;