Skip to main content

image_packages

Creates, updates, deletes, gets or lists an image_packages resource.

Overview

Nameimage_packages
TypeResource
Idaws.imagebuilder.image_packages

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
package_namestringThe name of the package that's reported to the operating system package manager.
package_versionstringThe version of the package that's reported to the operating system package manager.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_image_packagesselectregionList 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;