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