LambdaMicroVMs / Client / list_managed_microvm_image_versions
list_managed_microvm_image_versions¶
- LambdaMicroVMs.Client.list_managed_microvm_image_versions(**kwargs)¶
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
response = client.list_managed_microvm_image_versions( maxResults=123, nextToken='string', imageIdentifier='string' )
- Parameters:
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.
imageIdentifier (string) –
[REQUIRED]
The unique identifier (ARN or ID) of the managed MicroVM image to list versions for.
- Return type:
dict
- Returns:
Response Syntax
{ 'nextToken': 'string', 'items': [ { 'imageArn': 'string', 'imageVersion': 'string', '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.
createdAt (datetime) –
The timestamp when the version was created.
updatedAt (datetime) –
The timestamp when the version was last updated.
Exceptions
LambdaMicroVMs.Client.exceptions.InternalServerExceptionLambdaMicroVMs.Client.exceptions.AccessDeniedExceptionLambdaMicroVMs.Client.exceptions.ResourceNotFoundExceptionLambdaMicroVMs.Client.exceptions.ThrottlingExceptionLambdaMicroVMs.Client.exceptions.ValidationException