types-boto3-bedrock-runtime 1.36.0__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,554 @@
1
+ """
2
+ Type annotations for bedrock-runtime service literal definitions.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_runtime/literals/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from types_boto3_bedrock_runtime.literals import AsyncInvokeStatusType
10
+
11
+ data: AsyncInvokeStatusType = "Completed"
12
+ ```
13
+
14
+ Copyright 2025 Vlad Emelianov
15
+ """
16
+
17
+ import sys
18
+
19
+ if sys.version_info >= (3, 12):
20
+ from typing import Literal
21
+ else:
22
+ from typing_extensions import Literal
23
+
24
+ __all__ = (
25
+ "AsyncInvokeStatusType",
26
+ "BedrockRuntimeServiceName",
27
+ "ConversationRoleType",
28
+ "DocumentFormatType",
29
+ "GuardrailActionType",
30
+ "GuardrailContentFilterConfidenceType",
31
+ "GuardrailContentFilterStrengthType",
32
+ "GuardrailContentFilterTypeType",
33
+ "GuardrailContentPolicyActionType",
34
+ "GuardrailContentQualifierType",
35
+ "GuardrailContentSourceType",
36
+ "GuardrailContextualGroundingFilterTypeType",
37
+ "GuardrailContextualGroundingPolicyActionType",
38
+ "GuardrailConverseContentQualifierType",
39
+ "GuardrailConverseImageFormatType",
40
+ "GuardrailImageFormatType",
41
+ "GuardrailManagedWordTypeType",
42
+ "GuardrailPiiEntityTypeType",
43
+ "GuardrailSensitiveInformationPolicyActionType",
44
+ "GuardrailStreamProcessingModeType",
45
+ "GuardrailTopicPolicyActionType",
46
+ "GuardrailTopicTypeType",
47
+ "GuardrailTraceType",
48
+ "GuardrailWordPolicyActionType",
49
+ "ImageFormatType",
50
+ "ListAsyncInvokesPaginatorName",
51
+ "PaginatorName",
52
+ "PerformanceConfigLatencyType",
53
+ "ResourceServiceName",
54
+ "ServiceName",
55
+ "SortAsyncInvocationByType",
56
+ "SortOrderType",
57
+ "StopReasonType",
58
+ "ToolResultStatusType",
59
+ "TraceType",
60
+ "VideoFormatType",
61
+ )
62
+
63
+ AsyncInvokeStatusType = Literal["Completed", "Failed", "InProgress"]
64
+ ConversationRoleType = Literal["assistant", "user"]
65
+ DocumentFormatType = Literal["csv", "doc", "docx", "html", "md", "pdf", "txt", "xls", "xlsx"]
66
+ GuardrailActionType = Literal["GUARDRAIL_INTERVENED", "NONE"]
67
+ GuardrailContentFilterConfidenceType = Literal["HIGH", "LOW", "MEDIUM", "NONE"]
68
+ GuardrailContentFilterStrengthType = Literal["HIGH", "LOW", "MEDIUM", "NONE"]
69
+ GuardrailContentFilterTypeType = Literal[
70
+ "HATE", "INSULTS", "MISCONDUCT", "PROMPT_ATTACK", "SEXUAL", "VIOLENCE"
71
+ ]
72
+ GuardrailContentPolicyActionType = Literal["BLOCKED"]
73
+ GuardrailContentQualifierType = Literal["grounding_source", "guard_content", "query"]
74
+ GuardrailContentSourceType = Literal["INPUT", "OUTPUT"]
75
+ GuardrailContextualGroundingFilterTypeType = Literal["GROUNDING", "RELEVANCE"]
76
+ GuardrailContextualGroundingPolicyActionType = Literal["BLOCKED", "NONE"]
77
+ GuardrailConverseContentQualifierType = Literal["grounding_source", "guard_content", "query"]
78
+ GuardrailConverseImageFormatType = Literal["jpeg", "png"]
79
+ GuardrailImageFormatType = Literal["jpeg", "png"]
80
+ GuardrailManagedWordTypeType = Literal["PROFANITY"]
81
+ GuardrailPiiEntityTypeType = Literal[
82
+ "ADDRESS",
83
+ "AGE",
84
+ "AWS_ACCESS_KEY",
85
+ "AWS_SECRET_KEY",
86
+ "CA_HEALTH_NUMBER",
87
+ "CA_SOCIAL_INSURANCE_NUMBER",
88
+ "CREDIT_DEBIT_CARD_CVV",
89
+ "CREDIT_DEBIT_CARD_EXPIRY",
90
+ "CREDIT_DEBIT_CARD_NUMBER",
91
+ "DRIVER_ID",
92
+ "EMAIL",
93
+ "INTERNATIONAL_BANK_ACCOUNT_NUMBER",
94
+ "IP_ADDRESS",
95
+ "LICENSE_PLATE",
96
+ "MAC_ADDRESS",
97
+ "NAME",
98
+ "PASSWORD",
99
+ "PHONE",
100
+ "PIN",
101
+ "SWIFT_CODE",
102
+ "UK_NATIONAL_HEALTH_SERVICE_NUMBER",
103
+ "UK_NATIONAL_INSURANCE_NUMBER",
104
+ "UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER",
105
+ "URL",
106
+ "USERNAME",
107
+ "US_BANK_ACCOUNT_NUMBER",
108
+ "US_BANK_ROUTING_NUMBER",
109
+ "US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER",
110
+ "US_PASSPORT_NUMBER",
111
+ "US_SOCIAL_SECURITY_NUMBER",
112
+ "VEHICLE_IDENTIFICATION_NUMBER",
113
+ ]
114
+ GuardrailSensitiveInformationPolicyActionType = Literal["ANONYMIZED", "BLOCKED"]
115
+ GuardrailStreamProcessingModeType = Literal["async", "sync"]
116
+ GuardrailTopicPolicyActionType = Literal["BLOCKED"]
117
+ GuardrailTopicTypeType = Literal["DENY"]
118
+ GuardrailTraceType = Literal["disabled", "enabled"]
119
+ GuardrailWordPolicyActionType = Literal["BLOCKED"]
120
+ ImageFormatType = Literal["gif", "jpeg", "png", "webp"]
121
+ ListAsyncInvokesPaginatorName = Literal["list_async_invokes"]
122
+ PerformanceConfigLatencyType = Literal["optimized", "standard"]
123
+ SortAsyncInvocationByType = Literal["SubmissionTime"]
124
+ SortOrderType = Literal["Ascending", "Descending"]
125
+ StopReasonType = Literal[
126
+ "content_filtered",
127
+ "end_turn",
128
+ "guardrail_intervened",
129
+ "max_tokens",
130
+ "stop_sequence",
131
+ "tool_use",
132
+ ]
133
+ ToolResultStatusType = Literal["error", "success"]
134
+ TraceType = Literal["DISABLED", "ENABLED"]
135
+ VideoFormatType = Literal["flv", "mkv", "mov", "mp4", "mpeg", "mpg", "three_gp", "webm", "wmv"]
136
+ BedrockRuntimeServiceName = Literal["bedrock-runtime"]
137
+ ServiceName = Literal[
138
+ "accessanalyzer",
139
+ "account",
140
+ "acm",
141
+ "acm-pca",
142
+ "amp",
143
+ "amplify",
144
+ "amplifybackend",
145
+ "amplifyuibuilder",
146
+ "apigateway",
147
+ "apigatewaymanagementapi",
148
+ "apigatewayv2",
149
+ "appconfig",
150
+ "appconfigdata",
151
+ "appfabric",
152
+ "appflow",
153
+ "appintegrations",
154
+ "application-autoscaling",
155
+ "application-insights",
156
+ "application-signals",
157
+ "applicationcostprofiler",
158
+ "appmesh",
159
+ "apprunner",
160
+ "appstream",
161
+ "appsync",
162
+ "apptest",
163
+ "arc-zonal-shift",
164
+ "artifact",
165
+ "athena",
166
+ "auditmanager",
167
+ "autoscaling",
168
+ "autoscaling-plans",
169
+ "b2bi",
170
+ "backup",
171
+ "backup-gateway",
172
+ "backupsearch",
173
+ "batch",
174
+ "bcm-data-exports",
175
+ "bcm-pricing-calculator",
176
+ "bedrock",
177
+ "bedrock-agent",
178
+ "bedrock-agent-runtime",
179
+ "bedrock-data-automation",
180
+ "bedrock-data-automation-runtime",
181
+ "bedrock-runtime",
182
+ "billing",
183
+ "billingconductor",
184
+ "braket",
185
+ "budgets",
186
+ "ce",
187
+ "chatbot",
188
+ "chime",
189
+ "chime-sdk-identity",
190
+ "chime-sdk-media-pipelines",
191
+ "chime-sdk-meetings",
192
+ "chime-sdk-messaging",
193
+ "chime-sdk-voice",
194
+ "cleanrooms",
195
+ "cleanroomsml",
196
+ "cloud9",
197
+ "cloudcontrol",
198
+ "clouddirectory",
199
+ "cloudformation",
200
+ "cloudfront",
201
+ "cloudfront-keyvaluestore",
202
+ "cloudhsm",
203
+ "cloudhsmv2",
204
+ "cloudsearch",
205
+ "cloudsearchdomain",
206
+ "cloudtrail",
207
+ "cloudtrail-data",
208
+ "cloudwatch",
209
+ "codeartifact",
210
+ "codebuild",
211
+ "codecatalyst",
212
+ "codecommit",
213
+ "codeconnections",
214
+ "codedeploy",
215
+ "codeguru-reviewer",
216
+ "codeguru-security",
217
+ "codeguruprofiler",
218
+ "codepipeline",
219
+ "codestar-connections",
220
+ "codestar-notifications",
221
+ "cognito-identity",
222
+ "cognito-idp",
223
+ "cognito-sync",
224
+ "comprehend",
225
+ "comprehendmedical",
226
+ "compute-optimizer",
227
+ "config",
228
+ "connect",
229
+ "connect-contact-lens",
230
+ "connectcampaigns",
231
+ "connectcampaignsv2",
232
+ "connectcases",
233
+ "connectparticipant",
234
+ "controlcatalog",
235
+ "controltower",
236
+ "cost-optimization-hub",
237
+ "cur",
238
+ "customer-profiles",
239
+ "databrew",
240
+ "dataexchange",
241
+ "datapipeline",
242
+ "datasync",
243
+ "datazone",
244
+ "dax",
245
+ "deadline",
246
+ "detective",
247
+ "devicefarm",
248
+ "devops-guru",
249
+ "directconnect",
250
+ "discovery",
251
+ "dlm",
252
+ "dms",
253
+ "docdb",
254
+ "docdb-elastic",
255
+ "drs",
256
+ "ds",
257
+ "ds-data",
258
+ "dsql",
259
+ "dynamodb",
260
+ "dynamodbstreams",
261
+ "ebs",
262
+ "ec2",
263
+ "ec2-instance-connect",
264
+ "ecr",
265
+ "ecr-public",
266
+ "ecs",
267
+ "efs",
268
+ "eks",
269
+ "eks-auth",
270
+ "elastic-inference",
271
+ "elasticache",
272
+ "elasticbeanstalk",
273
+ "elastictranscoder",
274
+ "elb",
275
+ "elbv2",
276
+ "emr",
277
+ "emr-containers",
278
+ "emr-serverless",
279
+ "entityresolution",
280
+ "es",
281
+ "events",
282
+ "evidently",
283
+ "finspace",
284
+ "finspace-data",
285
+ "firehose",
286
+ "fis",
287
+ "fms",
288
+ "forecast",
289
+ "forecastquery",
290
+ "frauddetector",
291
+ "freetier",
292
+ "fsx",
293
+ "gamelift",
294
+ "geo-maps",
295
+ "geo-places",
296
+ "geo-routes",
297
+ "glacier",
298
+ "globalaccelerator",
299
+ "glue",
300
+ "grafana",
301
+ "greengrass",
302
+ "greengrassv2",
303
+ "groundstation",
304
+ "guardduty",
305
+ "health",
306
+ "healthlake",
307
+ "iam",
308
+ "identitystore",
309
+ "imagebuilder",
310
+ "importexport",
311
+ "inspector",
312
+ "inspector-scan",
313
+ "inspector2",
314
+ "internetmonitor",
315
+ "invoicing",
316
+ "iot",
317
+ "iot-data",
318
+ "iot-jobs-data",
319
+ "iotanalytics",
320
+ "iotdeviceadvisor",
321
+ "iotevents",
322
+ "iotevents-data",
323
+ "iotfleethub",
324
+ "iotfleetwise",
325
+ "iotsecuretunneling",
326
+ "iotsitewise",
327
+ "iotthingsgraph",
328
+ "iottwinmaker",
329
+ "iotwireless",
330
+ "ivs",
331
+ "ivs-realtime",
332
+ "ivschat",
333
+ "kafka",
334
+ "kafkaconnect",
335
+ "kendra",
336
+ "kendra-ranking",
337
+ "keyspaces",
338
+ "kinesis",
339
+ "kinesis-video-archived-media",
340
+ "kinesis-video-media",
341
+ "kinesis-video-signaling",
342
+ "kinesis-video-webrtc-storage",
343
+ "kinesisanalytics",
344
+ "kinesisanalyticsv2",
345
+ "kinesisvideo",
346
+ "kms",
347
+ "lakeformation",
348
+ "lambda",
349
+ "launch-wizard",
350
+ "lex-models",
351
+ "lex-runtime",
352
+ "lexv2-models",
353
+ "lexv2-runtime",
354
+ "license-manager",
355
+ "license-manager-linux-subscriptions",
356
+ "license-manager-user-subscriptions",
357
+ "lightsail",
358
+ "location",
359
+ "logs",
360
+ "lookoutequipment",
361
+ "lookoutmetrics",
362
+ "lookoutvision",
363
+ "m2",
364
+ "machinelearning",
365
+ "macie2",
366
+ "mailmanager",
367
+ "managedblockchain",
368
+ "managedblockchain-query",
369
+ "marketplace-agreement",
370
+ "marketplace-catalog",
371
+ "marketplace-deployment",
372
+ "marketplace-entitlement",
373
+ "marketplace-reporting",
374
+ "marketplacecommerceanalytics",
375
+ "mediaconnect",
376
+ "mediaconvert",
377
+ "medialive",
378
+ "mediapackage",
379
+ "mediapackage-vod",
380
+ "mediapackagev2",
381
+ "mediastore",
382
+ "mediastore-data",
383
+ "mediatailor",
384
+ "medical-imaging",
385
+ "memorydb",
386
+ "meteringmarketplace",
387
+ "mgh",
388
+ "mgn",
389
+ "migration-hub-refactor-spaces",
390
+ "migrationhub-config",
391
+ "migrationhuborchestrator",
392
+ "migrationhubstrategy",
393
+ "mq",
394
+ "mturk",
395
+ "mwaa",
396
+ "neptune",
397
+ "neptune-graph",
398
+ "neptunedata",
399
+ "network-firewall",
400
+ "networkflowmonitor",
401
+ "networkmanager",
402
+ "networkmonitor",
403
+ "notifications",
404
+ "notificationscontacts",
405
+ "oam",
406
+ "observabilityadmin",
407
+ "omics",
408
+ "opensearch",
409
+ "opensearchserverless",
410
+ "opsworks",
411
+ "opsworkscm",
412
+ "organizations",
413
+ "osis",
414
+ "outposts",
415
+ "panorama",
416
+ "partnercentral-selling",
417
+ "payment-cryptography",
418
+ "payment-cryptography-data",
419
+ "pca-connector-ad",
420
+ "pca-connector-scep",
421
+ "pcs",
422
+ "personalize",
423
+ "personalize-events",
424
+ "personalize-runtime",
425
+ "pi",
426
+ "pinpoint",
427
+ "pinpoint-email",
428
+ "pinpoint-sms-voice",
429
+ "pinpoint-sms-voice-v2",
430
+ "pipes",
431
+ "polly",
432
+ "pricing",
433
+ "privatenetworks",
434
+ "proton",
435
+ "qapps",
436
+ "qbusiness",
437
+ "qconnect",
438
+ "qldb",
439
+ "qldb-session",
440
+ "quicksight",
441
+ "ram",
442
+ "rbin",
443
+ "rds",
444
+ "rds-data",
445
+ "redshift",
446
+ "redshift-data",
447
+ "redshift-serverless",
448
+ "rekognition",
449
+ "repostspace",
450
+ "resiliencehub",
451
+ "resource-explorer-2",
452
+ "resource-groups",
453
+ "resourcegroupstaggingapi",
454
+ "robomaker",
455
+ "rolesanywhere",
456
+ "route53",
457
+ "route53-recovery-cluster",
458
+ "route53-recovery-control-config",
459
+ "route53-recovery-readiness",
460
+ "route53domains",
461
+ "route53profiles",
462
+ "route53resolver",
463
+ "rum",
464
+ "s3",
465
+ "s3control",
466
+ "s3outposts",
467
+ "s3tables",
468
+ "sagemaker",
469
+ "sagemaker-a2i-runtime",
470
+ "sagemaker-edge",
471
+ "sagemaker-featurestore-runtime",
472
+ "sagemaker-geospatial",
473
+ "sagemaker-metrics",
474
+ "sagemaker-runtime",
475
+ "savingsplans",
476
+ "scheduler",
477
+ "schemas",
478
+ "sdb",
479
+ "secretsmanager",
480
+ "security-ir",
481
+ "securityhub",
482
+ "securitylake",
483
+ "serverlessrepo",
484
+ "service-quotas",
485
+ "servicecatalog",
486
+ "servicecatalog-appregistry",
487
+ "servicediscovery",
488
+ "ses",
489
+ "sesv2",
490
+ "shield",
491
+ "signer",
492
+ "simspaceweaver",
493
+ "sms",
494
+ "sms-voice",
495
+ "snow-device-management",
496
+ "snowball",
497
+ "sns",
498
+ "socialmessaging",
499
+ "sqs",
500
+ "ssm",
501
+ "ssm-contacts",
502
+ "ssm-incidents",
503
+ "ssm-quicksetup",
504
+ "ssm-sap",
505
+ "sso",
506
+ "sso-admin",
507
+ "sso-oidc",
508
+ "stepfunctions",
509
+ "storagegateway",
510
+ "sts",
511
+ "supplychain",
512
+ "support",
513
+ "support-app",
514
+ "swf",
515
+ "synthetics",
516
+ "taxsettings",
517
+ "textract",
518
+ "timestream-influxdb",
519
+ "timestream-query",
520
+ "timestream-write",
521
+ "tnb",
522
+ "transcribe",
523
+ "transfer",
524
+ "translate",
525
+ "trustedadvisor",
526
+ "verifiedpermissions",
527
+ "voice-id",
528
+ "vpc-lattice",
529
+ "waf",
530
+ "waf-regional",
531
+ "wafv2",
532
+ "wellarchitected",
533
+ "wisdom",
534
+ "workdocs",
535
+ "workmail",
536
+ "workmailmessageflow",
537
+ "workspaces",
538
+ "workspaces-thin-client",
539
+ "workspaces-web",
540
+ "xray",
541
+ ]
542
+ ResourceServiceName = Literal[
543
+ "cloudformation",
544
+ "cloudwatch",
545
+ "dynamodb",
546
+ "ec2",
547
+ "glacier",
548
+ "iam",
549
+ "opsworks",
550
+ "s3",
551
+ "sns",
552
+ "sqs",
553
+ ]
554
+ PaginatorName = Literal["list_async_invokes"]
@@ -0,0 +1,61 @@
1
+ """
2
+ Type annotations for bedrock-runtime service client paginators.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_runtime/paginators/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from boto3.session import Session
10
+
11
+ from types_boto3_bedrock_runtime.client import BedrockRuntimeClient
12
+ from types_boto3_bedrock_runtime.paginator import (
13
+ ListAsyncInvokesPaginator,
14
+ )
15
+
16
+ session = Session()
17
+ client: BedrockRuntimeClient = session.client("bedrock-runtime")
18
+
19
+ list_async_invokes_paginator: ListAsyncInvokesPaginator = client.get_paginator("list_async_invokes")
20
+ ```
21
+
22
+ Copyright 2025 Vlad Emelianov
23
+ """
24
+
25
+ from __future__ import annotations
26
+
27
+ import sys
28
+ from typing import TYPE_CHECKING
29
+
30
+ from botocore.paginate import PageIterator, Paginator
31
+
32
+ from .type_defs import ListAsyncInvokesRequestPaginateTypeDef, ListAsyncInvokesResponseTypeDef
33
+
34
+ if sys.version_info >= (3, 12):
35
+ from typing import Unpack
36
+ else:
37
+ from typing_extensions import Unpack
38
+
39
+
40
+ __all__ = ("ListAsyncInvokesPaginator",)
41
+
42
+
43
+ if TYPE_CHECKING:
44
+ _ListAsyncInvokesPaginatorBase = Paginator[ListAsyncInvokesResponseTypeDef]
45
+ else:
46
+ _ListAsyncInvokesPaginatorBase = Paginator # type: ignore[assignment]
47
+
48
+
49
+ class ListAsyncInvokesPaginator(_ListAsyncInvokesPaginatorBase):
50
+ """
51
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-runtime/paginator/ListAsyncInvokes.html#BedrockRuntime.Paginator.ListAsyncInvokes)
52
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_runtime/paginators/#listasyncinvokespaginator)
53
+ """
54
+
55
+ def paginate( # type: ignore[override]
56
+ self, **kwargs: Unpack[ListAsyncInvokesRequestPaginateTypeDef]
57
+ ) -> PageIterator[ListAsyncInvokesResponseTypeDef]:
58
+ """
59
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-runtime/paginator/ListAsyncInvokes.html#BedrockRuntime.Paginator.ListAsyncInvokes.paginate)
60
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_runtime/paginators/#listasyncinvokespaginator)
61
+ """
@@ -0,0 +1,57 @@
1
+ """
2
+ Type annotations for bedrock-runtime service client paginators.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_runtime/paginators/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from boto3.session import Session
10
+
11
+ from types_boto3_bedrock_runtime.client import BedrockRuntimeClient
12
+ from types_boto3_bedrock_runtime.paginator import (
13
+ ListAsyncInvokesPaginator,
14
+ )
15
+
16
+ session = Session()
17
+ client: BedrockRuntimeClient = session.client("bedrock-runtime")
18
+
19
+ list_async_invokes_paginator: ListAsyncInvokesPaginator = client.get_paginator("list_async_invokes")
20
+ ```
21
+
22
+ Copyright 2025 Vlad Emelianov
23
+ """
24
+
25
+ from __future__ import annotations
26
+
27
+ import sys
28
+ from typing import TYPE_CHECKING
29
+
30
+ from botocore.paginate import PageIterator, Paginator
31
+
32
+ from .type_defs import ListAsyncInvokesRequestPaginateTypeDef, ListAsyncInvokesResponseTypeDef
33
+
34
+ if sys.version_info >= (3, 12):
35
+ from typing import Unpack
36
+ else:
37
+ from typing_extensions import Unpack
38
+
39
+ __all__ = ("ListAsyncInvokesPaginator",)
40
+
41
+ if TYPE_CHECKING:
42
+ _ListAsyncInvokesPaginatorBase = Paginator[ListAsyncInvokesResponseTypeDef]
43
+ else:
44
+ _ListAsyncInvokesPaginatorBase = Paginator # type: ignore[assignment]
45
+
46
+ class ListAsyncInvokesPaginator(_ListAsyncInvokesPaginatorBase):
47
+ """
48
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-runtime/paginator/ListAsyncInvokes.html#BedrockRuntime.Paginator.ListAsyncInvokes)
49
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_runtime/paginators/#listasyncinvokespaginator)
50
+ """
51
+ def paginate( # type: ignore[override]
52
+ self, **kwargs: Unpack[ListAsyncInvokesRequestPaginateTypeDef]
53
+ ) -> PageIterator[ListAsyncInvokesResponseTypeDef]:
54
+ """
55
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-runtime/paginator/ListAsyncInvokes.html#BedrockRuntime.Paginator.ListAsyncInvokes.paginate)
56
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_runtime/paginators/#listasyncinvokespaginator)
57
+ """
File without changes