mypy-boto3-dynamodb 1.38.4__py3-none-any.whl → 1.40.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.
- mypy_boto3_dynamodb/__main__.py +4 -4
- mypy_boto3_dynamodb/literals.py +17 -2
- mypy_boto3_dynamodb/literals.pyi +17 -2
- mypy_boto3_dynamodb/service_resource.py +2 -0
- mypy_boto3_dynamodb/service_resource.pyi +2 -0
- mypy_boto3_dynamodb/type_defs.py +34 -0
- mypy_boto3_dynamodb/type_defs.pyi +32 -0
- mypy_boto3_dynamodb/version.py +1 -1
- {mypy_boto3_dynamodb-1.38.4.dist-info → mypy_boto3_dynamodb-1.40.0.dist-info}/METADATA +5 -5
- mypy_boto3_dynamodb-1.40.0.dist-info/RECORD +22 -0
- {mypy_boto3_dynamodb-1.38.4.dist-info → mypy_boto3_dynamodb-1.40.0.dist-info}/WHEEL +1 -1
- mypy_boto3_dynamodb-1.38.4.dist-info/RECORD +0 -22
- {mypy_boto3_dynamodb-1.38.4.dist-info → mypy_boto3_dynamodb-1.40.0.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_dynamodb-1.38.4.dist-info → mypy_boto3_dynamodb-1.40.0.dist-info}/top_level.txt +0 -0
mypy_boto3_dynamodb/__main__.py
CHANGED
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 DynamoDB 1.
|
|
16
|
-
"Version: 1.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 DynamoDB 1.40.0\n"
|
|
16
|
+
"Version: 1.40.0\n"
|
|
17
|
+
"Builder version: 8.11.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#dynamodb\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.
|
|
29
|
+
sys.stdout.write("1.40.0\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_dynamodb/literals.py
CHANGED
|
@@ -76,6 +76,7 @@ __all__ = (
|
|
|
76
76
|
"TableStatusType",
|
|
77
77
|
"TimeToLiveStatusType",
|
|
78
78
|
"WaiterName",
|
|
79
|
+
"WitnessStatusType",
|
|
79
80
|
)
|
|
80
81
|
|
|
81
82
|
|
|
@@ -139,11 +140,14 @@ ProjectionTypeType = Literal["ALL", "INCLUDE", "KEYS_ONLY"]
|
|
|
139
140
|
QueryPaginatorName = Literal["query"]
|
|
140
141
|
ReplicaStatusType = Literal[
|
|
141
142
|
"ACTIVE",
|
|
143
|
+
"ARCHIVED",
|
|
144
|
+
"ARCHIVING",
|
|
142
145
|
"CREATING",
|
|
143
146
|
"CREATION_FAILED",
|
|
144
147
|
"DELETING",
|
|
145
148
|
"INACCESSIBLE_ENCRYPTION_CREDENTIALS",
|
|
146
149
|
"REGION_DISABLED",
|
|
150
|
+
"REPLICATION_NOT_AUTHORIZED",
|
|
147
151
|
"UPDATING",
|
|
148
152
|
]
|
|
149
153
|
ReturnConsumedCapacityType = Literal["INDEXES", "NONE", "TOTAL"]
|
|
@@ -167,15 +171,18 @@ TableStatusType = Literal[
|
|
|
167
171
|
"CREATING",
|
|
168
172
|
"DELETING",
|
|
169
173
|
"INACCESSIBLE_ENCRYPTION_CREDENTIALS",
|
|
174
|
+
"REPLICATION_NOT_AUTHORIZED",
|
|
170
175
|
"UPDATING",
|
|
171
176
|
]
|
|
172
177
|
TimeToLiveStatusType = Literal["DISABLED", "DISABLING", "ENABLED", "ENABLING"]
|
|
178
|
+
WitnessStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
|
|
173
179
|
DynamoDBServiceName = Literal["dynamodb"]
|
|
174
180
|
ServiceName = Literal[
|
|
175
181
|
"accessanalyzer",
|
|
176
182
|
"account",
|
|
177
183
|
"acm",
|
|
178
184
|
"acm-pca",
|
|
185
|
+
"aiops",
|
|
179
186
|
"amp",
|
|
180
187
|
"amplify",
|
|
181
188
|
"amplifybackend",
|
|
@@ -213,6 +220,8 @@ ServiceName = Literal[
|
|
|
213
220
|
"bedrock",
|
|
214
221
|
"bedrock-agent",
|
|
215
222
|
"bedrock-agent-runtime",
|
|
223
|
+
"bedrock-agentcore",
|
|
224
|
+
"bedrock-agentcore-control",
|
|
216
225
|
"bedrock-data-automation",
|
|
217
226
|
"bedrock-data-automation-runtime",
|
|
218
227
|
"bedrock-runtime",
|
|
@@ -316,6 +325,7 @@ ServiceName = Literal[
|
|
|
316
325
|
"es",
|
|
317
326
|
"events",
|
|
318
327
|
"evidently",
|
|
328
|
+
"evs",
|
|
319
329
|
"finspace",
|
|
320
330
|
"finspace-data",
|
|
321
331
|
"firehose",
|
|
@@ -373,6 +383,7 @@ ServiceName = Literal[
|
|
|
373
383
|
"kendra",
|
|
374
384
|
"kendra-ranking",
|
|
375
385
|
"keyspaces",
|
|
386
|
+
"keyspacesstreams",
|
|
376
387
|
"kinesis",
|
|
377
388
|
"kinesis-video-archived-media",
|
|
378
389
|
"kinesis-video-media",
|
|
@@ -428,6 +439,7 @@ ServiceName = Literal[
|
|
|
428
439
|
"migrationhub-config",
|
|
429
440
|
"migrationhuborchestrator",
|
|
430
441
|
"migrationhubstrategy",
|
|
442
|
+
"mpa",
|
|
431
443
|
"mq",
|
|
432
444
|
"mturk",
|
|
433
445
|
"mwaa",
|
|
@@ -442,6 +454,7 @@ ServiceName = Literal[
|
|
|
442
454
|
"notificationscontacts",
|
|
443
455
|
"oam",
|
|
444
456
|
"observabilityadmin",
|
|
457
|
+
"odb",
|
|
445
458
|
"omics",
|
|
446
459
|
"opensearch",
|
|
447
460
|
"opensearchserverless",
|
|
@@ -468,7 +481,6 @@ ServiceName = Literal[
|
|
|
468
481
|
"pipes",
|
|
469
482
|
"polly",
|
|
470
483
|
"pricing",
|
|
471
|
-
"privatenetworks",
|
|
472
484
|
"proton",
|
|
473
485
|
"qapps",
|
|
474
486
|
"qbusiness",
|
|
@@ -503,6 +515,7 @@ ServiceName = Literal[
|
|
|
503
515
|
"s3control",
|
|
504
516
|
"s3outposts",
|
|
505
517
|
"s3tables",
|
|
518
|
+
"s3vectors",
|
|
506
519
|
"sagemaker",
|
|
507
520
|
"sagemaker-a2i-runtime",
|
|
508
521
|
"sagemaker-edge",
|
|
@@ -529,7 +542,6 @@ ServiceName = Literal[
|
|
|
529
542
|
"signer",
|
|
530
543
|
"simspaceweaver",
|
|
531
544
|
"sms",
|
|
532
|
-
"sms-voice",
|
|
533
545
|
"snow-device-management",
|
|
534
546
|
"snowball",
|
|
535
547
|
"sns",
|
|
@@ -537,6 +549,7 @@ ServiceName = Literal[
|
|
|
537
549
|
"sqs",
|
|
538
550
|
"ssm",
|
|
539
551
|
"ssm-contacts",
|
|
552
|
+
"ssm-guiconnect",
|
|
540
553
|
"ssm-incidents",
|
|
541
554
|
"ssm-quicksetup",
|
|
542
555
|
"ssm-sap",
|
|
@@ -573,6 +586,7 @@ ServiceName = Literal[
|
|
|
573
586
|
"workmail",
|
|
574
587
|
"workmailmessageflow",
|
|
575
588
|
"workspaces",
|
|
589
|
+
"workspaces-instances",
|
|
576
590
|
"workspaces-thin-client",
|
|
577
591
|
"workspaces-web",
|
|
578
592
|
"xray",
|
|
@@ -594,6 +608,7 @@ WaiterName = Literal["table_exists", "table_not_exists"]
|
|
|
594
608
|
RegionName = Literal[
|
|
595
609
|
"af-south-1",
|
|
596
610
|
"ap-east-1",
|
|
611
|
+
"ap-east-2",
|
|
597
612
|
"ap-northeast-1",
|
|
598
613
|
"ap-northeast-2",
|
|
599
614
|
"ap-northeast-3",
|
mypy_boto3_dynamodb/literals.pyi
CHANGED
|
@@ -75,6 +75,7 @@ __all__ = (
|
|
|
75
75
|
"TableStatusType",
|
|
76
76
|
"TimeToLiveStatusType",
|
|
77
77
|
"WaiterName",
|
|
78
|
+
"WitnessStatusType",
|
|
78
79
|
)
|
|
79
80
|
|
|
80
81
|
ApproximateCreationDateTimePrecisionType = Literal["MICROSECOND", "MILLISECOND"]
|
|
@@ -137,11 +138,14 @@ ProjectionTypeType = Literal["ALL", "INCLUDE", "KEYS_ONLY"]
|
|
|
137
138
|
QueryPaginatorName = Literal["query"]
|
|
138
139
|
ReplicaStatusType = Literal[
|
|
139
140
|
"ACTIVE",
|
|
141
|
+
"ARCHIVED",
|
|
142
|
+
"ARCHIVING",
|
|
140
143
|
"CREATING",
|
|
141
144
|
"CREATION_FAILED",
|
|
142
145
|
"DELETING",
|
|
143
146
|
"INACCESSIBLE_ENCRYPTION_CREDENTIALS",
|
|
144
147
|
"REGION_DISABLED",
|
|
148
|
+
"REPLICATION_NOT_AUTHORIZED",
|
|
145
149
|
"UPDATING",
|
|
146
150
|
]
|
|
147
151
|
ReturnConsumedCapacityType = Literal["INDEXES", "NONE", "TOTAL"]
|
|
@@ -165,15 +169,18 @@ TableStatusType = Literal[
|
|
|
165
169
|
"CREATING",
|
|
166
170
|
"DELETING",
|
|
167
171
|
"INACCESSIBLE_ENCRYPTION_CREDENTIALS",
|
|
172
|
+
"REPLICATION_NOT_AUTHORIZED",
|
|
168
173
|
"UPDATING",
|
|
169
174
|
]
|
|
170
175
|
TimeToLiveStatusType = Literal["DISABLED", "DISABLING", "ENABLED", "ENABLING"]
|
|
176
|
+
WitnessStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
|
|
171
177
|
DynamoDBServiceName = Literal["dynamodb"]
|
|
172
178
|
ServiceName = Literal[
|
|
173
179
|
"accessanalyzer",
|
|
174
180
|
"account",
|
|
175
181
|
"acm",
|
|
176
182
|
"acm-pca",
|
|
183
|
+
"aiops",
|
|
177
184
|
"amp",
|
|
178
185
|
"amplify",
|
|
179
186
|
"amplifybackend",
|
|
@@ -211,6 +218,8 @@ ServiceName = Literal[
|
|
|
211
218
|
"bedrock",
|
|
212
219
|
"bedrock-agent",
|
|
213
220
|
"bedrock-agent-runtime",
|
|
221
|
+
"bedrock-agentcore",
|
|
222
|
+
"bedrock-agentcore-control",
|
|
214
223
|
"bedrock-data-automation",
|
|
215
224
|
"bedrock-data-automation-runtime",
|
|
216
225
|
"bedrock-runtime",
|
|
@@ -314,6 +323,7 @@ ServiceName = Literal[
|
|
|
314
323
|
"es",
|
|
315
324
|
"events",
|
|
316
325
|
"evidently",
|
|
326
|
+
"evs",
|
|
317
327
|
"finspace",
|
|
318
328
|
"finspace-data",
|
|
319
329
|
"firehose",
|
|
@@ -371,6 +381,7 @@ ServiceName = Literal[
|
|
|
371
381
|
"kendra",
|
|
372
382
|
"kendra-ranking",
|
|
373
383
|
"keyspaces",
|
|
384
|
+
"keyspacesstreams",
|
|
374
385
|
"kinesis",
|
|
375
386
|
"kinesis-video-archived-media",
|
|
376
387
|
"kinesis-video-media",
|
|
@@ -426,6 +437,7 @@ ServiceName = Literal[
|
|
|
426
437
|
"migrationhub-config",
|
|
427
438
|
"migrationhuborchestrator",
|
|
428
439
|
"migrationhubstrategy",
|
|
440
|
+
"mpa",
|
|
429
441
|
"mq",
|
|
430
442
|
"mturk",
|
|
431
443
|
"mwaa",
|
|
@@ -440,6 +452,7 @@ ServiceName = Literal[
|
|
|
440
452
|
"notificationscontacts",
|
|
441
453
|
"oam",
|
|
442
454
|
"observabilityadmin",
|
|
455
|
+
"odb",
|
|
443
456
|
"omics",
|
|
444
457
|
"opensearch",
|
|
445
458
|
"opensearchserverless",
|
|
@@ -466,7 +479,6 @@ ServiceName = Literal[
|
|
|
466
479
|
"pipes",
|
|
467
480
|
"polly",
|
|
468
481
|
"pricing",
|
|
469
|
-
"privatenetworks",
|
|
470
482
|
"proton",
|
|
471
483
|
"qapps",
|
|
472
484
|
"qbusiness",
|
|
@@ -501,6 +513,7 @@ ServiceName = Literal[
|
|
|
501
513
|
"s3control",
|
|
502
514
|
"s3outposts",
|
|
503
515
|
"s3tables",
|
|
516
|
+
"s3vectors",
|
|
504
517
|
"sagemaker",
|
|
505
518
|
"sagemaker-a2i-runtime",
|
|
506
519
|
"sagemaker-edge",
|
|
@@ -527,7 +540,6 @@ ServiceName = Literal[
|
|
|
527
540
|
"signer",
|
|
528
541
|
"simspaceweaver",
|
|
529
542
|
"sms",
|
|
530
|
-
"sms-voice",
|
|
531
543
|
"snow-device-management",
|
|
532
544
|
"snowball",
|
|
533
545
|
"sns",
|
|
@@ -535,6 +547,7 @@ ServiceName = Literal[
|
|
|
535
547
|
"sqs",
|
|
536
548
|
"ssm",
|
|
537
549
|
"ssm-contacts",
|
|
550
|
+
"ssm-guiconnect",
|
|
538
551
|
"ssm-incidents",
|
|
539
552
|
"ssm-quicksetup",
|
|
540
553
|
"ssm-sap",
|
|
@@ -571,6 +584,7 @@ ServiceName = Literal[
|
|
|
571
584
|
"workmail",
|
|
572
585
|
"workmailmessageflow",
|
|
573
586
|
"workspaces",
|
|
587
|
+
"workspaces-instances",
|
|
574
588
|
"workspaces-thin-client",
|
|
575
589
|
"workspaces-web",
|
|
576
590
|
"xray",
|
|
@@ -592,6 +606,7 @@ WaiterName = Literal["table_exists", "table_not_exists"]
|
|
|
592
606
|
RegionName = Literal[
|
|
593
607
|
"af-south-1",
|
|
594
608
|
"ap-east-1",
|
|
609
|
+
"ap-east-2",
|
|
595
610
|
"ap-northeast-1",
|
|
596
611
|
"ap-northeast-2",
|
|
597
612
|
"ap-northeast-3",
|
|
@@ -46,6 +46,7 @@ from .type_defs import (
|
|
|
46
46
|
GetItemInputTableGetItemTypeDef,
|
|
47
47
|
GetItemOutputTableTypeDef,
|
|
48
48
|
GlobalSecondaryIndexDescriptionTypeDef,
|
|
49
|
+
GlobalTableWitnessDescriptionTypeDef,
|
|
49
50
|
KeySchemaElementTypeDef,
|
|
50
51
|
LocalSecondaryIndexDescriptionTypeDef,
|
|
51
52
|
OnDemandThroughputTypeDef,
|
|
@@ -166,6 +167,7 @@ class Table(ServiceResource):
|
|
|
166
167
|
latest_stream_arn: str
|
|
167
168
|
global_table_version: str
|
|
168
169
|
replicas: List[ReplicaDescriptionTypeDef]
|
|
170
|
+
global_table_witnesses: List[GlobalTableWitnessDescriptionTypeDef]
|
|
169
171
|
restore_summary: RestoreSummaryTypeDef
|
|
170
172
|
sse_description: SSEDescriptionTypeDef
|
|
171
173
|
archival_summary: ArchivalSummaryTypeDef
|
|
@@ -46,6 +46,7 @@ from .type_defs import (
|
|
|
46
46
|
GetItemInputTableGetItemTypeDef,
|
|
47
47
|
GetItemOutputTableTypeDef,
|
|
48
48
|
GlobalSecondaryIndexDescriptionTypeDef,
|
|
49
|
+
GlobalTableWitnessDescriptionTypeDef,
|
|
49
50
|
KeySchemaElementTypeDef,
|
|
50
51
|
LocalSecondaryIndexDescriptionTypeDef,
|
|
51
52
|
OnDemandThroughputTypeDef,
|
|
@@ -162,6 +163,7 @@ class Table(ServiceResource):
|
|
|
162
163
|
latest_stream_arn: str
|
|
163
164
|
global_table_version: str
|
|
164
165
|
replicas: List[ReplicaDescriptionTypeDef]
|
|
166
|
+
global_table_witnesses: List[GlobalTableWitnessDescriptionTypeDef]
|
|
165
167
|
restore_summary: RestoreSummaryTypeDef
|
|
166
168
|
sse_description: SSEDescriptionTypeDef
|
|
167
169
|
archival_summary: ArchivalSummaryTypeDef
|
mypy_boto3_dynamodb/type_defs.py
CHANGED
|
@@ -64,6 +64,7 @@ from .literals import (
|
|
|
64
64
|
TableClassType,
|
|
65
65
|
TableStatusType,
|
|
66
66
|
TimeToLiveStatusType,
|
|
67
|
+
WitnessStatusType,
|
|
67
68
|
)
|
|
68
69
|
|
|
69
70
|
if sys.version_info >= (3, 9):
|
|
@@ -121,6 +122,7 @@ __all__ = (
|
|
|
121
122
|
"CreateGlobalSecondaryIndexActionTypeDef",
|
|
122
123
|
"CreateGlobalTableInputTypeDef",
|
|
123
124
|
"CreateGlobalTableOutputTypeDef",
|
|
125
|
+
"CreateGlobalTableWitnessGroupMemberActionTypeDef",
|
|
124
126
|
"CreateReplicaActionTypeDef",
|
|
125
127
|
"CreateReplicationGroupMemberActionTypeDef",
|
|
126
128
|
"CreateTableInputServiceResourceCreateTableTypeDef",
|
|
@@ -131,6 +133,7 @@ __all__ = (
|
|
|
131
133
|
"DeleteBackupInputTypeDef",
|
|
132
134
|
"DeleteBackupOutputTypeDef",
|
|
133
135
|
"DeleteGlobalSecondaryIndexActionTypeDef",
|
|
136
|
+
"DeleteGlobalTableWitnessGroupMemberActionTypeDef",
|
|
134
137
|
"DeleteItemInputTableDeleteItemTypeDef",
|
|
135
138
|
"DeleteItemInputTypeDef",
|
|
136
139
|
"DeleteItemOutputTableTypeDef",
|
|
@@ -206,6 +209,8 @@ __all__ = (
|
|
|
206
209
|
"GlobalTableDescriptionTypeDef",
|
|
207
210
|
"GlobalTableGlobalSecondaryIndexSettingsUpdateTypeDef",
|
|
208
211
|
"GlobalTableTypeDef",
|
|
212
|
+
"GlobalTableWitnessDescriptionTypeDef",
|
|
213
|
+
"GlobalTableWitnessGroupUpdateTypeDef",
|
|
209
214
|
"ImportSummaryTypeDef",
|
|
210
215
|
"ImportTableDescriptionTypeDef",
|
|
211
216
|
"ImportTableInputTypeDef",
|
|
@@ -515,6 +520,12 @@ ReplicaTypeDef = TypedDict(
|
|
|
515
520
|
"RegionName": NotRequired[str],
|
|
516
521
|
},
|
|
517
522
|
)
|
|
523
|
+
CreateGlobalTableWitnessGroupMemberActionTypeDef = TypedDict(
|
|
524
|
+
"CreateGlobalTableWitnessGroupMemberActionTypeDef",
|
|
525
|
+
{
|
|
526
|
+
"RegionName": str,
|
|
527
|
+
},
|
|
528
|
+
)
|
|
518
529
|
CreateReplicaActionTypeDef = TypedDict(
|
|
519
530
|
"CreateReplicaActionTypeDef",
|
|
520
531
|
{
|
|
@@ -565,6 +576,12 @@ class DeleteGlobalSecondaryIndexActionTypeDef(TypedDict):
|
|
|
565
576
|
IndexName: str
|
|
566
577
|
|
|
567
578
|
|
|
579
|
+
DeleteGlobalTableWitnessGroupMemberActionTypeDef = TypedDict(
|
|
580
|
+
"DeleteGlobalTableWitnessGroupMemberActionTypeDef",
|
|
581
|
+
{
|
|
582
|
+
"RegionName": str,
|
|
583
|
+
},
|
|
584
|
+
)
|
|
568
585
|
DeleteReplicaActionTypeDef = TypedDict(
|
|
569
586
|
"DeleteReplicaActionTypeDef",
|
|
570
587
|
{
|
|
@@ -702,6 +719,15 @@ class ProvisionedThroughputDescriptionTypeDef(TypedDict):
|
|
|
702
719
|
WriteCapacityUnits: NotRequired[int]
|
|
703
720
|
|
|
704
721
|
|
|
722
|
+
GlobalTableWitnessDescriptionTypeDef = TypedDict(
|
|
723
|
+
"GlobalTableWitnessDescriptionTypeDef",
|
|
724
|
+
{
|
|
725
|
+
"RegionName": NotRequired[str],
|
|
726
|
+
"WitnessStatus": NotRequired[WitnessStatusType],
|
|
727
|
+
},
|
|
728
|
+
)
|
|
729
|
+
|
|
730
|
+
|
|
705
731
|
class S3BucketSourceTypeDef(TypedDict):
|
|
706
732
|
S3Bucket: str
|
|
707
733
|
S3BucketOwner: NotRequired[str]
|
|
@@ -1078,6 +1104,11 @@ class InputFormatOptionsTypeDef(TypedDict):
|
|
|
1078
1104
|
Csv: NotRequired[CsvOptionsTypeDef]
|
|
1079
1105
|
|
|
1080
1106
|
|
|
1107
|
+
class GlobalTableWitnessGroupUpdateTypeDef(TypedDict):
|
|
1108
|
+
Create: NotRequired[CreateGlobalTableWitnessGroupMemberActionTypeDef]
|
|
1109
|
+
Delete: NotRequired[DeleteGlobalTableWitnessGroupMemberActionTypeDef]
|
|
1110
|
+
|
|
1111
|
+
|
|
1081
1112
|
class ReplicaUpdateTypeDef(TypedDict):
|
|
1082
1113
|
Create: NotRequired[CreateReplicaActionTypeDef]
|
|
1083
1114
|
Delete: NotRequired[DeleteReplicaActionTypeDef]
|
|
@@ -2054,6 +2085,7 @@ class TableDescriptionTypeDef(TypedDict):
|
|
|
2054
2085
|
LatestStreamArn: NotRequired[str]
|
|
2055
2086
|
GlobalTableVersion: NotRequired[str]
|
|
2056
2087
|
Replicas: NotRequired[List[ReplicaDescriptionTypeDef]]
|
|
2088
|
+
GlobalTableWitnesses: NotRequired[List[GlobalTableWitnessDescriptionTypeDef]]
|
|
2057
2089
|
RestoreSummary: NotRequired[RestoreSummaryTypeDef]
|
|
2058
2090
|
SSEDescription: NotRequired[SSEDescriptionTypeDef]
|
|
2059
2091
|
ArchivalSummary: NotRequired[ArchivalSummaryTypeDef]
|
|
@@ -2279,6 +2311,7 @@ class UpdateTableInputTableUpdateTypeDef(TypedDict):
|
|
|
2279
2311
|
TableClass: NotRequired[TableClassType]
|
|
2280
2312
|
DeletionProtectionEnabled: NotRequired[bool]
|
|
2281
2313
|
MultiRegionConsistency: NotRequired[MultiRegionConsistencyType]
|
|
2314
|
+
GlobalTableWitnessUpdates: NotRequired[Sequence[GlobalTableWitnessGroupUpdateTypeDef]]
|
|
2282
2315
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2283
2316
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2284
2317
|
|
|
@@ -2295,6 +2328,7 @@ class UpdateTableInputTypeDef(TypedDict):
|
|
|
2295
2328
|
TableClass: NotRequired[TableClassType]
|
|
2296
2329
|
DeletionProtectionEnabled: NotRequired[bool]
|
|
2297
2330
|
MultiRegionConsistency: NotRequired[MultiRegionConsistencyType]
|
|
2331
|
+
GlobalTableWitnessUpdates: NotRequired[Sequence[GlobalTableWitnessGroupUpdateTypeDef]]
|
|
2298
2332
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2299
2333
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2300
2334
|
|
|
@@ -64,6 +64,7 @@ from .literals import (
|
|
|
64
64
|
TableClassType,
|
|
65
65
|
TableStatusType,
|
|
66
66
|
TimeToLiveStatusType,
|
|
67
|
+
WitnessStatusType,
|
|
67
68
|
)
|
|
68
69
|
|
|
69
70
|
if sys.version_info >= (3, 9):
|
|
@@ -120,6 +121,7 @@ __all__ = (
|
|
|
120
121
|
"CreateGlobalSecondaryIndexActionTypeDef",
|
|
121
122
|
"CreateGlobalTableInputTypeDef",
|
|
122
123
|
"CreateGlobalTableOutputTypeDef",
|
|
124
|
+
"CreateGlobalTableWitnessGroupMemberActionTypeDef",
|
|
123
125
|
"CreateReplicaActionTypeDef",
|
|
124
126
|
"CreateReplicationGroupMemberActionTypeDef",
|
|
125
127
|
"CreateTableInputServiceResourceCreateTableTypeDef",
|
|
@@ -130,6 +132,7 @@ __all__ = (
|
|
|
130
132
|
"DeleteBackupInputTypeDef",
|
|
131
133
|
"DeleteBackupOutputTypeDef",
|
|
132
134
|
"DeleteGlobalSecondaryIndexActionTypeDef",
|
|
135
|
+
"DeleteGlobalTableWitnessGroupMemberActionTypeDef",
|
|
133
136
|
"DeleteItemInputTableDeleteItemTypeDef",
|
|
134
137
|
"DeleteItemInputTypeDef",
|
|
135
138
|
"DeleteItemOutputTableTypeDef",
|
|
@@ -205,6 +208,8 @@ __all__ = (
|
|
|
205
208
|
"GlobalTableDescriptionTypeDef",
|
|
206
209
|
"GlobalTableGlobalSecondaryIndexSettingsUpdateTypeDef",
|
|
207
210
|
"GlobalTableTypeDef",
|
|
211
|
+
"GlobalTableWitnessDescriptionTypeDef",
|
|
212
|
+
"GlobalTableWitnessGroupUpdateTypeDef",
|
|
208
213
|
"ImportSummaryTypeDef",
|
|
209
214
|
"ImportTableDescriptionTypeDef",
|
|
210
215
|
"ImportTableInputTypeDef",
|
|
@@ -494,6 +499,12 @@ ReplicaTypeDef = TypedDict(
|
|
|
494
499
|
"RegionName": NotRequired[str],
|
|
495
500
|
},
|
|
496
501
|
)
|
|
502
|
+
CreateGlobalTableWitnessGroupMemberActionTypeDef = TypedDict(
|
|
503
|
+
"CreateGlobalTableWitnessGroupMemberActionTypeDef",
|
|
504
|
+
{
|
|
505
|
+
"RegionName": str,
|
|
506
|
+
},
|
|
507
|
+
)
|
|
497
508
|
CreateReplicaActionTypeDef = TypedDict(
|
|
498
509
|
"CreateReplicaActionTypeDef",
|
|
499
510
|
{
|
|
@@ -534,6 +545,12 @@ class DeleteBackupInputTypeDef(TypedDict):
|
|
|
534
545
|
class DeleteGlobalSecondaryIndexActionTypeDef(TypedDict):
|
|
535
546
|
IndexName: str
|
|
536
547
|
|
|
548
|
+
DeleteGlobalTableWitnessGroupMemberActionTypeDef = TypedDict(
|
|
549
|
+
"DeleteGlobalTableWitnessGroupMemberActionTypeDef",
|
|
550
|
+
{
|
|
551
|
+
"RegionName": str,
|
|
552
|
+
},
|
|
553
|
+
)
|
|
537
554
|
DeleteReplicaActionTypeDef = TypedDict(
|
|
538
555
|
"DeleteReplicaActionTypeDef",
|
|
539
556
|
{
|
|
@@ -644,6 +661,14 @@ class ProvisionedThroughputDescriptionTypeDef(TypedDict):
|
|
|
644
661
|
ReadCapacityUnits: NotRequired[int]
|
|
645
662
|
WriteCapacityUnits: NotRequired[int]
|
|
646
663
|
|
|
664
|
+
GlobalTableWitnessDescriptionTypeDef = TypedDict(
|
|
665
|
+
"GlobalTableWitnessDescriptionTypeDef",
|
|
666
|
+
{
|
|
667
|
+
"RegionName": NotRequired[str],
|
|
668
|
+
"WitnessStatus": NotRequired[WitnessStatusType],
|
|
669
|
+
},
|
|
670
|
+
)
|
|
671
|
+
|
|
647
672
|
class S3BucketSourceTypeDef(TypedDict):
|
|
648
673
|
S3Bucket: str
|
|
649
674
|
S3BucketOwner: NotRequired[str]
|
|
@@ -958,6 +983,10 @@ class InputFormatOptionsOutputTypeDef(TypedDict):
|
|
|
958
983
|
class InputFormatOptionsTypeDef(TypedDict):
|
|
959
984
|
Csv: NotRequired[CsvOptionsTypeDef]
|
|
960
985
|
|
|
986
|
+
class GlobalTableWitnessGroupUpdateTypeDef(TypedDict):
|
|
987
|
+
Create: NotRequired[CreateGlobalTableWitnessGroupMemberActionTypeDef]
|
|
988
|
+
Delete: NotRequired[DeleteGlobalTableWitnessGroupMemberActionTypeDef]
|
|
989
|
+
|
|
961
990
|
class ReplicaUpdateTypeDef(TypedDict):
|
|
962
991
|
Create: NotRequired[CreateReplicaActionTypeDef]
|
|
963
992
|
Delete: NotRequired[DeleteReplicaActionTypeDef]
|
|
@@ -1816,6 +1845,7 @@ class TableDescriptionTypeDef(TypedDict):
|
|
|
1816
1845
|
LatestStreamArn: NotRequired[str]
|
|
1817
1846
|
GlobalTableVersion: NotRequired[str]
|
|
1818
1847
|
Replicas: NotRequired[List[ReplicaDescriptionTypeDef]]
|
|
1848
|
+
GlobalTableWitnesses: NotRequired[List[GlobalTableWitnessDescriptionTypeDef]]
|
|
1819
1849
|
RestoreSummary: NotRequired[RestoreSummaryTypeDef]
|
|
1820
1850
|
SSEDescription: NotRequired[SSEDescriptionTypeDef]
|
|
1821
1851
|
ArchivalSummary: NotRequired[ArchivalSummaryTypeDef]
|
|
@@ -2017,6 +2047,7 @@ class UpdateTableInputTableUpdateTypeDef(TypedDict):
|
|
|
2017
2047
|
TableClass: NotRequired[TableClassType]
|
|
2018
2048
|
DeletionProtectionEnabled: NotRequired[bool]
|
|
2019
2049
|
MultiRegionConsistency: NotRequired[MultiRegionConsistencyType]
|
|
2050
|
+
GlobalTableWitnessUpdates: NotRequired[Sequence[GlobalTableWitnessGroupUpdateTypeDef]]
|
|
2020
2051
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2021
2052
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2022
2053
|
|
|
@@ -2032,6 +2063,7 @@ class UpdateTableInputTypeDef(TypedDict):
|
|
|
2032
2063
|
TableClass: NotRequired[TableClassType]
|
|
2033
2064
|
DeletionProtectionEnabled: NotRequired[bool]
|
|
2034
2065
|
MultiRegionConsistency: NotRequired[MultiRegionConsistencyType]
|
|
2066
|
+
GlobalTableWitnessUpdates: NotRequired[Sequence[GlobalTableWitnessGroupUpdateTypeDef]]
|
|
2035
2067
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2036
2068
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2037
2069
|
|
mypy_boto3_dynamodb/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-dynamodb
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 DynamoDB 1.
|
|
3
|
+
Version: 1.40.0
|
|
4
|
+
Summary: Type annotations for boto3 DynamoDB 1.40.0 service generated with mypy-boto3-builder 8.11.0
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|
|
|
57
57
|

|
|
58
58
|
|
|
59
|
-
Type annotations for [boto3 DynamoDB 1.
|
|
59
|
+
Type annotations for [boto3 DynamoDB 1.40.0](https://pypi.org/project/boto3/)
|
|
60
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -65,7 +65,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
65
65
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
66
66
|
|
|
67
67
|
Generated with
|
|
68
|
-
[mypy-boto3-builder 8.
|
|
68
|
+
[mypy-boto3-builder 8.11.0](https://github.com/youtype/mypy_boto3_builder).
|
|
69
69
|
|
|
70
70
|
More information can be found on
|
|
71
71
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -123,7 +123,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
123
123
|
isolation.
|
|
124
124
|
|
|
125
125
|
1. Run mypy-boto3-builder in your package root directory:
|
|
126
|
-
`uvx --with 'boto3==1.
|
|
126
|
+
`uvx --with 'boto3==1.40.0' mypy-boto3-builder`
|
|
127
127
|
2. Select `boto3-stubs` AWS SDK.
|
|
128
128
|
3. Add `DynamoDB` service.
|
|
129
129
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
mypy_boto3_dynamodb/__init__.py,sha256=RtWLr5qHbk9BDBzkz4SQ4olA-twsDIcWdSPYar5JGCM,2090
|
|
2
|
+
mypy_boto3_dynamodb/__init__.pyi,sha256=g7AAZHZ2jejV34Cf-vht4Iz_YVHPjlQNfeiptjrAFB4,2087
|
|
3
|
+
mypy_boto3_dynamodb/__main__.py,sha256=OmYCCUhIHmiKTGOe9ADoIS3G3fTMOOf9ePfZCUDyID0,985
|
|
4
|
+
mypy_boto3_dynamodb/client.py,sha256=jYVQsaUQ9RhNYjHxpVnWTBZa5f4pAMLEgZFfAkwS8sw,42687
|
|
5
|
+
mypy_boto3_dynamodb/client.pyi,sha256=GhT9kU_hxp7dOT2bmki1mG7fLsqscEPi2T_3usJJ0ow,42684
|
|
6
|
+
mypy_boto3_dynamodb/literals.py,sha256=D9TyrokCMgQEArcghZYPoZRfT8-3vRsoKICRcHImsVg,15032
|
|
7
|
+
mypy_boto3_dynamodb/literals.pyi,sha256=m0l-pIwa8V3GgRyCwHCF82NLAmz8Nkdy3HbtaFLVOFc,15030
|
|
8
|
+
mypy_boto3_dynamodb/paginator.py,sha256=wuU1KYjaAximTUXHtfrHMKeVdgtC7Wuro8wmfUcWCrs,6929
|
|
9
|
+
mypy_boto3_dynamodb/paginator.pyi,sha256=eQf1IutnaUroIW-LxJYHKEc0sr8l7ulkXagsNGQMgh4,6913
|
|
10
|
+
mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_dynamodb/service_resource.py,sha256=8l7dqepvxUzFyhtQ_T0C80aw0SHZTffxxAuuyUJZ59I,17346
|
|
12
|
+
mypy_boto3_dynamodb/service_resource.pyi,sha256=7X3eINPnu-Y5VICooqJBs_rjfQh6meLJqw6Oxk7-Z0o,17339
|
|
13
|
+
mypy_boto3_dynamodb/type_defs.py,sha256=K1L3-GHBdI_k78TNxaLJNysxfjwFGpJbbAwrUpoujVk,86347
|
|
14
|
+
mypy_boto3_dynamodb/type_defs.pyi,sha256=9FusHrgiut0TU7ZD9XC_aM__3UxVlKio5Jy1SbJ1MX4,86067
|
|
15
|
+
mypy_boto3_dynamodb/version.py,sha256=52Sk0XpA8tC09WfcAI6nm69vLa0ysg1C33ACO_NFSwc,92
|
|
16
|
+
mypy_boto3_dynamodb/waiter.py,sha256=7FIuQ_7AG60CPUrBwavSVzLkAEAvP4slPOOqVNmxIYE,2635
|
|
17
|
+
mypy_boto3_dynamodb/waiter.pyi,sha256=13JrmDc8WtWAQ1yOd82vd_nu4B2q6hRj1yex7Fiar1k,2630
|
|
18
|
+
mypy_boto3_dynamodb-1.40.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
19
|
+
mypy_boto3_dynamodb-1.40.0.dist-info/METADATA,sha256=zTeCqIzMNHYbbK7ijCE0_4GSw6sSKw824fxr3piqHfQ,18385
|
|
20
|
+
mypy_boto3_dynamodb-1.40.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
21
|
+
mypy_boto3_dynamodb-1.40.0.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
|
|
22
|
+
mypy_boto3_dynamodb-1.40.0.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
mypy_boto3_dynamodb/__init__.py,sha256=RtWLr5qHbk9BDBzkz4SQ4olA-twsDIcWdSPYar5JGCM,2090
|
|
2
|
-
mypy_boto3_dynamodb/__init__.pyi,sha256=g7AAZHZ2jejV34Cf-vht4Iz_YVHPjlQNfeiptjrAFB4,2087
|
|
3
|
-
mypy_boto3_dynamodb/__main__.py,sha256=lLAD1bE3p6nHNSOEsDLG3NVO3hzkdtHf_w4Ng6iebSE,985
|
|
4
|
-
mypy_boto3_dynamodb/client.py,sha256=jYVQsaUQ9RhNYjHxpVnWTBZa5f4pAMLEgZFfAkwS8sw,42687
|
|
5
|
-
mypy_boto3_dynamodb/client.pyi,sha256=GhT9kU_hxp7dOT2bmki1mG7fLsqscEPi2T_3usJJ0ow,42684
|
|
6
|
-
mypy_boto3_dynamodb/literals.py,sha256=aNzBZQjCfdZvZAeTTVabpgDsonKXfNConUdXkzwa8O0,14672
|
|
7
|
-
mypy_boto3_dynamodb/literals.pyi,sha256=h60dpZGQm8R5hQCcvpCOXTWZzIoMSfvaduGglQ9Tm-g,14670
|
|
8
|
-
mypy_boto3_dynamodb/paginator.py,sha256=wuU1KYjaAximTUXHtfrHMKeVdgtC7Wuro8wmfUcWCrs,6929
|
|
9
|
-
mypy_boto3_dynamodb/paginator.pyi,sha256=eQf1IutnaUroIW-LxJYHKEc0sr8l7ulkXagsNGQMgh4,6913
|
|
10
|
-
mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_dynamodb/service_resource.py,sha256=A9FZR-ihwidUgb4k3SvCWbJkmCmBGMf6uNgBaSg49E4,17233
|
|
12
|
-
mypy_boto3_dynamodb/service_resource.pyi,sha256=k3ENbKZOLIBejZj4c5YhHyGozmdmULi0zST7b8awVgc,17226
|
|
13
|
-
mypy_boto3_dynamodb/type_defs.py,sha256=dtMjCO5FV05v8wySpcVfeW0cIziyx0n3fiy8YVpBfv0,85127
|
|
14
|
-
mypy_boto3_dynamodb/type_defs.pyi,sha256=y_DToSE8qx7StIiLVzJ03HuZWVPkEhiv8vzDdjeZyxQ,84849
|
|
15
|
-
mypy_boto3_dynamodb/version.py,sha256=n4d-8A8iSyUVsP3sR-JoN8xiB6BIgNe_9_9KMBHcQGE,92
|
|
16
|
-
mypy_boto3_dynamodb/waiter.py,sha256=7FIuQ_7AG60CPUrBwavSVzLkAEAvP4slPOOqVNmxIYE,2635
|
|
17
|
-
mypy_boto3_dynamodb/waiter.pyi,sha256=13JrmDc8WtWAQ1yOd82vd_nu4B2q6hRj1yex7Fiar1k,2630
|
|
18
|
-
mypy_boto3_dynamodb-1.38.4.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
19
|
-
mypy_boto3_dynamodb-1.38.4.dist-info/METADATA,sha256=PeybiMQ3lVUlM7S3u1MoaoXpdq76PP6I_P0CCX4xTmM,18385
|
|
20
|
-
mypy_boto3_dynamodb-1.38.4.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
|
|
21
|
-
mypy_boto3_dynamodb-1.38.4.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
|
|
22
|
-
mypy_boto3_dynamodb-1.38.4.dist-info/RECORD,,
|
{mypy_boto3_dynamodb-1.38.4.dist-info → mypy_boto3_dynamodb-1.40.0.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|