types-boto3-lambda 1.35.71__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,686 @@
1
+ """
2
+ Type annotations for lambda service literal definitions.
3
+
4
+ [Open 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 2024 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
+ "batch",
259
+ "bcm-data-exports",
260
+ "bcm-pricing-calculator",
261
+ "bedrock",
262
+ "bedrock-agent",
263
+ "bedrock-agent-runtime",
264
+ "bedrock-runtime",
265
+ "billing",
266
+ "billingconductor",
267
+ "braket",
268
+ "budgets",
269
+ "ce",
270
+ "chatbot",
271
+ "chime",
272
+ "chime-sdk-identity",
273
+ "chime-sdk-media-pipelines",
274
+ "chime-sdk-meetings",
275
+ "chime-sdk-messaging",
276
+ "chime-sdk-voice",
277
+ "cleanrooms",
278
+ "cleanroomsml",
279
+ "cloud9",
280
+ "cloudcontrol",
281
+ "clouddirectory",
282
+ "cloudformation",
283
+ "cloudfront",
284
+ "cloudfront-keyvaluestore",
285
+ "cloudhsm",
286
+ "cloudhsmv2",
287
+ "cloudsearch",
288
+ "cloudsearchdomain",
289
+ "cloudtrail",
290
+ "cloudtrail-data",
291
+ "cloudwatch",
292
+ "codeartifact",
293
+ "codebuild",
294
+ "codecatalyst",
295
+ "codecommit",
296
+ "codeconnections",
297
+ "codedeploy",
298
+ "codeguru-reviewer",
299
+ "codeguru-security",
300
+ "codeguruprofiler",
301
+ "codepipeline",
302
+ "codestar-connections",
303
+ "codestar-notifications",
304
+ "cognito-identity",
305
+ "cognito-idp",
306
+ "cognito-sync",
307
+ "comprehend",
308
+ "comprehendmedical",
309
+ "compute-optimizer",
310
+ "config",
311
+ "connect",
312
+ "connect-contact-lens",
313
+ "connectcampaigns",
314
+ "connectcampaignsv2",
315
+ "connectcases",
316
+ "connectparticipant",
317
+ "controlcatalog",
318
+ "controltower",
319
+ "cost-optimization-hub",
320
+ "cur",
321
+ "customer-profiles",
322
+ "databrew",
323
+ "dataexchange",
324
+ "datapipeline",
325
+ "datasync",
326
+ "datazone",
327
+ "dax",
328
+ "deadline",
329
+ "detective",
330
+ "devicefarm",
331
+ "devops-guru",
332
+ "directconnect",
333
+ "discovery",
334
+ "dlm",
335
+ "dms",
336
+ "docdb",
337
+ "docdb-elastic",
338
+ "drs",
339
+ "ds",
340
+ "ds-data",
341
+ "dynamodb",
342
+ "dynamodbstreams",
343
+ "ebs",
344
+ "ec2",
345
+ "ec2-instance-connect",
346
+ "ecr",
347
+ "ecr-public",
348
+ "ecs",
349
+ "efs",
350
+ "eks",
351
+ "eks-auth",
352
+ "elastic-inference",
353
+ "elasticache",
354
+ "elasticbeanstalk",
355
+ "elastictranscoder",
356
+ "elb",
357
+ "elbv2",
358
+ "emr",
359
+ "emr-containers",
360
+ "emr-serverless",
361
+ "entityresolution",
362
+ "es",
363
+ "events",
364
+ "evidently",
365
+ "finspace",
366
+ "finspace-data",
367
+ "firehose",
368
+ "fis",
369
+ "fms",
370
+ "forecast",
371
+ "forecastquery",
372
+ "frauddetector",
373
+ "freetier",
374
+ "fsx",
375
+ "gamelift",
376
+ "geo-maps",
377
+ "geo-places",
378
+ "geo-routes",
379
+ "glacier",
380
+ "globalaccelerator",
381
+ "glue",
382
+ "grafana",
383
+ "greengrass",
384
+ "greengrassv2",
385
+ "groundstation",
386
+ "guardduty",
387
+ "health",
388
+ "healthlake",
389
+ "iam",
390
+ "identitystore",
391
+ "imagebuilder",
392
+ "importexport",
393
+ "inspector",
394
+ "inspector-scan",
395
+ "inspector2",
396
+ "internetmonitor",
397
+ "iot",
398
+ "iot-data",
399
+ "iot-jobs-data",
400
+ "iot1click-devices",
401
+ "iot1click-projects",
402
+ "iotanalytics",
403
+ "iotdeviceadvisor",
404
+ "iotevents",
405
+ "iotevents-data",
406
+ "iotfleethub",
407
+ "iotfleetwise",
408
+ "iotsecuretunneling",
409
+ "iotsitewise",
410
+ "iotthingsgraph",
411
+ "iottwinmaker",
412
+ "iotwireless",
413
+ "ivs",
414
+ "ivs-realtime",
415
+ "ivschat",
416
+ "kafka",
417
+ "kafkaconnect",
418
+ "kendra",
419
+ "kendra-ranking",
420
+ "keyspaces",
421
+ "kinesis",
422
+ "kinesis-video-archived-media",
423
+ "kinesis-video-media",
424
+ "kinesis-video-signaling",
425
+ "kinesis-video-webrtc-storage",
426
+ "kinesisanalytics",
427
+ "kinesisanalyticsv2",
428
+ "kinesisvideo",
429
+ "kms",
430
+ "lakeformation",
431
+ "lambda",
432
+ "launch-wizard",
433
+ "lex-models",
434
+ "lex-runtime",
435
+ "lexv2-models",
436
+ "lexv2-runtime",
437
+ "license-manager",
438
+ "license-manager-linux-subscriptions",
439
+ "license-manager-user-subscriptions",
440
+ "lightsail",
441
+ "location",
442
+ "logs",
443
+ "lookoutequipment",
444
+ "lookoutmetrics",
445
+ "lookoutvision",
446
+ "m2",
447
+ "machinelearning",
448
+ "macie2",
449
+ "mailmanager",
450
+ "managedblockchain",
451
+ "managedblockchain-query",
452
+ "marketplace-agreement",
453
+ "marketplace-catalog",
454
+ "marketplace-deployment",
455
+ "marketplace-entitlement",
456
+ "marketplace-reporting",
457
+ "marketplacecommerceanalytics",
458
+ "mediaconnect",
459
+ "mediaconvert",
460
+ "medialive",
461
+ "mediapackage",
462
+ "mediapackage-vod",
463
+ "mediapackagev2",
464
+ "mediastore",
465
+ "mediastore-data",
466
+ "mediatailor",
467
+ "medical-imaging",
468
+ "memorydb",
469
+ "meteringmarketplace",
470
+ "mgh",
471
+ "mgn",
472
+ "migration-hub-refactor-spaces",
473
+ "migrationhub-config",
474
+ "migrationhuborchestrator",
475
+ "migrationhubstrategy",
476
+ "mq",
477
+ "mturk",
478
+ "mwaa",
479
+ "neptune",
480
+ "neptune-graph",
481
+ "neptunedata",
482
+ "network-firewall",
483
+ "networkmanager",
484
+ "networkmonitor",
485
+ "notifications",
486
+ "notificationscontacts",
487
+ "oam",
488
+ "observabilityadmin",
489
+ "omics",
490
+ "opensearch",
491
+ "opensearchserverless",
492
+ "opsworks",
493
+ "opsworkscm",
494
+ "organizations",
495
+ "osis",
496
+ "outposts",
497
+ "panorama",
498
+ "partnercentral-selling",
499
+ "payment-cryptography",
500
+ "payment-cryptography-data",
501
+ "pca-connector-ad",
502
+ "pca-connector-scep",
503
+ "pcs",
504
+ "personalize",
505
+ "personalize-events",
506
+ "personalize-runtime",
507
+ "pi",
508
+ "pinpoint",
509
+ "pinpoint-email",
510
+ "pinpoint-sms-voice",
511
+ "pinpoint-sms-voice-v2",
512
+ "pipes",
513
+ "polly",
514
+ "pricing",
515
+ "privatenetworks",
516
+ "proton",
517
+ "qapps",
518
+ "qbusiness",
519
+ "qconnect",
520
+ "qldb",
521
+ "qldb-session",
522
+ "quicksight",
523
+ "ram",
524
+ "rbin",
525
+ "rds",
526
+ "rds-data",
527
+ "redshift",
528
+ "redshift-data",
529
+ "redshift-serverless",
530
+ "rekognition",
531
+ "repostspace",
532
+ "resiliencehub",
533
+ "resource-explorer-2",
534
+ "resource-groups",
535
+ "resourcegroupstaggingapi",
536
+ "robomaker",
537
+ "rolesanywhere",
538
+ "route53",
539
+ "route53-recovery-cluster",
540
+ "route53-recovery-control-config",
541
+ "route53-recovery-readiness",
542
+ "route53domains",
543
+ "route53profiles",
544
+ "route53resolver",
545
+ "rum",
546
+ "s3",
547
+ "s3control",
548
+ "s3outposts",
549
+ "sagemaker",
550
+ "sagemaker-a2i-runtime",
551
+ "sagemaker-edge",
552
+ "sagemaker-featurestore-runtime",
553
+ "sagemaker-geospatial",
554
+ "sagemaker-metrics",
555
+ "sagemaker-runtime",
556
+ "savingsplans",
557
+ "scheduler",
558
+ "schemas",
559
+ "sdb",
560
+ "secretsmanager",
561
+ "securityhub",
562
+ "securitylake",
563
+ "serverlessrepo",
564
+ "service-quotas",
565
+ "servicecatalog",
566
+ "servicecatalog-appregistry",
567
+ "servicediscovery",
568
+ "ses",
569
+ "sesv2",
570
+ "shield",
571
+ "signer",
572
+ "simspaceweaver",
573
+ "sms",
574
+ "sms-voice",
575
+ "snow-device-management",
576
+ "snowball",
577
+ "sns",
578
+ "socialmessaging",
579
+ "sqs",
580
+ "ssm",
581
+ "ssm-contacts",
582
+ "ssm-incidents",
583
+ "ssm-quicksetup",
584
+ "ssm-sap",
585
+ "sso",
586
+ "sso-admin",
587
+ "sso-oidc",
588
+ "stepfunctions",
589
+ "storagegateway",
590
+ "sts",
591
+ "supplychain",
592
+ "support",
593
+ "support-app",
594
+ "swf",
595
+ "synthetics",
596
+ "taxsettings",
597
+ "textract",
598
+ "timestream-influxdb",
599
+ "timestream-query",
600
+ "timestream-write",
601
+ "tnb",
602
+ "transcribe",
603
+ "transfer",
604
+ "translate",
605
+ "trustedadvisor",
606
+ "verifiedpermissions",
607
+ "voice-id",
608
+ "vpc-lattice",
609
+ "waf",
610
+ "waf-regional",
611
+ "wafv2",
612
+ "wellarchitected",
613
+ "wisdom",
614
+ "workdocs",
615
+ "workmail",
616
+ "workmailmessageflow",
617
+ "workspaces",
618
+ "workspaces-thin-client",
619
+ "workspaces-web",
620
+ "xray",
621
+ ]
622
+ ResourceServiceName = Literal[
623
+ "cloudformation",
624
+ "cloudwatch",
625
+ "dynamodb",
626
+ "ec2",
627
+ "glacier",
628
+ "iam",
629
+ "opsworks",
630
+ "s3",
631
+ "sns",
632
+ "sqs",
633
+ ]
634
+ PaginatorName = Literal[
635
+ "list_aliases",
636
+ "list_code_signing_configs",
637
+ "list_event_source_mappings",
638
+ "list_function_event_invoke_configs",
639
+ "list_function_url_configs",
640
+ "list_functions",
641
+ "list_functions_by_code_signing_config",
642
+ "list_layer_versions",
643
+ "list_layers",
644
+ "list_provisioned_concurrency_configs",
645
+ "list_versions_by_function",
646
+ ]
647
+ WaiterName = Literal[
648
+ "function_active",
649
+ "function_active_v2",
650
+ "function_exists",
651
+ "function_updated",
652
+ "function_updated_v2",
653
+ "published_version_active",
654
+ ]
655
+ RegionName = Literal[
656
+ "af-south-1",
657
+ "ap-east-1",
658
+ "ap-northeast-1",
659
+ "ap-northeast-2",
660
+ "ap-northeast-3",
661
+ "ap-south-1",
662
+ "ap-south-2",
663
+ "ap-southeast-1",
664
+ "ap-southeast-2",
665
+ "ap-southeast-3",
666
+ "ap-southeast-4",
667
+ "ap-southeast-5",
668
+ "ca-central-1",
669
+ "ca-west-1",
670
+ "eu-central-1",
671
+ "eu-central-2",
672
+ "eu-north-1",
673
+ "eu-south-1",
674
+ "eu-south-2",
675
+ "eu-west-1",
676
+ "eu-west-2",
677
+ "eu-west-3",
678
+ "il-central-1",
679
+ "me-central-1",
680
+ "me-south-1",
681
+ "sa-east-1",
682
+ "us-east-1",
683
+ "us-east-2",
684
+ "us-west-1",
685
+ "us-west-2",
686
+ ]