Skip to main content

managed_microvm_image_versions

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

Overview

Namemanaged_microvm_image_versions
TypeResource
Idaws.lambda_microvms.managed_microvm_image_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_atstring (date-time)The timestamp when the version was created.
image_arnstringA string which is not empty or blank (only whitespace). (pattern: <code>[^\s]+</code>)
image_versionstringA string which is not empty or blank (only whitespace). (pattern: <code>[^\s]+</code>)
updated_atstring (date-time)The timestamp when the version was last updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_managed_microvm_image_versionsselectimage_identifier, regionmaxResults, nextTokenLists versions of a managed MicroVM image. We recommend using pagination to ensure that the operation returns quickly and successfully.

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
image_identifierstringThe unique identifier (ARN or ID) of the managed MicroVM image to list versions for.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results to return in a single call.
nextTokenstringThe pagination token from a previous call. Use this token to retrieve the next page of results.

SELECT examples

Lists versions of a managed MicroVM image. We recommend using pagination to ensure that the operation returns quickly and successfully.

SELECT
created_at,
image_arn,
image_version,
updated_at
FROM aws.lambda_microvms.managed_microvm_image_versions
WHERE image_identifier = '{{ image_identifier }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;