Lambda MicroVMs

2026/08/27 - Lambda MicroVMs - 1 updated api methods

Changes  Added InsufficientCapacityException to RunMicrovm for capacity-related failures. Added lifecycle status field (AVAILABLE, DEPRECATED) to ListManagedMicrovmImageVersions. Added ConflictException to CreateMicrovmAuthToken and CreateMicrovmShellAuthToken for unregistered MicroVMs.

ListManagedMicrovmImageVersions (updated) Link ΒΆ
Changes (response)
{'items': {'status': 'AVAILABLE | DEPRECATED'}}

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

See also: AWS API Documentation

Request Syntax

client.list_managed_microvm_image_versions(
    maxResults=123,
    nextToken='string',
    imageIdentifier='string'
)
type maxResults:

integer

param maxResults:

The maximum number of results to return in a single call.

type nextToken:

string

param nextToken:

The pagination token from a previous call. Use this token to retrieve the next page of results.

type imageIdentifier:

string

param imageIdentifier:

[REQUIRED]

The unique identifier (ARN or ID) of the managed MicroVM image to list versions for.

rtype:

dict

returns:

Response Syntax

{
    'nextToken': 'string',
    'items': [
        {
            'imageArn': 'string',
            'imageVersion': 'string',
            'status': 'AVAILABLE'|'DEPRECATED',
            'createdAt': datetime(2015, 1, 1),
            'updatedAt': datetime(2015, 1, 1)
        },
    ]
}

Response Structure

  • (dict) --

    • nextToken (string) --

      The pagination token to use in a subsequent request to retrieve the next page of results. This value is null when there are no more results to return.

    • items (list) --

      The list of managed MicroVM image versions.

      • (dict) --

        Contains version information for a managed MicroVM image.

        • imageArn (string) --

          The ARN of the managed MicroVM image.

        • imageVersion (string) --

          The version of the managed MicroVM image.

        • status (string) --

          The lifecycle status of the managed MicroVM image version. Valid values: AVAILABLE (the version is available for use) or DEPRECATED (the version is deprecated; do not use it for new MicroVM images).

        • createdAt (datetime) --

          The timestamp when the version was created.

        • updatedAt (datetime) --

          The timestamp when the version was last updated.