managed_microvm_image_versions
Creates, updates, deletes, gets or lists a managed_microvm_image_versions resource.
Overview
| Name | managed_microvm_image_versions |
| Type | Resource |
| Id | aws.lambda_microvms.managed_microvm_image_versions |
Fields
The following fields are returned by SELECT queries:
- list_managed_microvm_image_versions
| Name | Datatype | Description |
|---|---|---|
created_at | string (date-time) | The timestamp when the version was created. |
image_arn | string | A string which is not empty or blank (only whitespace). (pattern: <code>[^\s]+</code>) |
image_version | string | A string which is not empty or blank (only whitespace). (pattern: <code>[^\s]+</code>) |
updated_at | string (date-time) | The timestamp when the version was last updated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_managed_microvm_image_versions | select | image_identifier, region | maxResults, nextToken | Lists 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.
| Name | Datatype | Description |
|---|---|---|
image_identifier | string | The unique identifier (ARN or ID) of the managed MicroVM image to list versions for. |
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_image_versions
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 }}'
;