types-boto3-lambda 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.

Potentially problematic release.


This version of types-boto3-lambda might be problematic. Click here for more details.

@@ -0,0 +1,694 @@
1
+ """
2
+ Type annotations for lambda service literal definitions.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/literals/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from types_boto3_lambda.literals import ApplicationLogLevelType
10
+
11
+ data: ApplicationLogLevelType = "DEBUG"
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
+ "ApplicationLogLevelType",
26
+ "ArchitectureType",
27
+ "CodeSigningPolicyType",
28
+ "EndPointTypeType",
29
+ "EventSourceMappingMetricType",
30
+ "EventSourcePositionType",
31
+ "FullDocumentType",
32
+ "FunctionActiveV2WaiterName",
33
+ "FunctionActiveWaiterName",
34
+ "FunctionExistsWaiterName",
35
+ "FunctionResponseTypeType",
36
+ "FunctionUpdatedV2WaiterName",
37
+ "FunctionUpdatedWaiterName",
38
+ "FunctionUrlAuthTypeType",
39
+ "FunctionVersionType",
40
+ "InvocationTypeType",
41
+ "InvokeModeType",
42
+ "LambdaServiceName",
43
+ "LastUpdateStatusReasonCodeType",
44
+ "LastUpdateStatusType",
45
+ "ListAliasesPaginatorName",
46
+ "ListCodeSigningConfigsPaginatorName",
47
+ "ListEventSourceMappingsPaginatorName",
48
+ "ListFunctionEventInvokeConfigsPaginatorName",
49
+ "ListFunctionUrlConfigsPaginatorName",
50
+ "ListFunctionsByCodeSigningConfigPaginatorName",
51
+ "ListFunctionsPaginatorName",
52
+ "ListLayerVersionsPaginatorName",
53
+ "ListLayersPaginatorName",
54
+ "ListProvisionedConcurrencyConfigsPaginatorName",
55
+ "ListVersionsByFunctionPaginatorName",
56
+ "LogFormatType",
57
+ "LogTypeType",
58
+ "PackageTypeType",
59
+ "PaginatorName",
60
+ "ProvisionedConcurrencyStatusEnumType",
61
+ "PublishedVersionActiveWaiterName",
62
+ "RecursiveLoopType",
63
+ "RegionName",
64
+ "ResourceServiceName",
65
+ "ResponseStreamingInvocationTypeType",
66
+ "RuntimeType",
67
+ "ServiceName",
68
+ "SnapStartApplyOnType",
69
+ "SnapStartOptimizationStatusType",
70
+ "SourceAccessTypeType",
71
+ "StateReasonCodeType",
72
+ "StateType",
73
+ "SystemLogLevelType",
74
+ "TracingModeType",
75
+ "UpdateRuntimeOnType",
76
+ "WaiterName",
77
+ )
78
+
79
+ ApplicationLogLevelType = Literal["DEBUG", "ERROR", "FATAL", "INFO", "TRACE", "WARN"]
80
+ ArchitectureType = Literal["arm64", "x86_64"]
81
+ CodeSigningPolicyType = Literal["Enforce", "Warn"]
82
+ EndPointTypeType = Literal["KAFKA_BOOTSTRAP_SERVERS"]
83
+ EventSourceMappingMetricType = Literal["EventCount"]
84
+ EventSourcePositionType = Literal["AT_TIMESTAMP", "LATEST", "TRIM_HORIZON"]
85
+ FullDocumentType = Literal["Default", "UpdateLookup"]
86
+ FunctionActiveV2WaiterName = Literal["function_active_v2"]
87
+ FunctionActiveWaiterName = Literal["function_active"]
88
+ FunctionExistsWaiterName = Literal["function_exists"]
89
+ FunctionResponseTypeType = Literal["ReportBatchItemFailures"]
90
+ FunctionUpdatedV2WaiterName = Literal["function_updated_v2"]
91
+ FunctionUpdatedWaiterName = Literal["function_updated"]
92
+ FunctionUrlAuthTypeType = Literal["AWS_IAM", "NONE"]
93
+ FunctionVersionType = Literal["ALL"]
94
+ InvocationTypeType = Literal["DryRun", "Event", "RequestResponse"]
95
+ InvokeModeType = Literal["BUFFERED", "RESPONSE_STREAM"]
96
+ LastUpdateStatusReasonCodeType = Literal[
97
+ "DisabledKMSKey",
98
+ "EFSIOError",
99
+ "EFSMountConnectivityError",
100
+ "EFSMountFailure",
101
+ "EFSMountTimeout",
102
+ "EniLimitExceeded",
103
+ "FunctionError",
104
+ "ImageAccessDenied",
105
+ "ImageDeleted",
106
+ "InsufficientRolePermissions",
107
+ "InternalError",
108
+ "InvalidConfiguration",
109
+ "InvalidImage",
110
+ "InvalidRuntime",
111
+ "InvalidSecurityGroup",
112
+ "InvalidStateKMSKey",
113
+ "InvalidSubnet",
114
+ "InvalidZipFileException",
115
+ "KMSKeyAccessDenied",
116
+ "KMSKeyNotFound",
117
+ "SubnetOutOfIPAddresses",
118
+ ]
119
+ LastUpdateStatusType = Literal["Failed", "InProgress", "Successful"]
120
+ ListAliasesPaginatorName = Literal["list_aliases"]
121
+ ListCodeSigningConfigsPaginatorName = Literal["list_code_signing_configs"]
122
+ ListEventSourceMappingsPaginatorName = Literal["list_event_source_mappings"]
123
+ ListFunctionEventInvokeConfigsPaginatorName = Literal["list_function_event_invoke_configs"]
124
+ ListFunctionUrlConfigsPaginatorName = Literal["list_function_url_configs"]
125
+ ListFunctionsByCodeSigningConfigPaginatorName = Literal["list_functions_by_code_signing_config"]
126
+ ListFunctionsPaginatorName = Literal["list_functions"]
127
+ ListLayerVersionsPaginatorName = Literal["list_layer_versions"]
128
+ ListLayersPaginatorName = Literal["list_layers"]
129
+ ListProvisionedConcurrencyConfigsPaginatorName = Literal["list_provisioned_concurrency_configs"]
130
+ ListVersionsByFunctionPaginatorName = Literal["list_versions_by_function"]
131
+ LogFormatType = Literal["JSON", "Text"]
132
+ LogTypeType = Literal["None", "Tail"]
133
+ PackageTypeType = Literal["Image", "Zip"]
134
+ ProvisionedConcurrencyStatusEnumType = Literal["FAILED", "IN_PROGRESS", "READY"]
135
+ PublishedVersionActiveWaiterName = Literal["published_version_active"]
136
+ RecursiveLoopType = Literal["Allow", "Terminate"]
137
+ ResponseStreamingInvocationTypeType = Literal["DryRun", "RequestResponse"]
138
+ RuntimeType = Literal[
139
+ "dotnet6",
140
+ "dotnet8",
141
+ "dotnetcore1.0",
142
+ "dotnetcore2.0",
143
+ "dotnetcore2.1",
144
+ "dotnetcore3.1",
145
+ "go1.x",
146
+ "java11",
147
+ "java17",
148
+ "java21",
149
+ "java8",
150
+ "java8.al2",
151
+ "nodejs",
152
+ "nodejs10.x",
153
+ "nodejs12.x",
154
+ "nodejs14.x",
155
+ "nodejs16.x",
156
+ "nodejs18.x",
157
+ "nodejs20.x",
158
+ "nodejs22.x",
159
+ "nodejs4.3",
160
+ "nodejs4.3-edge",
161
+ "nodejs6.10",
162
+ "nodejs8.10",
163
+ "provided",
164
+ "provided.al2",
165
+ "provided.al2023",
166
+ "python2.7",
167
+ "python3.10",
168
+ "python3.11",
169
+ "python3.12",
170
+ "python3.13",
171
+ "python3.6",
172
+ "python3.7",
173
+ "python3.8",
174
+ "python3.9",
175
+ "ruby2.5",
176
+ "ruby2.7",
177
+ "ruby3.2",
178
+ "ruby3.3",
179
+ ]
180
+ SnapStartApplyOnType = Literal["None", "PublishedVersions"]
181
+ SnapStartOptimizationStatusType = Literal["Off", "On"]
182
+ SourceAccessTypeType = Literal[
183
+ "BASIC_AUTH",
184
+ "CLIENT_CERTIFICATE_TLS_AUTH",
185
+ "SASL_SCRAM_256_AUTH",
186
+ "SASL_SCRAM_512_AUTH",
187
+ "SERVER_ROOT_CA_CERTIFICATE",
188
+ "VIRTUAL_HOST",
189
+ "VPC_SECURITY_GROUP",
190
+ "VPC_SUBNET",
191
+ ]
192
+ StateReasonCodeType = Literal[
193
+ "Creating",
194
+ "DisabledKMSKey",
195
+ "EFSIOError",
196
+ "EFSMountConnectivityError",
197
+ "EFSMountFailure",
198
+ "EFSMountTimeout",
199
+ "EniLimitExceeded",
200
+ "FunctionError",
201
+ "Idle",
202
+ "ImageAccessDenied",
203
+ "ImageDeleted",
204
+ "InsufficientRolePermissions",
205
+ "InternalError",
206
+ "InvalidConfiguration",
207
+ "InvalidImage",
208
+ "InvalidRuntime",
209
+ "InvalidSecurityGroup",
210
+ "InvalidStateKMSKey",
211
+ "InvalidSubnet",
212
+ "InvalidZipFileException",
213
+ "KMSKeyAccessDenied",
214
+ "KMSKeyNotFound",
215
+ "Restoring",
216
+ "SubnetOutOfIPAddresses",
217
+ ]
218
+ StateType = Literal["Active", "Failed", "Inactive", "Pending"]
219
+ SystemLogLevelType = Literal["DEBUG", "INFO", "WARN"]
220
+ TracingModeType = Literal["Active", "PassThrough"]
221
+ UpdateRuntimeOnType = Literal["Auto", "FunctionUpdate", "Manual"]
222
+ LambdaServiceName = Literal["lambda"]
223
+ ServiceName = Literal[
224
+ "accessanalyzer",
225
+ "account",
226
+ "acm",
227
+ "acm-pca",
228
+ "amp",
229
+ "amplify",
230
+ "amplifybackend",
231
+ "amplifyuibuilder",
232
+ "apigateway",
233
+ "apigatewaymanagementapi",
234
+ "apigatewayv2",
235
+ "appconfig",
236
+ "appconfigdata",
237
+ "appfabric",
238
+ "appflow",
239
+ "appintegrations",
240
+ "application-autoscaling",
241
+ "application-insights",
242
+ "application-signals",
243
+ "applicationcostprofiler",
244
+ "appmesh",
245
+ "apprunner",
246
+ "appstream",
247
+ "appsync",
248
+ "apptest",
249
+ "arc-zonal-shift",
250
+ "artifact",
251
+ "athena",
252
+ "auditmanager",
253
+ "autoscaling",
254
+ "autoscaling-plans",
255
+ "b2bi",
256
+ "backup",
257
+ "backup-gateway",
258
+ "backupsearch",
259
+ "batch",
260
+ "bcm-data-exports",
261
+ "bcm-pricing-calculator",
262
+ "bedrock",
263
+ "bedrock-agent",
264
+ "bedrock-agent-runtime",
265
+ "bedrock-data-automation",
266
+ "bedrock-data-automation-runtime",
267
+ "bedrock-runtime",
268
+ "billing",
269
+ "billingconductor",
270
+ "braket",
271
+ "budgets",
272
+ "ce",
273
+ "chatbot",
274
+ "chime",
275
+ "chime-sdk-identity",
276
+ "chime-sdk-media-pipelines",
277
+ "chime-sdk-meetings",
278
+ "chime-sdk-messaging",
279
+ "chime-sdk-voice",
280
+ "cleanrooms",
281
+ "cleanroomsml",
282
+ "cloud9",
283
+ "cloudcontrol",
284
+ "clouddirectory",
285
+ "cloudformation",
286
+ "cloudfront",
287
+ "cloudfront-keyvaluestore",
288
+ "cloudhsm",
289
+ "cloudhsmv2",
290
+ "cloudsearch",
291
+ "cloudsearchdomain",
292
+ "cloudtrail",
293
+ "cloudtrail-data",
294
+ "cloudwatch",
295
+ "codeartifact",
296
+ "codebuild",
297
+ "codecatalyst",
298
+ "codecommit",
299
+ "codeconnections",
300
+ "codedeploy",
301
+ "codeguru-reviewer",
302
+ "codeguru-security",
303
+ "codeguruprofiler",
304
+ "codepipeline",
305
+ "codestar-connections",
306
+ "codestar-notifications",
307
+ "cognito-identity",
308
+ "cognito-idp",
309
+ "cognito-sync",
310
+ "comprehend",
311
+ "comprehendmedical",
312
+ "compute-optimizer",
313
+ "config",
314
+ "connect",
315
+ "connect-contact-lens",
316
+ "connectcampaigns",
317
+ "connectcampaignsv2",
318
+ "connectcases",
319
+ "connectparticipant",
320
+ "controlcatalog",
321
+ "controltower",
322
+ "cost-optimization-hub",
323
+ "cur",
324
+ "customer-profiles",
325
+ "databrew",
326
+ "dataexchange",
327
+ "datapipeline",
328
+ "datasync",
329
+ "datazone",
330
+ "dax",
331
+ "deadline",
332
+ "detective",
333
+ "devicefarm",
334
+ "devops-guru",
335
+ "directconnect",
336
+ "discovery",
337
+ "dlm",
338
+ "dms",
339
+ "docdb",
340
+ "docdb-elastic",
341
+ "drs",
342
+ "ds",
343
+ "ds-data",
344
+ "dsql",
345
+ "dynamodb",
346
+ "dynamodbstreams",
347
+ "ebs",
348
+ "ec2",
349
+ "ec2-instance-connect",
350
+ "ecr",
351
+ "ecr-public",
352
+ "ecs",
353
+ "efs",
354
+ "eks",
355
+ "eks-auth",
356
+ "elastic-inference",
357
+ "elasticache",
358
+ "elasticbeanstalk",
359
+ "elastictranscoder",
360
+ "elb",
361
+ "elbv2",
362
+ "emr",
363
+ "emr-containers",
364
+ "emr-serverless",
365
+ "entityresolution",
366
+ "es",
367
+ "events",
368
+ "evidently",
369
+ "finspace",
370
+ "finspace-data",
371
+ "firehose",
372
+ "fis",
373
+ "fms",
374
+ "forecast",
375
+ "forecastquery",
376
+ "frauddetector",
377
+ "freetier",
378
+ "fsx",
379
+ "gamelift",
380
+ "geo-maps",
381
+ "geo-places",
382
+ "geo-routes",
383
+ "glacier",
384
+ "globalaccelerator",
385
+ "glue",
386
+ "grafana",
387
+ "greengrass",
388
+ "greengrassv2",
389
+ "groundstation",
390
+ "guardduty",
391
+ "health",
392
+ "healthlake",
393
+ "iam",
394
+ "identitystore",
395
+ "imagebuilder",
396
+ "importexport",
397
+ "inspector",
398
+ "inspector-scan",
399
+ "inspector2",
400
+ "internetmonitor",
401
+ "invoicing",
402
+ "iot",
403
+ "iot-data",
404
+ "iot-jobs-data",
405
+ "iotanalytics",
406
+ "iotdeviceadvisor",
407
+ "iotevents",
408
+ "iotevents-data",
409
+ "iotfleethub",
410
+ "iotfleetwise",
411
+ "iotsecuretunneling",
412
+ "iotsitewise",
413
+ "iotthingsgraph",
414
+ "iottwinmaker",
415
+ "iotwireless",
416
+ "ivs",
417
+ "ivs-realtime",
418
+ "ivschat",
419
+ "kafka",
420
+ "kafkaconnect",
421
+ "kendra",
422
+ "kendra-ranking",
423
+ "keyspaces",
424
+ "kinesis",
425
+ "kinesis-video-archived-media",
426
+ "kinesis-video-media",
427
+ "kinesis-video-signaling",
428
+ "kinesis-video-webrtc-storage",
429
+ "kinesisanalytics",
430
+ "kinesisanalyticsv2",
431
+ "kinesisvideo",
432
+ "kms",
433
+ "lakeformation",
434
+ "lambda",
435
+ "launch-wizard",
436
+ "lex-models",
437
+ "lex-runtime",
438
+ "lexv2-models",
439
+ "lexv2-runtime",
440
+ "license-manager",
441
+ "license-manager-linux-subscriptions",
442
+ "license-manager-user-subscriptions",
443
+ "lightsail",
444
+ "location",
445
+ "logs",
446
+ "lookoutequipment",
447
+ "lookoutmetrics",
448
+ "lookoutvision",
449
+ "m2",
450
+ "machinelearning",
451
+ "macie2",
452
+ "mailmanager",
453
+ "managedblockchain",
454
+ "managedblockchain-query",
455
+ "marketplace-agreement",
456
+ "marketplace-catalog",
457
+ "marketplace-deployment",
458
+ "marketplace-entitlement",
459
+ "marketplace-reporting",
460
+ "marketplacecommerceanalytics",
461
+ "mediaconnect",
462
+ "mediaconvert",
463
+ "medialive",
464
+ "mediapackage",
465
+ "mediapackage-vod",
466
+ "mediapackagev2",
467
+ "mediastore",
468
+ "mediastore-data",
469
+ "mediatailor",
470
+ "medical-imaging",
471
+ "memorydb",
472
+ "meteringmarketplace",
473
+ "mgh",
474
+ "mgn",
475
+ "migration-hub-refactor-spaces",
476
+ "migrationhub-config",
477
+ "migrationhuborchestrator",
478
+ "migrationhubstrategy",
479
+ "mq",
480
+ "mturk",
481
+ "mwaa",
482
+ "neptune",
483
+ "neptune-graph",
484
+ "neptunedata",
485
+ "network-firewall",
486
+ "networkflowmonitor",
487
+ "networkmanager",
488
+ "networkmonitor",
489
+ "notifications",
490
+ "notificationscontacts",
491
+ "oam",
492
+ "observabilityadmin",
493
+ "omics",
494
+ "opensearch",
495
+ "opensearchserverless",
496
+ "opsworks",
497
+ "opsworkscm",
498
+ "organizations",
499
+ "osis",
500
+ "outposts",
501
+ "panorama",
502
+ "partnercentral-selling",
503
+ "payment-cryptography",
504
+ "payment-cryptography-data",
505
+ "pca-connector-ad",
506
+ "pca-connector-scep",
507
+ "pcs",
508
+ "personalize",
509
+ "personalize-events",
510
+ "personalize-runtime",
511
+ "pi",
512
+ "pinpoint",
513
+ "pinpoint-email",
514
+ "pinpoint-sms-voice",
515
+ "pinpoint-sms-voice-v2",
516
+ "pipes",
517
+ "polly",
518
+ "pricing",
519
+ "privatenetworks",
520
+ "proton",
521
+ "qapps",
522
+ "qbusiness",
523
+ "qconnect",
524
+ "qldb",
525
+ "qldb-session",
526
+ "quicksight",
527
+ "ram",
528
+ "rbin",
529
+ "rds",
530
+ "rds-data",
531
+ "redshift",
532
+ "redshift-data",
533
+ "redshift-serverless",
534
+ "rekognition",
535
+ "repostspace",
536
+ "resiliencehub",
537
+ "resource-explorer-2",
538
+ "resource-groups",
539
+ "resourcegroupstaggingapi",
540
+ "robomaker",
541
+ "rolesanywhere",
542
+ "route53",
543
+ "route53-recovery-cluster",
544
+ "route53-recovery-control-config",
545
+ "route53-recovery-readiness",
546
+ "route53domains",
547
+ "route53profiles",
548
+ "route53resolver",
549
+ "rum",
550
+ "s3",
551
+ "s3control",
552
+ "s3outposts",
553
+ "s3tables",
554
+ "sagemaker",
555
+ "sagemaker-a2i-runtime",
556
+ "sagemaker-edge",
557
+ "sagemaker-featurestore-runtime",
558
+ "sagemaker-geospatial",
559
+ "sagemaker-metrics",
560
+ "sagemaker-runtime",
561
+ "savingsplans",
562
+ "scheduler",
563
+ "schemas",
564
+ "sdb",
565
+ "secretsmanager",
566
+ "security-ir",
567
+ "securityhub",
568
+ "securitylake",
569
+ "serverlessrepo",
570
+ "service-quotas",
571
+ "servicecatalog",
572
+ "servicecatalog-appregistry",
573
+ "servicediscovery",
574
+ "ses",
575
+ "sesv2",
576
+ "shield",
577
+ "signer",
578
+ "simspaceweaver",
579
+ "sms",
580
+ "sms-voice",
581
+ "snow-device-management",
582
+ "snowball",
583
+ "sns",
584
+ "socialmessaging",
585
+ "sqs",
586
+ "ssm",
587
+ "ssm-contacts",
588
+ "ssm-incidents",
589
+ "ssm-quicksetup",
590
+ "ssm-sap",
591
+ "sso",
592
+ "sso-admin",
593
+ "sso-oidc",
594
+ "stepfunctions",
595
+ "storagegateway",
596
+ "sts",
597
+ "supplychain",
598
+ "support",
599
+ "support-app",
600
+ "swf",
601
+ "synthetics",
602
+ "taxsettings",
603
+ "textract",
604
+ "timestream-influxdb",
605
+ "timestream-query",
606
+ "timestream-write",
607
+ "tnb",
608
+ "transcribe",
609
+ "transfer",
610
+ "translate",
611
+ "trustedadvisor",
612
+ "verifiedpermissions",
613
+ "voice-id",
614
+ "vpc-lattice",
615
+ "waf",
616
+ "waf-regional",
617
+ "wafv2",
618
+ "wellarchitected",
619
+ "wisdom",
620
+ "workdocs",
621
+ "workmail",
622
+ "workmailmessageflow",
623
+ "workspaces",
624
+ "workspaces-thin-client",
625
+ "workspaces-web",
626
+ "xray",
627
+ ]
628
+ ResourceServiceName = Literal[
629
+ "cloudformation",
630
+ "cloudwatch",
631
+ "dynamodb",
632
+ "ec2",
633
+ "glacier",
634
+ "iam",
635
+ "opsworks",
636
+ "s3",
637
+ "sns",
638
+ "sqs",
639
+ ]
640
+ PaginatorName = Literal[
641
+ "list_aliases",
642
+ "list_code_signing_configs",
643
+ "list_event_source_mappings",
644
+ "list_function_event_invoke_configs",
645
+ "list_function_url_configs",
646
+ "list_functions",
647
+ "list_functions_by_code_signing_config",
648
+ "list_layer_versions",
649
+ "list_layers",
650
+ "list_provisioned_concurrency_configs",
651
+ "list_versions_by_function",
652
+ ]
653
+ WaiterName = Literal[
654
+ "function_active",
655
+ "function_active_v2",
656
+ "function_exists",
657
+ "function_updated",
658
+ "function_updated_v2",
659
+ "published_version_active",
660
+ ]
661
+ RegionName = Literal[
662
+ "af-south-1",
663
+ "ap-east-1",
664
+ "ap-northeast-1",
665
+ "ap-northeast-2",
666
+ "ap-northeast-3",
667
+ "ap-south-1",
668
+ "ap-south-2",
669
+ "ap-southeast-1",
670
+ "ap-southeast-2",
671
+ "ap-southeast-3",
672
+ "ap-southeast-4",
673
+ "ap-southeast-5",
674
+ "ap-southeast-7",
675
+ "ca-central-1",
676
+ "ca-west-1",
677
+ "eu-central-1",
678
+ "eu-central-2",
679
+ "eu-north-1",
680
+ "eu-south-1",
681
+ "eu-south-2",
682
+ "eu-west-1",
683
+ "eu-west-2",
684
+ "eu-west-3",
685
+ "il-central-1",
686
+ "me-central-1",
687
+ "me-south-1",
688
+ "mx-central-1",
689
+ "sa-east-1",
690
+ "us-east-1",
691
+ "us-east-2",
692
+ "us-west-1",
693
+ "us-west-2",
694
+ ]