managed_microvm_images
Creates, updates, deletes, gets or lists a managed_microvm_images resource.
Overview
| Name | managed_microvm_images |
| Type | Resource |
| Id | aws.lambda_microvms.managed_microvm_images |
Fields
The following fields are returned by SELECT queries:
- list_managed_microvm_images
| Name | Datatype | Description |
|---|---|---|
created_at | string (date-time) | The timestamp when the managed MicroVM image was created. |
image_arn | string | A string which is not empty or blank (only whitespace). (pattern: <code>[^\s]+</code>) |
updated_at | string (date-time) | The timestamp when the managed MicroVM image was last updated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_managed_microvm_images | select | region | maxResults, nextToken | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
maxResults | integer | The maximum number of results to return in a single call. |
nextToken | string | The pagination token from a previous call. Use this token to retrieve the next page of results. |
SELECT examples
- list_managed_microvm_images
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 }}'
;