types-boto3-dynamodb 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,624 @@
1
+ """
2
+ Type annotations for dynamodb service literal definitions.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/literals/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from types_boto3_dynamodb.literals import ApproximateCreationDateTimePrecisionType
10
+
11
+ data: ApproximateCreationDateTimePrecisionType = "MICROSECOND"
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
+ "ApproximateCreationDateTimePrecisionType",
26
+ "AttributeActionType",
27
+ "BackupStatusType",
28
+ "BackupTypeFilterType",
29
+ "BackupTypeType",
30
+ "BatchStatementErrorCodeEnumType",
31
+ "BillingModeType",
32
+ "ComparisonOperatorType",
33
+ "ConditionalOperatorType",
34
+ "ContinuousBackupsStatusType",
35
+ "ContributorInsightsActionType",
36
+ "ContributorInsightsStatusType",
37
+ "DestinationStatusType",
38
+ "DynamoDBServiceName",
39
+ "ExportFormatType",
40
+ "ExportStatusType",
41
+ "ExportTypeType",
42
+ "ExportViewTypeType",
43
+ "GlobalTableStatusType",
44
+ "ImportStatusType",
45
+ "IndexStatusType",
46
+ "InputCompressionTypeType",
47
+ "InputFormatType",
48
+ "KeyTypeType",
49
+ "ListBackupsPaginatorName",
50
+ "ListTablesPaginatorName",
51
+ "ListTagsOfResourcePaginatorName",
52
+ "MultiRegionConsistencyType",
53
+ "PaginatorName",
54
+ "PointInTimeRecoveryStatusType",
55
+ "ProjectionTypeType",
56
+ "QueryPaginatorName",
57
+ "RegionName",
58
+ "ReplicaStatusType",
59
+ "ResourceServiceName",
60
+ "ReturnConsumedCapacityType",
61
+ "ReturnItemCollectionMetricsType",
62
+ "ReturnValueType",
63
+ "ReturnValuesOnConditionCheckFailureType",
64
+ "S3SseAlgorithmType",
65
+ "SSEStatusType",
66
+ "SSETypeType",
67
+ "ScalarAttributeTypeType",
68
+ "ScanPaginatorName",
69
+ "SelectType",
70
+ "ServiceName",
71
+ "StreamViewTypeType",
72
+ "TableClassType",
73
+ "TableExistsWaiterName",
74
+ "TableNotExistsWaiterName",
75
+ "TableStatusType",
76
+ "TimeToLiveStatusType",
77
+ "WaiterName",
78
+ )
79
+
80
+ ApproximateCreationDateTimePrecisionType = Literal["MICROSECOND", "MILLISECOND"]
81
+ AttributeActionType = Literal["ADD", "DELETE", "PUT"]
82
+ BackupStatusType = Literal["AVAILABLE", "CREATING", "DELETED"]
83
+ BackupTypeFilterType = Literal["ALL", "AWS_BACKUP", "SYSTEM", "USER"]
84
+ BackupTypeType = Literal["AWS_BACKUP", "SYSTEM", "USER"]
85
+ BatchStatementErrorCodeEnumType = Literal[
86
+ "AccessDenied",
87
+ "ConditionalCheckFailed",
88
+ "DuplicateItem",
89
+ "InternalServerError",
90
+ "ItemCollectionSizeLimitExceeded",
91
+ "ProvisionedThroughputExceeded",
92
+ "RequestLimitExceeded",
93
+ "ResourceNotFound",
94
+ "ThrottlingError",
95
+ "TransactionConflict",
96
+ "ValidationError",
97
+ ]
98
+ BillingModeType = Literal["PAY_PER_REQUEST", "PROVISIONED"]
99
+ ComparisonOperatorType = Literal[
100
+ "BEGINS_WITH",
101
+ "BETWEEN",
102
+ "CONTAINS",
103
+ "EQ",
104
+ "GE",
105
+ "GT",
106
+ "IN",
107
+ "LE",
108
+ "LT",
109
+ "NE",
110
+ "NOT_CONTAINS",
111
+ "NOT_NULL",
112
+ "NULL",
113
+ ]
114
+ ConditionalOperatorType = Literal["AND", "OR"]
115
+ ContinuousBackupsStatusType = Literal["DISABLED", "ENABLED"]
116
+ ContributorInsightsActionType = Literal["DISABLE", "ENABLE"]
117
+ ContributorInsightsStatusType = Literal["DISABLED", "DISABLING", "ENABLED", "ENABLING", "FAILED"]
118
+ DestinationStatusType = Literal[
119
+ "ACTIVE", "DISABLED", "DISABLING", "ENABLE_FAILED", "ENABLING", "UPDATING"
120
+ ]
121
+ ExportFormatType = Literal["DYNAMODB_JSON", "ION"]
122
+ ExportStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS"]
123
+ ExportTypeType = Literal["FULL_EXPORT", "INCREMENTAL_EXPORT"]
124
+ ExportViewTypeType = Literal["NEW_AND_OLD_IMAGES", "NEW_IMAGE"]
125
+ GlobalTableStatusType = Literal["ACTIVE", "CREATING", "DELETING", "UPDATING"]
126
+ ImportStatusType = Literal["CANCELLED", "CANCELLING", "COMPLETED", "FAILED", "IN_PROGRESS"]
127
+ IndexStatusType = Literal["ACTIVE", "CREATING", "DELETING", "UPDATING"]
128
+ InputCompressionTypeType = Literal["GZIP", "NONE", "ZSTD"]
129
+ InputFormatType = Literal["CSV", "DYNAMODB_JSON", "ION"]
130
+ KeyTypeType = Literal["HASH", "RANGE"]
131
+ ListBackupsPaginatorName = Literal["list_backups"]
132
+ ListTablesPaginatorName = Literal["list_tables"]
133
+ ListTagsOfResourcePaginatorName = Literal["list_tags_of_resource"]
134
+ MultiRegionConsistencyType = Literal["EVENTUAL", "STRONG"]
135
+ PointInTimeRecoveryStatusType = Literal["DISABLED", "ENABLED"]
136
+ ProjectionTypeType = Literal["ALL", "INCLUDE", "KEYS_ONLY"]
137
+ QueryPaginatorName = Literal["query"]
138
+ ReplicaStatusType = Literal[
139
+ "ACTIVE",
140
+ "CREATING",
141
+ "CREATION_FAILED",
142
+ "DELETING",
143
+ "INACCESSIBLE_ENCRYPTION_CREDENTIALS",
144
+ "REGION_DISABLED",
145
+ "UPDATING",
146
+ ]
147
+ ReturnConsumedCapacityType = Literal["INDEXES", "NONE", "TOTAL"]
148
+ ReturnItemCollectionMetricsType = Literal["NONE", "SIZE"]
149
+ ReturnValueType = Literal["ALL_NEW", "ALL_OLD", "NONE", "UPDATED_NEW", "UPDATED_OLD"]
150
+ ReturnValuesOnConditionCheckFailureType = Literal["ALL_OLD", "NONE"]
151
+ S3SseAlgorithmType = Literal["AES256", "KMS"]
152
+ SSEStatusType = Literal["DISABLED", "DISABLING", "ENABLED", "ENABLING", "UPDATING"]
153
+ SSETypeType = Literal["AES256", "KMS"]
154
+ ScalarAttributeTypeType = Literal["B", "N", "S"]
155
+ ScanPaginatorName = Literal["scan"]
156
+ SelectType = Literal["ALL_ATTRIBUTES", "ALL_PROJECTED_ATTRIBUTES", "COUNT", "SPECIFIC_ATTRIBUTES"]
157
+ StreamViewTypeType = Literal["KEYS_ONLY", "NEW_AND_OLD_IMAGES", "NEW_IMAGE", "OLD_IMAGE"]
158
+ TableClassType = Literal["STANDARD", "STANDARD_INFREQUENT_ACCESS"]
159
+ TableExistsWaiterName = Literal["table_exists"]
160
+ TableNotExistsWaiterName = Literal["table_not_exists"]
161
+ TableStatusType = Literal[
162
+ "ACTIVE",
163
+ "ARCHIVED",
164
+ "ARCHIVING",
165
+ "CREATING",
166
+ "DELETING",
167
+ "INACCESSIBLE_ENCRYPTION_CREDENTIALS",
168
+ "UPDATING",
169
+ ]
170
+ TimeToLiveStatusType = Literal["DISABLED", "DISABLING", "ENABLED", "ENABLING"]
171
+ DynamoDBServiceName = Literal["dynamodb"]
172
+ ServiceName = Literal[
173
+ "accessanalyzer",
174
+ "account",
175
+ "acm",
176
+ "acm-pca",
177
+ "amp",
178
+ "amplify",
179
+ "amplifybackend",
180
+ "amplifyuibuilder",
181
+ "apigateway",
182
+ "apigatewaymanagementapi",
183
+ "apigatewayv2",
184
+ "appconfig",
185
+ "appconfigdata",
186
+ "appfabric",
187
+ "appflow",
188
+ "appintegrations",
189
+ "application-autoscaling",
190
+ "application-insights",
191
+ "application-signals",
192
+ "applicationcostprofiler",
193
+ "appmesh",
194
+ "apprunner",
195
+ "appstream",
196
+ "appsync",
197
+ "apptest",
198
+ "arc-zonal-shift",
199
+ "artifact",
200
+ "athena",
201
+ "auditmanager",
202
+ "autoscaling",
203
+ "autoscaling-plans",
204
+ "b2bi",
205
+ "backup",
206
+ "backup-gateway",
207
+ "backupsearch",
208
+ "batch",
209
+ "bcm-data-exports",
210
+ "bcm-pricing-calculator",
211
+ "bedrock",
212
+ "bedrock-agent",
213
+ "bedrock-agent-runtime",
214
+ "bedrock-data-automation",
215
+ "bedrock-data-automation-runtime",
216
+ "bedrock-runtime",
217
+ "billing",
218
+ "billingconductor",
219
+ "braket",
220
+ "budgets",
221
+ "ce",
222
+ "chatbot",
223
+ "chime",
224
+ "chime-sdk-identity",
225
+ "chime-sdk-media-pipelines",
226
+ "chime-sdk-meetings",
227
+ "chime-sdk-messaging",
228
+ "chime-sdk-voice",
229
+ "cleanrooms",
230
+ "cleanroomsml",
231
+ "cloud9",
232
+ "cloudcontrol",
233
+ "clouddirectory",
234
+ "cloudformation",
235
+ "cloudfront",
236
+ "cloudfront-keyvaluestore",
237
+ "cloudhsm",
238
+ "cloudhsmv2",
239
+ "cloudsearch",
240
+ "cloudsearchdomain",
241
+ "cloudtrail",
242
+ "cloudtrail-data",
243
+ "cloudwatch",
244
+ "codeartifact",
245
+ "codebuild",
246
+ "codecatalyst",
247
+ "codecommit",
248
+ "codeconnections",
249
+ "codedeploy",
250
+ "codeguru-reviewer",
251
+ "codeguru-security",
252
+ "codeguruprofiler",
253
+ "codepipeline",
254
+ "codestar-connections",
255
+ "codestar-notifications",
256
+ "cognito-identity",
257
+ "cognito-idp",
258
+ "cognito-sync",
259
+ "comprehend",
260
+ "comprehendmedical",
261
+ "compute-optimizer",
262
+ "config",
263
+ "connect",
264
+ "connect-contact-lens",
265
+ "connectcampaigns",
266
+ "connectcampaignsv2",
267
+ "connectcases",
268
+ "connectparticipant",
269
+ "controlcatalog",
270
+ "controltower",
271
+ "cost-optimization-hub",
272
+ "cur",
273
+ "customer-profiles",
274
+ "databrew",
275
+ "dataexchange",
276
+ "datapipeline",
277
+ "datasync",
278
+ "datazone",
279
+ "dax",
280
+ "deadline",
281
+ "detective",
282
+ "devicefarm",
283
+ "devops-guru",
284
+ "directconnect",
285
+ "discovery",
286
+ "dlm",
287
+ "dms",
288
+ "docdb",
289
+ "docdb-elastic",
290
+ "drs",
291
+ "ds",
292
+ "ds-data",
293
+ "dsql",
294
+ "dynamodb",
295
+ "dynamodbstreams",
296
+ "ebs",
297
+ "ec2",
298
+ "ec2-instance-connect",
299
+ "ecr",
300
+ "ecr-public",
301
+ "ecs",
302
+ "efs",
303
+ "eks",
304
+ "eks-auth",
305
+ "elastic-inference",
306
+ "elasticache",
307
+ "elasticbeanstalk",
308
+ "elastictranscoder",
309
+ "elb",
310
+ "elbv2",
311
+ "emr",
312
+ "emr-containers",
313
+ "emr-serverless",
314
+ "entityresolution",
315
+ "es",
316
+ "events",
317
+ "evidently",
318
+ "finspace",
319
+ "finspace-data",
320
+ "firehose",
321
+ "fis",
322
+ "fms",
323
+ "forecast",
324
+ "forecastquery",
325
+ "frauddetector",
326
+ "freetier",
327
+ "fsx",
328
+ "gamelift",
329
+ "geo-maps",
330
+ "geo-places",
331
+ "geo-routes",
332
+ "glacier",
333
+ "globalaccelerator",
334
+ "glue",
335
+ "grafana",
336
+ "greengrass",
337
+ "greengrassv2",
338
+ "groundstation",
339
+ "guardduty",
340
+ "health",
341
+ "healthlake",
342
+ "iam",
343
+ "identitystore",
344
+ "imagebuilder",
345
+ "importexport",
346
+ "inspector",
347
+ "inspector-scan",
348
+ "inspector2",
349
+ "internetmonitor",
350
+ "invoicing",
351
+ "iot",
352
+ "iot-data",
353
+ "iot-jobs-data",
354
+ "iotanalytics",
355
+ "iotdeviceadvisor",
356
+ "iotevents",
357
+ "iotevents-data",
358
+ "iotfleethub",
359
+ "iotfleetwise",
360
+ "iotsecuretunneling",
361
+ "iotsitewise",
362
+ "iotthingsgraph",
363
+ "iottwinmaker",
364
+ "iotwireless",
365
+ "ivs",
366
+ "ivs-realtime",
367
+ "ivschat",
368
+ "kafka",
369
+ "kafkaconnect",
370
+ "kendra",
371
+ "kendra-ranking",
372
+ "keyspaces",
373
+ "kinesis",
374
+ "kinesis-video-archived-media",
375
+ "kinesis-video-media",
376
+ "kinesis-video-signaling",
377
+ "kinesis-video-webrtc-storage",
378
+ "kinesisanalytics",
379
+ "kinesisanalyticsv2",
380
+ "kinesisvideo",
381
+ "kms",
382
+ "lakeformation",
383
+ "lambda",
384
+ "launch-wizard",
385
+ "lex-models",
386
+ "lex-runtime",
387
+ "lexv2-models",
388
+ "lexv2-runtime",
389
+ "license-manager",
390
+ "license-manager-linux-subscriptions",
391
+ "license-manager-user-subscriptions",
392
+ "lightsail",
393
+ "location",
394
+ "logs",
395
+ "lookoutequipment",
396
+ "lookoutmetrics",
397
+ "lookoutvision",
398
+ "m2",
399
+ "machinelearning",
400
+ "macie2",
401
+ "mailmanager",
402
+ "managedblockchain",
403
+ "managedblockchain-query",
404
+ "marketplace-agreement",
405
+ "marketplace-catalog",
406
+ "marketplace-deployment",
407
+ "marketplace-entitlement",
408
+ "marketplace-reporting",
409
+ "marketplacecommerceanalytics",
410
+ "mediaconnect",
411
+ "mediaconvert",
412
+ "medialive",
413
+ "mediapackage",
414
+ "mediapackage-vod",
415
+ "mediapackagev2",
416
+ "mediastore",
417
+ "mediastore-data",
418
+ "mediatailor",
419
+ "medical-imaging",
420
+ "memorydb",
421
+ "meteringmarketplace",
422
+ "mgh",
423
+ "mgn",
424
+ "migration-hub-refactor-spaces",
425
+ "migrationhub-config",
426
+ "migrationhuborchestrator",
427
+ "migrationhubstrategy",
428
+ "mq",
429
+ "mturk",
430
+ "mwaa",
431
+ "neptune",
432
+ "neptune-graph",
433
+ "neptunedata",
434
+ "network-firewall",
435
+ "networkflowmonitor",
436
+ "networkmanager",
437
+ "networkmonitor",
438
+ "notifications",
439
+ "notificationscontacts",
440
+ "oam",
441
+ "observabilityadmin",
442
+ "omics",
443
+ "opensearch",
444
+ "opensearchserverless",
445
+ "opsworks",
446
+ "opsworkscm",
447
+ "organizations",
448
+ "osis",
449
+ "outposts",
450
+ "panorama",
451
+ "partnercentral-selling",
452
+ "payment-cryptography",
453
+ "payment-cryptography-data",
454
+ "pca-connector-ad",
455
+ "pca-connector-scep",
456
+ "pcs",
457
+ "personalize",
458
+ "personalize-events",
459
+ "personalize-runtime",
460
+ "pi",
461
+ "pinpoint",
462
+ "pinpoint-email",
463
+ "pinpoint-sms-voice",
464
+ "pinpoint-sms-voice-v2",
465
+ "pipes",
466
+ "polly",
467
+ "pricing",
468
+ "privatenetworks",
469
+ "proton",
470
+ "qapps",
471
+ "qbusiness",
472
+ "qconnect",
473
+ "qldb",
474
+ "qldb-session",
475
+ "quicksight",
476
+ "ram",
477
+ "rbin",
478
+ "rds",
479
+ "rds-data",
480
+ "redshift",
481
+ "redshift-data",
482
+ "redshift-serverless",
483
+ "rekognition",
484
+ "repostspace",
485
+ "resiliencehub",
486
+ "resource-explorer-2",
487
+ "resource-groups",
488
+ "resourcegroupstaggingapi",
489
+ "robomaker",
490
+ "rolesanywhere",
491
+ "route53",
492
+ "route53-recovery-cluster",
493
+ "route53-recovery-control-config",
494
+ "route53-recovery-readiness",
495
+ "route53domains",
496
+ "route53profiles",
497
+ "route53resolver",
498
+ "rum",
499
+ "s3",
500
+ "s3control",
501
+ "s3outposts",
502
+ "s3tables",
503
+ "sagemaker",
504
+ "sagemaker-a2i-runtime",
505
+ "sagemaker-edge",
506
+ "sagemaker-featurestore-runtime",
507
+ "sagemaker-geospatial",
508
+ "sagemaker-metrics",
509
+ "sagemaker-runtime",
510
+ "savingsplans",
511
+ "scheduler",
512
+ "schemas",
513
+ "sdb",
514
+ "secretsmanager",
515
+ "security-ir",
516
+ "securityhub",
517
+ "securitylake",
518
+ "serverlessrepo",
519
+ "service-quotas",
520
+ "servicecatalog",
521
+ "servicecatalog-appregistry",
522
+ "servicediscovery",
523
+ "ses",
524
+ "sesv2",
525
+ "shield",
526
+ "signer",
527
+ "simspaceweaver",
528
+ "sms",
529
+ "sms-voice",
530
+ "snow-device-management",
531
+ "snowball",
532
+ "sns",
533
+ "socialmessaging",
534
+ "sqs",
535
+ "ssm",
536
+ "ssm-contacts",
537
+ "ssm-incidents",
538
+ "ssm-quicksetup",
539
+ "ssm-sap",
540
+ "sso",
541
+ "sso-admin",
542
+ "sso-oidc",
543
+ "stepfunctions",
544
+ "storagegateway",
545
+ "sts",
546
+ "supplychain",
547
+ "support",
548
+ "support-app",
549
+ "swf",
550
+ "synthetics",
551
+ "taxsettings",
552
+ "textract",
553
+ "timestream-influxdb",
554
+ "timestream-query",
555
+ "timestream-write",
556
+ "tnb",
557
+ "transcribe",
558
+ "transfer",
559
+ "translate",
560
+ "trustedadvisor",
561
+ "verifiedpermissions",
562
+ "voice-id",
563
+ "vpc-lattice",
564
+ "waf",
565
+ "waf-regional",
566
+ "wafv2",
567
+ "wellarchitected",
568
+ "wisdom",
569
+ "workdocs",
570
+ "workmail",
571
+ "workmailmessageflow",
572
+ "workspaces",
573
+ "workspaces-thin-client",
574
+ "workspaces-web",
575
+ "xray",
576
+ ]
577
+ ResourceServiceName = Literal[
578
+ "cloudformation",
579
+ "cloudwatch",
580
+ "dynamodb",
581
+ "ec2",
582
+ "glacier",
583
+ "iam",
584
+ "opsworks",
585
+ "s3",
586
+ "sns",
587
+ "sqs",
588
+ ]
589
+ PaginatorName = Literal["list_backups", "list_tables", "list_tags_of_resource", "query", "scan"]
590
+ WaiterName = Literal["table_exists", "table_not_exists"]
591
+ RegionName = Literal[
592
+ "af-south-1",
593
+ "ap-east-1",
594
+ "ap-northeast-1",
595
+ "ap-northeast-2",
596
+ "ap-northeast-3",
597
+ "ap-south-1",
598
+ "ap-south-2",
599
+ "ap-southeast-1",
600
+ "ap-southeast-2",
601
+ "ap-southeast-3",
602
+ "ap-southeast-4",
603
+ "ap-southeast-5",
604
+ "ap-southeast-7",
605
+ "ca-central-1",
606
+ "ca-west-1",
607
+ "eu-central-1",
608
+ "eu-central-2",
609
+ "eu-north-1",
610
+ "eu-south-1",
611
+ "eu-south-2",
612
+ "eu-west-1",
613
+ "eu-west-2",
614
+ "eu-west-3",
615
+ "il-central-1",
616
+ "me-central-1",
617
+ "me-south-1",
618
+ "mx-central-1",
619
+ "sa-east-1",
620
+ "us-east-1",
621
+ "us-east-2",
622
+ "us-west-1",
623
+ "us-west-2",
624
+ ]