types-boto3-dynamodb 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.
@@ -0,0 +1,616 @@
1
+ """
2
+ Type annotations for dynamodb service literal definitions.
3
+
4
+ [Open 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 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
+
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
+ "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
+
81
+ ApproximateCreationDateTimePrecisionType = Literal["MICROSECOND", "MILLISECOND"]
82
+ AttributeActionType = Literal["ADD", "DELETE", "PUT"]
83
+ BackupStatusType = Literal["AVAILABLE", "CREATING", "DELETED"]
84
+ BackupTypeFilterType = Literal["ALL", "AWS_BACKUP", "SYSTEM", "USER"]
85
+ BackupTypeType = Literal["AWS_BACKUP", "SYSTEM", "USER"]
86
+ BatchStatementErrorCodeEnumType = Literal[
87
+ "AccessDenied",
88
+ "ConditionalCheckFailed",
89
+ "DuplicateItem",
90
+ "InternalServerError",
91
+ "ItemCollectionSizeLimitExceeded",
92
+ "ProvisionedThroughputExceeded",
93
+ "RequestLimitExceeded",
94
+ "ResourceNotFound",
95
+ "ThrottlingError",
96
+ "TransactionConflict",
97
+ "ValidationError",
98
+ ]
99
+ BillingModeType = Literal["PAY_PER_REQUEST", "PROVISIONED"]
100
+ ComparisonOperatorType = Literal[
101
+ "BEGINS_WITH",
102
+ "BETWEEN",
103
+ "CONTAINS",
104
+ "EQ",
105
+ "GE",
106
+ "GT",
107
+ "IN",
108
+ "LE",
109
+ "LT",
110
+ "NE",
111
+ "NOT_CONTAINS",
112
+ "NOT_NULL",
113
+ "NULL",
114
+ ]
115
+ ConditionalOperatorType = Literal["AND", "OR"]
116
+ ContinuousBackupsStatusType = Literal["DISABLED", "ENABLED"]
117
+ ContributorInsightsActionType = Literal["DISABLE", "ENABLE"]
118
+ ContributorInsightsStatusType = Literal["DISABLED", "DISABLING", "ENABLED", "ENABLING", "FAILED"]
119
+ DestinationStatusType = Literal[
120
+ "ACTIVE", "DISABLED", "DISABLING", "ENABLE_FAILED", "ENABLING", "UPDATING"
121
+ ]
122
+ ExportFormatType = Literal["DYNAMODB_JSON", "ION"]
123
+ ExportStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS"]
124
+ ExportTypeType = Literal["FULL_EXPORT", "INCREMENTAL_EXPORT"]
125
+ ExportViewTypeType = Literal["NEW_AND_OLD_IMAGES", "NEW_IMAGE"]
126
+ GlobalTableStatusType = Literal["ACTIVE", "CREATING", "DELETING", "UPDATING"]
127
+ ImportStatusType = Literal["CANCELLED", "CANCELLING", "COMPLETED", "FAILED", "IN_PROGRESS"]
128
+ IndexStatusType = Literal["ACTIVE", "CREATING", "DELETING", "UPDATING"]
129
+ InputCompressionTypeType = Literal["GZIP", "NONE", "ZSTD"]
130
+ InputFormatType = Literal["CSV", "DYNAMODB_JSON", "ION"]
131
+ KeyTypeType = Literal["HASH", "RANGE"]
132
+ ListBackupsPaginatorName = Literal["list_backups"]
133
+ ListTablesPaginatorName = Literal["list_tables"]
134
+ ListTagsOfResourcePaginatorName = Literal["list_tags_of_resource"]
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
+ "batch",
208
+ "bcm-data-exports",
209
+ "bcm-pricing-calculator",
210
+ "bedrock",
211
+ "bedrock-agent",
212
+ "bedrock-agent-runtime",
213
+ "bedrock-runtime",
214
+ "billing",
215
+ "billingconductor",
216
+ "braket",
217
+ "budgets",
218
+ "ce",
219
+ "chatbot",
220
+ "chime",
221
+ "chime-sdk-identity",
222
+ "chime-sdk-media-pipelines",
223
+ "chime-sdk-meetings",
224
+ "chime-sdk-messaging",
225
+ "chime-sdk-voice",
226
+ "cleanrooms",
227
+ "cleanroomsml",
228
+ "cloud9",
229
+ "cloudcontrol",
230
+ "clouddirectory",
231
+ "cloudformation",
232
+ "cloudfront",
233
+ "cloudfront-keyvaluestore",
234
+ "cloudhsm",
235
+ "cloudhsmv2",
236
+ "cloudsearch",
237
+ "cloudsearchdomain",
238
+ "cloudtrail",
239
+ "cloudtrail-data",
240
+ "cloudwatch",
241
+ "codeartifact",
242
+ "codebuild",
243
+ "codecatalyst",
244
+ "codecommit",
245
+ "codeconnections",
246
+ "codedeploy",
247
+ "codeguru-reviewer",
248
+ "codeguru-security",
249
+ "codeguruprofiler",
250
+ "codepipeline",
251
+ "codestar-connections",
252
+ "codestar-notifications",
253
+ "cognito-identity",
254
+ "cognito-idp",
255
+ "cognito-sync",
256
+ "comprehend",
257
+ "comprehendmedical",
258
+ "compute-optimizer",
259
+ "config",
260
+ "connect",
261
+ "connect-contact-lens",
262
+ "connectcampaigns",
263
+ "connectcampaignsv2",
264
+ "connectcases",
265
+ "connectparticipant",
266
+ "controlcatalog",
267
+ "controltower",
268
+ "cost-optimization-hub",
269
+ "cur",
270
+ "customer-profiles",
271
+ "databrew",
272
+ "dataexchange",
273
+ "datapipeline",
274
+ "datasync",
275
+ "datazone",
276
+ "dax",
277
+ "deadline",
278
+ "detective",
279
+ "devicefarm",
280
+ "devops-guru",
281
+ "directconnect",
282
+ "discovery",
283
+ "dlm",
284
+ "dms",
285
+ "docdb",
286
+ "docdb-elastic",
287
+ "drs",
288
+ "ds",
289
+ "ds-data",
290
+ "dynamodb",
291
+ "dynamodbstreams",
292
+ "ebs",
293
+ "ec2",
294
+ "ec2-instance-connect",
295
+ "ecr",
296
+ "ecr-public",
297
+ "ecs",
298
+ "efs",
299
+ "eks",
300
+ "eks-auth",
301
+ "elastic-inference",
302
+ "elasticache",
303
+ "elasticbeanstalk",
304
+ "elastictranscoder",
305
+ "elb",
306
+ "elbv2",
307
+ "emr",
308
+ "emr-containers",
309
+ "emr-serverless",
310
+ "entityresolution",
311
+ "es",
312
+ "events",
313
+ "evidently",
314
+ "finspace",
315
+ "finspace-data",
316
+ "firehose",
317
+ "fis",
318
+ "fms",
319
+ "forecast",
320
+ "forecastquery",
321
+ "frauddetector",
322
+ "freetier",
323
+ "fsx",
324
+ "gamelift",
325
+ "geo-maps",
326
+ "geo-places",
327
+ "geo-routes",
328
+ "glacier",
329
+ "globalaccelerator",
330
+ "glue",
331
+ "grafana",
332
+ "greengrass",
333
+ "greengrassv2",
334
+ "groundstation",
335
+ "guardduty",
336
+ "health",
337
+ "healthlake",
338
+ "iam",
339
+ "identitystore",
340
+ "imagebuilder",
341
+ "importexport",
342
+ "inspector",
343
+ "inspector-scan",
344
+ "inspector2",
345
+ "internetmonitor",
346
+ "iot",
347
+ "iot-data",
348
+ "iot-jobs-data",
349
+ "iot1click-devices",
350
+ "iot1click-projects",
351
+ "iotanalytics",
352
+ "iotdeviceadvisor",
353
+ "iotevents",
354
+ "iotevents-data",
355
+ "iotfleethub",
356
+ "iotfleetwise",
357
+ "iotsecuretunneling",
358
+ "iotsitewise",
359
+ "iotthingsgraph",
360
+ "iottwinmaker",
361
+ "iotwireless",
362
+ "ivs",
363
+ "ivs-realtime",
364
+ "ivschat",
365
+ "kafka",
366
+ "kafkaconnect",
367
+ "kendra",
368
+ "kendra-ranking",
369
+ "keyspaces",
370
+ "kinesis",
371
+ "kinesis-video-archived-media",
372
+ "kinesis-video-media",
373
+ "kinesis-video-signaling",
374
+ "kinesis-video-webrtc-storage",
375
+ "kinesisanalytics",
376
+ "kinesisanalyticsv2",
377
+ "kinesisvideo",
378
+ "kms",
379
+ "lakeformation",
380
+ "lambda",
381
+ "launch-wizard",
382
+ "lex-models",
383
+ "lex-runtime",
384
+ "lexv2-models",
385
+ "lexv2-runtime",
386
+ "license-manager",
387
+ "license-manager-linux-subscriptions",
388
+ "license-manager-user-subscriptions",
389
+ "lightsail",
390
+ "location",
391
+ "logs",
392
+ "lookoutequipment",
393
+ "lookoutmetrics",
394
+ "lookoutvision",
395
+ "m2",
396
+ "machinelearning",
397
+ "macie2",
398
+ "mailmanager",
399
+ "managedblockchain",
400
+ "managedblockchain-query",
401
+ "marketplace-agreement",
402
+ "marketplace-catalog",
403
+ "marketplace-deployment",
404
+ "marketplace-entitlement",
405
+ "marketplace-reporting",
406
+ "marketplacecommerceanalytics",
407
+ "mediaconnect",
408
+ "mediaconvert",
409
+ "medialive",
410
+ "mediapackage",
411
+ "mediapackage-vod",
412
+ "mediapackagev2",
413
+ "mediastore",
414
+ "mediastore-data",
415
+ "mediatailor",
416
+ "medical-imaging",
417
+ "memorydb",
418
+ "meteringmarketplace",
419
+ "mgh",
420
+ "mgn",
421
+ "migration-hub-refactor-spaces",
422
+ "migrationhub-config",
423
+ "migrationhuborchestrator",
424
+ "migrationhubstrategy",
425
+ "mq",
426
+ "mturk",
427
+ "mwaa",
428
+ "neptune",
429
+ "neptune-graph",
430
+ "neptunedata",
431
+ "network-firewall",
432
+ "networkmanager",
433
+ "networkmonitor",
434
+ "notifications",
435
+ "notificationscontacts",
436
+ "oam",
437
+ "observabilityadmin",
438
+ "omics",
439
+ "opensearch",
440
+ "opensearchserverless",
441
+ "opsworks",
442
+ "opsworkscm",
443
+ "organizations",
444
+ "osis",
445
+ "outposts",
446
+ "panorama",
447
+ "partnercentral-selling",
448
+ "payment-cryptography",
449
+ "payment-cryptography-data",
450
+ "pca-connector-ad",
451
+ "pca-connector-scep",
452
+ "pcs",
453
+ "personalize",
454
+ "personalize-events",
455
+ "personalize-runtime",
456
+ "pi",
457
+ "pinpoint",
458
+ "pinpoint-email",
459
+ "pinpoint-sms-voice",
460
+ "pinpoint-sms-voice-v2",
461
+ "pipes",
462
+ "polly",
463
+ "pricing",
464
+ "privatenetworks",
465
+ "proton",
466
+ "qapps",
467
+ "qbusiness",
468
+ "qconnect",
469
+ "qldb",
470
+ "qldb-session",
471
+ "quicksight",
472
+ "ram",
473
+ "rbin",
474
+ "rds",
475
+ "rds-data",
476
+ "redshift",
477
+ "redshift-data",
478
+ "redshift-serverless",
479
+ "rekognition",
480
+ "repostspace",
481
+ "resiliencehub",
482
+ "resource-explorer-2",
483
+ "resource-groups",
484
+ "resourcegroupstaggingapi",
485
+ "robomaker",
486
+ "rolesanywhere",
487
+ "route53",
488
+ "route53-recovery-cluster",
489
+ "route53-recovery-control-config",
490
+ "route53-recovery-readiness",
491
+ "route53domains",
492
+ "route53profiles",
493
+ "route53resolver",
494
+ "rum",
495
+ "s3",
496
+ "s3control",
497
+ "s3outposts",
498
+ "sagemaker",
499
+ "sagemaker-a2i-runtime",
500
+ "sagemaker-edge",
501
+ "sagemaker-featurestore-runtime",
502
+ "sagemaker-geospatial",
503
+ "sagemaker-metrics",
504
+ "sagemaker-runtime",
505
+ "savingsplans",
506
+ "scheduler",
507
+ "schemas",
508
+ "sdb",
509
+ "secretsmanager",
510
+ "securityhub",
511
+ "securitylake",
512
+ "serverlessrepo",
513
+ "service-quotas",
514
+ "servicecatalog",
515
+ "servicecatalog-appregistry",
516
+ "servicediscovery",
517
+ "ses",
518
+ "sesv2",
519
+ "shield",
520
+ "signer",
521
+ "simspaceweaver",
522
+ "sms",
523
+ "sms-voice",
524
+ "snow-device-management",
525
+ "snowball",
526
+ "sns",
527
+ "socialmessaging",
528
+ "sqs",
529
+ "ssm",
530
+ "ssm-contacts",
531
+ "ssm-incidents",
532
+ "ssm-quicksetup",
533
+ "ssm-sap",
534
+ "sso",
535
+ "sso-admin",
536
+ "sso-oidc",
537
+ "stepfunctions",
538
+ "storagegateway",
539
+ "sts",
540
+ "supplychain",
541
+ "support",
542
+ "support-app",
543
+ "swf",
544
+ "synthetics",
545
+ "taxsettings",
546
+ "textract",
547
+ "timestream-influxdb",
548
+ "timestream-query",
549
+ "timestream-write",
550
+ "tnb",
551
+ "transcribe",
552
+ "transfer",
553
+ "translate",
554
+ "trustedadvisor",
555
+ "verifiedpermissions",
556
+ "voice-id",
557
+ "vpc-lattice",
558
+ "waf",
559
+ "waf-regional",
560
+ "wafv2",
561
+ "wellarchitected",
562
+ "wisdom",
563
+ "workdocs",
564
+ "workmail",
565
+ "workmailmessageflow",
566
+ "workspaces",
567
+ "workspaces-thin-client",
568
+ "workspaces-web",
569
+ "xray",
570
+ ]
571
+ ResourceServiceName = Literal[
572
+ "cloudformation",
573
+ "cloudwatch",
574
+ "dynamodb",
575
+ "ec2",
576
+ "glacier",
577
+ "iam",
578
+ "opsworks",
579
+ "s3",
580
+ "sns",
581
+ "sqs",
582
+ ]
583
+ PaginatorName = Literal["list_backups", "list_tables", "list_tags_of_resource", "query", "scan"]
584
+ WaiterName = Literal["table_exists", "table_not_exists"]
585
+ RegionName = Literal[
586
+ "af-south-1",
587
+ "ap-east-1",
588
+ "ap-northeast-1",
589
+ "ap-northeast-2",
590
+ "ap-northeast-3",
591
+ "ap-south-1",
592
+ "ap-south-2",
593
+ "ap-southeast-1",
594
+ "ap-southeast-2",
595
+ "ap-southeast-3",
596
+ "ap-southeast-4",
597
+ "ap-southeast-5",
598
+ "ca-central-1",
599
+ "ca-west-1",
600
+ "eu-central-1",
601
+ "eu-central-2",
602
+ "eu-north-1",
603
+ "eu-south-1",
604
+ "eu-south-2",
605
+ "eu-west-1",
606
+ "eu-west-2",
607
+ "eu-west-3",
608
+ "il-central-1",
609
+ "me-central-1",
610
+ "me-south-1",
611
+ "sa-east-1",
612
+ "us-east-1",
613
+ "us-east-2",
614
+ "us-west-1",
615
+ "us-west-2",
616
+ ]