image_packages
Creates, updates, deletes, gets or lists an image_packages resource.
Overview
| Name | image_packages |
| Type | Resource |
| Id | aws.imagebuilder.image_packages |
Fields
The following fields are returned by SELECT queries:
- list_image_packages
| Name | Datatype | Description |
|---|---|---|
package_name | string | The name of the package that's reported to the operating system package manager. |
package_version | string | The version of the package that's reported to the operating system package manager. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_image_packages | select | region | List the Packages that are associated with an Image Build Version, as determined by Amazon Web Services Systems Manager Inventory at build time. |
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_image_packages
List the Packages that are associated with an Image Build Version, as determined by Amazon Web Services Systems Manager Inventory at build time.
SELECT
package_name,
package_version
FROM aws.imagebuilder.image_packages
WHERE region = '{{ region }}' -- required
;