types-boto3-lambda-microvms 1.43.35__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,439 @@
1
+ """
2
+ Type annotations for lambda-microvms service Client.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/)
5
+
6
+ Copyright 2026 Vlad Emelianov
7
+
8
+ Usage::
9
+
10
+ ```python
11
+ from boto3.session import Session
12
+ from types_boto3_lambda_microvms.client import LambdaMicroVMsClient
13
+
14
+ session = Session()
15
+ client: LambdaMicroVMsClient = session.client("lambda-microvms")
16
+ ```
17
+ """
18
+
19
+ from __future__ import annotations
20
+
21
+ import sys
22
+ from collections.abc import Mapping
23
+ from typing import Any, overload
24
+
25
+ from botocore.client import BaseClient, ClientMeta
26
+ from botocore.errorfactory import BaseClientExceptions
27
+ from botocore.exceptions import ClientError as BotocoreClientError
28
+
29
+ from .paginator import (
30
+ ListManagedMicrovmImagesPaginator,
31
+ ListManagedMicrovmImageVersionsPaginator,
32
+ ListMicrovmImageBuildsPaginator,
33
+ ListMicrovmImagesPaginator,
34
+ ListMicrovmImageVersionsPaginator,
35
+ ListMicrovmsPaginator,
36
+ )
37
+ from .type_defs import (
38
+ CreateMicrovmAuthTokenRequestTypeDef,
39
+ CreateMicrovmAuthTokenResponseTypeDef,
40
+ CreateMicrovmImageRequestTypeDef,
41
+ CreateMicrovmImageResponseTypeDef,
42
+ CreateMicrovmShellAuthTokenRequestTypeDef,
43
+ CreateMicrovmShellAuthTokenResponseTypeDef,
44
+ DeleteMicrovmImageInputTypeDef,
45
+ DeleteMicrovmImageOutputTypeDef,
46
+ DeleteMicrovmImageVersionInputTypeDef,
47
+ DeleteMicrovmImageVersionOutputTypeDef,
48
+ EmptyResponseMetadataTypeDef,
49
+ GetMicrovmImageBuildInputTypeDef,
50
+ GetMicrovmImageBuildOutputTypeDef,
51
+ GetMicrovmImageInputTypeDef,
52
+ GetMicrovmImageOutputTypeDef,
53
+ GetMicrovmImageVersionInputTypeDef,
54
+ GetMicrovmImageVersionOutputTypeDef,
55
+ GetMicrovmRequestTypeDef,
56
+ GetMicrovmResponseTypeDef,
57
+ ListManagedMicrovmImagesInputTypeDef,
58
+ ListManagedMicrovmImagesOutputTypeDef,
59
+ ListManagedMicrovmImageVersionsInputTypeDef,
60
+ ListManagedMicrovmImageVersionsOutputTypeDef,
61
+ ListMicrovmImageBuildsInputTypeDef,
62
+ ListMicrovmImageBuildsOutputTypeDef,
63
+ ListMicrovmImagesRequestTypeDef,
64
+ ListMicrovmImagesResponseTypeDef,
65
+ ListMicrovmImageVersionsInputTypeDef,
66
+ ListMicrovmImageVersionsOutputTypeDef,
67
+ ListMicrovmsRequestTypeDef,
68
+ ListMicrovmsResponseTypeDef,
69
+ ListTagsRequestTypeDef,
70
+ ListTagsResponseTypeDef,
71
+ ResumeMicrovmRequestTypeDef,
72
+ RunMicrovmRequestTypeDef,
73
+ RunMicrovmResponseTypeDef,
74
+ SuspendMicrovmRequestTypeDef,
75
+ TagResourceRequestTypeDef,
76
+ TerminateMicrovmRequestTypeDef,
77
+ UntagResourceRequestTypeDef,
78
+ UpdateMicrovmImageRequestTypeDef,
79
+ UpdateMicrovmImageResponseTypeDef,
80
+ UpdateMicrovmImageVersionRequestTypeDef,
81
+ UpdateMicrovmImageVersionResponseTypeDef,
82
+ )
83
+
84
+ if sys.version_info >= (3, 12):
85
+ from typing import Literal, Unpack
86
+ else:
87
+ from typing_extensions import Literal, Unpack
88
+
89
+ __all__ = ("LambdaMicroVMsClient",)
90
+
91
+ class Exceptions(BaseClientExceptions):
92
+ AccessDeniedException: type[BotocoreClientError]
93
+ ClientError: type[BotocoreClientError]
94
+ ConflictException: type[BotocoreClientError]
95
+ InternalServerException: type[BotocoreClientError]
96
+ InvalidParameterValueException: type[BotocoreClientError]
97
+ ResourceConflictException: type[BotocoreClientError]
98
+ ResourceNotFoundException: type[BotocoreClientError]
99
+ ServiceException: type[BotocoreClientError]
100
+ ServiceQuotaExceededException: type[BotocoreClientError]
101
+ ThrottlingException: type[BotocoreClientError]
102
+ TooManyRequestsException: type[BotocoreClientError]
103
+ ValidationException: type[BotocoreClientError]
104
+
105
+ class LambdaMicroVMsClient(BaseClient):
106
+ """
107
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms.html#LambdaMicroVMs.Client)
108
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/)
109
+ """
110
+
111
+ meta: ClientMeta
112
+
113
+ @property
114
+ def exceptions(self) -> Exceptions:
115
+ """
116
+ LambdaMicroVMsClient exceptions.
117
+
118
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms.html#LambdaMicroVMs.Client)
119
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#exceptions)
120
+ """
121
+
122
+ def can_paginate(self, operation_name: str) -> bool:
123
+ """
124
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/can_paginate.html)
125
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#can_paginate)
126
+ """
127
+
128
+ def generate_presigned_url(
129
+ self,
130
+ ClientMethod: str,
131
+ Params: Mapping[str, Any] = ...,
132
+ ExpiresIn: int = 3600,
133
+ HttpMethod: str = ...,
134
+ ) -> str:
135
+ """
136
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/generate_presigned_url.html)
137
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#generate_presigned_url)
138
+ """
139
+
140
+ def create_microvm_auth_token(
141
+ self, **kwargs: Unpack[CreateMicrovmAuthTokenRequestTypeDef]
142
+ ) -> CreateMicrovmAuthTokenResponseTypeDef:
143
+ """
144
+ Creates an authentication token for accessing a running MicroVM.
145
+
146
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/create_microvm_auth_token.html)
147
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#create_microvm_auth_token)
148
+ """
149
+
150
+ def create_microvm_image(
151
+ self, **kwargs: Unpack[CreateMicrovmImageRequestTypeDef]
152
+ ) -> CreateMicrovmImageResponseTypeDef:
153
+ """
154
+ Creates a MicroVM image from the specified code artifact and base image.
155
+
156
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/create_microvm_image.html)
157
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#create_microvm_image)
158
+ """
159
+
160
+ def create_microvm_shell_auth_token(
161
+ self, **kwargs: Unpack[CreateMicrovmShellAuthTokenRequestTypeDef]
162
+ ) -> CreateMicrovmShellAuthTokenResponseTypeDef:
163
+ """
164
+ Creates a shell authentication token for interactive shell access to a running
165
+ MicroVM.
166
+
167
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/create_microvm_shell_auth_token.html)
168
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#create_microvm_shell_auth_token)
169
+ """
170
+
171
+ def delete_microvm_image(
172
+ self, **kwargs: Unpack[DeleteMicrovmImageInputTypeDef]
173
+ ) -> DeleteMicrovmImageOutputTypeDef:
174
+ """
175
+ Deletes a MicroVM image.
176
+
177
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/delete_microvm_image.html)
178
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#delete_microvm_image)
179
+ """
180
+
181
+ def delete_microvm_image_version(
182
+ self, **kwargs: Unpack[DeleteMicrovmImageVersionInputTypeDef]
183
+ ) -> DeleteMicrovmImageVersionOutputTypeDef:
184
+ """
185
+ Deletes a specific version of a MicroVM image.
186
+
187
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/delete_microvm_image_version.html)
188
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#delete_microvm_image_version)
189
+ """
190
+
191
+ def get_microvm(self, **kwargs: Unpack[GetMicrovmRequestTypeDef]) -> GetMicrovmResponseTypeDef:
192
+ """
193
+ Retrieves the details of a specific MicroVM, including its state, endpoint,
194
+ image information, and configuration.
195
+
196
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/get_microvm.html)
197
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#get_microvm)
198
+ """
199
+
200
+ def get_microvm_image(
201
+ self, **kwargs: Unpack[GetMicrovmImageInputTypeDef]
202
+ ) -> GetMicrovmImageOutputTypeDef:
203
+ """
204
+ Retrieves the details of a MicroVM image, including its state, versions, and
205
+ configuration.
206
+
207
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/get_microvm_image.html)
208
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#get_microvm_image)
209
+ """
210
+
211
+ def get_microvm_image_build(
212
+ self, **kwargs: Unpack[GetMicrovmImageBuildInputTypeDef]
213
+ ) -> GetMicrovmImageBuildOutputTypeDef:
214
+ """
215
+ Retrieves the details of a specific MicroVM image build, including its state,
216
+ target architecture, and snapshot information.
217
+
218
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/get_microvm_image_build.html)
219
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#get_microvm_image_build)
220
+ """
221
+
222
+ def get_microvm_image_version(
223
+ self, **kwargs: Unpack[GetMicrovmImageVersionInputTypeDef]
224
+ ) -> GetMicrovmImageVersionOutputTypeDef:
225
+ """
226
+ Retrieves the details of a specific version of a MicroVM image, including its
227
+ configuration, state, and build information.
228
+
229
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/get_microvm_image_version.html)
230
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#get_microvm_image_version)
231
+ """
232
+
233
+ def list_managed_microvm_image_versions(
234
+ self, **kwargs: Unpack[ListManagedMicrovmImageVersionsInputTypeDef]
235
+ ) -> ListManagedMicrovmImageVersionsOutputTypeDef:
236
+ """
237
+ Lists versions of a managed MicroVM image.
238
+
239
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/list_managed_microvm_image_versions.html)
240
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#list_managed_microvm_image_versions)
241
+ """
242
+
243
+ def list_managed_microvm_images(
244
+ self, **kwargs: Unpack[ListManagedMicrovmImagesInputTypeDef]
245
+ ) -> ListManagedMicrovmImagesOutputTypeDef:
246
+ """
247
+ Lists AWS managed MicroVM images available for use as base images.
248
+
249
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/list_managed_microvm_images.html)
250
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#list_managed_microvm_images)
251
+ """
252
+
253
+ def list_microvm_image_builds(
254
+ self, **kwargs: Unpack[ListMicrovmImageBuildsInputTypeDef]
255
+ ) -> ListMicrovmImageBuildsOutputTypeDef:
256
+ """
257
+ Lists builds for a MicroVM image version with optional filtering by
258
+ architecture and chipset.
259
+
260
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/list_microvm_image_builds.html)
261
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#list_microvm_image_builds)
262
+ """
263
+
264
+ def list_microvm_image_versions(
265
+ self, **kwargs: Unpack[ListMicrovmImageVersionsInputTypeDef]
266
+ ) -> ListMicrovmImageVersionsOutputTypeDef:
267
+ """
268
+ Lists versions of a MicroVM image.
269
+
270
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/list_microvm_image_versions.html)
271
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#list_microvm_image_versions)
272
+ """
273
+
274
+ def list_microvm_images(
275
+ self, **kwargs: Unpack[ListMicrovmImagesRequestTypeDef]
276
+ ) -> ListMicrovmImagesResponseTypeDef:
277
+ """
278
+ Lists MicroVM images in the account with optional name filtering.
279
+
280
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/list_microvm_images.html)
281
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#list_microvm_images)
282
+ """
283
+
284
+ def list_microvms(
285
+ self, **kwargs: Unpack[ListMicrovmsRequestTypeDef]
286
+ ) -> ListMicrovmsResponseTypeDef:
287
+ """
288
+ Lists MicroVMs in the account with optional filtering by image and version.
289
+
290
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/list_microvms.html)
291
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#list_microvms)
292
+ """
293
+
294
+ def list_tags(self, **kwargs: Unpack[ListTagsRequestTypeDef]) -> ListTagsResponseTypeDef:
295
+ """
296
+ Lists the tags associated with a Lambda MicroVM resource.
297
+
298
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/list_tags.html)
299
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#list_tags)
300
+ """
301
+
302
+ def resume_microvm(self, **kwargs: Unpack[ResumeMicrovmRequestTypeDef]) -> dict[str, Any]:
303
+ """
304
+ Resumes a suspended MicroVM, restoring it to RUNNING state with all state
305
+ intact.
306
+
307
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/resume_microvm.html)
308
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#resume_microvm)
309
+ """
310
+
311
+ def run_microvm(self, **kwargs: Unpack[RunMicrovmRequestTypeDef]) -> RunMicrovmResponseTypeDef:
312
+ """
313
+ Runs a new MicroVM from the specified image.
314
+
315
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/run_microvm.html)
316
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#run_microvm)
317
+ """
318
+
319
+ def suspend_microvm(self, **kwargs: Unpack[SuspendMicrovmRequestTypeDef]) -> dict[str, Any]:
320
+ """
321
+ Suspends a running MicroVM, preserving its full memory and disk state.
322
+
323
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/suspend_microvm.html)
324
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#suspend_microvm)
325
+ """
326
+
327
+ def tag_resource(
328
+ self, **kwargs: Unpack[TagResourceRequestTypeDef]
329
+ ) -> EmptyResponseMetadataTypeDef:
330
+ """
331
+ Adds tags to a Lambda MicroVM resource.
332
+
333
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/tag_resource.html)
334
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#tag_resource)
335
+ """
336
+
337
+ def terminate_microvm(self, **kwargs: Unpack[TerminateMicrovmRequestTypeDef]) -> dict[str, Any]:
338
+ """
339
+ Terminates a MicroVM.
340
+
341
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/terminate_microvm.html)
342
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#terminate_microvm)
343
+ """
344
+
345
+ def untag_resource(
346
+ self, **kwargs: Unpack[UntagResourceRequestTypeDef]
347
+ ) -> EmptyResponseMetadataTypeDef:
348
+ """
349
+ Removes tags from a Lambda MicroVM resource.
350
+
351
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/untag_resource.html)
352
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#untag_resource)
353
+ """
354
+
355
+ def update_microvm_image(
356
+ self, **kwargs: Unpack[UpdateMicrovmImageRequestTypeDef]
357
+ ) -> UpdateMicrovmImageResponseTypeDef:
358
+ """
359
+ Updates the configuration of a MicroVM image and triggers a new version build.
360
+
361
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/update_microvm_image.html)
362
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#update_microvm_image)
363
+ """
364
+
365
+ def update_microvm_image_version(
366
+ self, **kwargs: Unpack[UpdateMicrovmImageVersionRequestTypeDef]
367
+ ) -> UpdateMicrovmImageVersionResponseTypeDef:
368
+ """
369
+ Updates the status of a specific MicroVM image version.
370
+
371
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/update_microvm_image_version.html)
372
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#update_microvm_image_version)
373
+ """
374
+
375
+ @overload # type: ignore[override]
376
+ def get_paginator( # type: ignore[override]
377
+ self, operation_name: Literal["list_managed_microvm_image_versions"]
378
+ ) -> ListManagedMicrovmImageVersionsPaginator:
379
+ """
380
+ Create a paginator for an operation.
381
+
382
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/get_paginator.html)
383
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#get_paginator)
384
+ """
385
+
386
+ @overload # type: ignore[override]
387
+ def get_paginator( # type: ignore[override]
388
+ self, operation_name: Literal["list_managed_microvm_images"]
389
+ ) -> ListManagedMicrovmImagesPaginator:
390
+ """
391
+ Create a paginator for an operation.
392
+
393
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/get_paginator.html)
394
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#get_paginator)
395
+ """
396
+
397
+ @overload # type: ignore[override]
398
+ def get_paginator( # type: ignore[override]
399
+ self, operation_name: Literal["list_microvm_image_builds"]
400
+ ) -> ListMicrovmImageBuildsPaginator:
401
+ """
402
+ Create a paginator for an operation.
403
+
404
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/get_paginator.html)
405
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#get_paginator)
406
+ """
407
+
408
+ @overload # type: ignore[override]
409
+ def get_paginator( # type: ignore[override]
410
+ self, operation_name: Literal["list_microvm_image_versions"]
411
+ ) -> ListMicrovmImageVersionsPaginator:
412
+ """
413
+ Create a paginator for an operation.
414
+
415
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/get_paginator.html)
416
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#get_paginator)
417
+ """
418
+
419
+ @overload # type: ignore[override]
420
+ def get_paginator( # type: ignore[override]
421
+ self, operation_name: Literal["list_microvm_images"]
422
+ ) -> ListMicrovmImagesPaginator:
423
+ """
424
+ Create a paginator for an operation.
425
+
426
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/get_paginator.html)
427
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#get_paginator)
428
+ """
429
+
430
+ @overload # type: ignore[override]
431
+ def get_paginator( # type: ignore[override]
432
+ self, operation_name: Literal["list_microvms"]
433
+ ) -> ListMicrovmsPaginator:
434
+ """
435
+ Create a paginator for an operation.
436
+
437
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-microvms/client/get_paginator.html)
438
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda_microvms/client/#get_paginator)
439
+ """