Skip to main content

managed_microvm_images

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

Overview

Namemanaged_microvm_images
TypeResource
Idaws.lambda_microvms.managed_microvm_images

Fields

The following fields are returned by SELECT queries:

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_managed_microvm_imagesselectregionmaxResults, nextTokenLists AWS managed MicroVM images available for use as base images. 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
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 AWS managed MicroVM images available for use as base images. We recommend using pagination to ensure that the operation returns quickly and successfully.

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