service_versions
Creates, updates, deletes, gets or lists a service_versions resource.
Overview
| Name | service_versions |
| Type | Resource |
| Id | aws.snowball.service_versions |
Fields
The following fields are returned by SELECT queries:
- list_service_versions
| Name | Datatype | Description |
|---|---|---|
dependent_services | array | A list of names and versions of dependant services of the service for which the system provided supported versions. |
next_token | string | Because HTTP requests are stateless, this is the starting point of the next list of returned ListServiceVersionsResult results. (pattern: <code>.*</code>) |
service_name | string | The name of the service for which the system provided supported versions. (KUBERNETES, EKS_ANYWHERE) |
service_versions | array | A list of supported versions. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_service_versions | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_service_versions
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
;