LambdaMicroVMs / Client / list_managed_microvm_images
list_managed_microvm_images¶
- LambdaMicroVMs.Client.list_managed_microvm_images(**kwargs)¶
Lists AWS managed MicroVM images available for use as base images. 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_images( maxResults=123, nextToken='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.
- Return type:
dict
- Returns:
Response Syntax
{ 'nextToken': 'string', 'items': [ { 'imageArn': '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 images.
(dict) –
Contains summary information about a managed MicroVM image.
imageArn (string) –
The ARN of the managed MicroVM image.
createdAt (datetime) –
The timestamp when the managed MicroVM image was created.
updatedAt (datetime) –
The timestamp when the managed MicroVM image was last updated.
Exceptions
LambdaMicroVMs.Client.exceptions.InternalServerExceptionLambdaMicroVMs.Client.exceptions.AccessDeniedExceptionLambdaMicroVMs.Client.exceptions.ThrottlingExceptionLambdaMicroVMs.Client.exceptions.ValidationException