software_updates
Creates, updates, deletes, gets or lists a software_updates resource.
Overview
| Name | software_updates |
| Type | Resource |
| Id | aws.snowball.software_updates |
Fields
The following fields are returned by SELECT queries:
- get_software_updates
| Name | Datatype | Description |
|---|---|---|
updates_uri | string | The Amazon S3 presigned URL for the update file associated with the specified JobId value. The software update will be available for 2 days after this request is made. To access an update after the 2 days have passed, you'll have to make another call to GetSoftwareUpdates. (pattern: <code>.*</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_software_updates | select | region | Returns an Amazon S3 presigned URL for an update file associated with a specified JobId. |
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
- get_software_updates
Returns an Amazon S3 presigned URL for an update file associated with a specified JobId.
SELECT
updates_uri
FROM aws.snowball.software_updates
WHERE region = '{{ region }}' -- required
;