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