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