mypy-boto3-dynamodb 1.26.152__py3-none-any.whl → 1.26.164__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 +2 -2
- mypy_boto3_dynamodb/client.py +9 -4
- mypy_boto3_dynamodb/client.pyi +9 -4
- mypy_boto3_dynamodb/literals.py +3 -0
- mypy_boto3_dynamodb/literals.pyi +3 -0
- mypy_boto3_dynamodb/paginator.py +5 -5
- mypy_boto3_dynamodb/paginator.pyi +5 -5
- mypy_boto3_dynamodb/service_resource.py +7 -3
- mypy_boto3_dynamodb/service_resource.pyi +7 -3
- mypy_boto3_dynamodb/type_defs.py +421 -411
- mypy_boto3_dynamodb/type_defs.pyi +424 -414
- mypy_boto3_dynamodb/version.py +1 -1
- {mypy_boto3_dynamodb-1.26.152.dist-info → mypy_boto3_dynamodb-1.26.164.dist-info}/METADATA +26 -26
- mypy_boto3_dynamodb-1.26.164.dist-info/RECORD +22 -0
- mypy_boto3_dynamodb-1.26.152.dist-info/RECORD +0 -22
- {mypy_boto3_dynamodb-1.26.152.dist-info → mypy_boto3_dynamodb-1.26.164.dist-info}/LICENSE +0 -0
- {mypy_boto3_dynamodb-1.26.152.dist-info → mypy_boto3_dynamodb-1.26.164.dist-info}/WHEEL +0 -0
- {mypy_boto3_dynamodb-1.26.152.dist-info → mypy_boto3_dynamodb-1.26.164.dist-info}/top_level.txt +0 -0
|
@@ -6,9 +6,9 @@ Type annotations for dynamodb service type definitions.
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
8
8
|
```python
|
|
9
|
-
from mypy_boto3_dynamodb.type_defs import
|
|
9
|
+
from mypy_boto3_dynamodb.type_defs import ResponseMetadataTypeDef
|
|
10
10
|
|
|
11
|
-
data:
|
|
11
|
+
data: ResponseMetadataTypeDef = {...}
|
|
12
12
|
```
|
|
13
13
|
"""
|
|
14
14
|
import sys
|
|
@@ -63,7 +63,7 @@ else:
|
|
|
63
63
|
from typing_extensions import TypedDict
|
|
64
64
|
|
|
65
65
|
__all__ = (
|
|
66
|
-
"
|
|
66
|
+
"ResponseMetadataTypeDef",
|
|
67
67
|
"ArchivalSummaryTableTypeDef",
|
|
68
68
|
"ArchivalSummaryTypeDef",
|
|
69
69
|
"AttributeDefinitionServiceResourceTypeDef",
|
|
@@ -77,9 +77,7 @@ __all__ = (
|
|
|
77
77
|
"BackupSummaryTableTypeDef",
|
|
78
78
|
"BackupSummaryTypeDef",
|
|
79
79
|
"KeysAndAttributesServiceResourceTypeDef",
|
|
80
|
-
"BatchStatementErrorTypeDef",
|
|
81
80
|
"ItemCollectionMetricsServiceResourceTypeDef",
|
|
82
|
-
"BillingModeSummaryResponseMetadataTypeDef",
|
|
83
81
|
"BillingModeSummaryTableTypeDef",
|
|
84
82
|
"BillingModeSummaryTypeDef",
|
|
85
83
|
"CapacityServiceResourceTypeDef",
|
|
@@ -130,13 +128,11 @@ __all__ = (
|
|
|
130
128
|
"DescribeImportInputRequestTypeDef",
|
|
131
129
|
"DescribeKinesisStreamingDestinationInputRequestTypeDef",
|
|
132
130
|
"KinesisDataStreamDestinationTypeDef",
|
|
133
|
-
"DescribeLimitsOutputTypeDef",
|
|
134
131
|
"DescribeTableInputRequestTypeDef",
|
|
135
132
|
"WaiterConfigTypeDef",
|
|
136
133
|
"DescribeTableReplicaAutoScalingInputRequestTypeDef",
|
|
137
134
|
"DescribeTimeToLiveInputRequestTypeDef",
|
|
138
135
|
"TimeToLiveDescriptionTypeDef",
|
|
139
|
-
"EmptyResponseMetadataTypeDef",
|
|
140
136
|
"ExportSummaryTypeDef",
|
|
141
137
|
"ExportTableToPointInTimeInputRequestTypeDef",
|
|
142
138
|
"GetItemInputTableGetItemTypeDef",
|
|
@@ -145,43 +141,44 @@ __all__ = (
|
|
|
145
141
|
"ProjectionServiceResourceTypeDef",
|
|
146
142
|
"S3BucketSourceTypeDef",
|
|
147
143
|
"KinesisStreamingDestinationInputRequestTypeDef",
|
|
148
|
-
"
|
|
149
|
-
"ListBackupsInputListBackupsPaginateTypeDef",
|
|
144
|
+
"PaginatorConfigTypeDef",
|
|
150
145
|
"ListBackupsInputRequestTypeDef",
|
|
151
146
|
"ListContributorInsightsInputRequestTypeDef",
|
|
152
147
|
"ListExportsInputRequestTypeDef",
|
|
153
148
|
"ListGlobalTablesInputRequestTypeDef",
|
|
154
149
|
"ListImportsInputRequestTypeDef",
|
|
155
|
-
"ListTablesInputListTablesPaginateTypeDef",
|
|
156
150
|
"ListTablesInputRequestTypeDef",
|
|
157
|
-
"ListTablesOutputTableTypeDef",
|
|
158
|
-
"ListTablesOutputTypeDef",
|
|
159
|
-
"ListTagsOfResourceInputListTagsOfResourcePaginateTypeDef",
|
|
160
151
|
"ListTagsOfResourceInputRequestTypeDef",
|
|
161
152
|
"TagTableTypeDef",
|
|
162
|
-
"PaginatorConfigTypeDef",
|
|
163
153
|
"PointInTimeRecoverySpecificationTypeDef",
|
|
164
|
-
"ProvisionedThroughputDescriptionResponseMetadataTypeDef",
|
|
165
154
|
"PutRequestServiceResourceTypeDef",
|
|
166
155
|
"TableClassSummaryTableTypeDef",
|
|
167
156
|
"TableClassSummaryTypeDef",
|
|
168
|
-
"ResponseMetadataTypeDef",
|
|
169
|
-
"RestoreSummaryResponseMetadataTypeDef",
|
|
170
157
|
"RestoreSummaryTableTypeDef",
|
|
171
158
|
"RestoreSummaryTypeDef",
|
|
172
|
-
"SSEDescriptionResponseMetadataTypeDef",
|
|
173
159
|
"SSEDescriptionTableTypeDef",
|
|
174
160
|
"SSEDescriptionTypeDef",
|
|
175
161
|
"SSESpecificationTableTypeDef",
|
|
176
|
-
"StreamSpecificationResponseMetadataTypeDef",
|
|
177
162
|
"StreamSpecificationTableTypeDef",
|
|
178
163
|
"TableBatchWriterRequestTypeDef",
|
|
179
|
-
"TableClassSummaryResponseMetadataTypeDef",
|
|
180
164
|
"TimeToLiveSpecificationTypeDef",
|
|
181
165
|
"UntagResourceInputRequestTypeDef",
|
|
182
166
|
"UpdateContributorInsightsInputRequestTypeDef",
|
|
167
|
+
"ArchivalSummaryResponseMetadataTypeDef",
|
|
168
|
+
"BillingModeSummaryResponseMetadataTypeDef",
|
|
169
|
+
"DescribeLimitsOutputTypeDef",
|
|
170
|
+
"EmptyResponseMetadataTypeDef",
|
|
171
|
+
"KinesisStreamingDestinationOutputTypeDef",
|
|
172
|
+
"ListTablesOutputTableTypeDef",
|
|
173
|
+
"ListTablesOutputTypeDef",
|
|
174
|
+
"ProvisionedThroughputDescriptionResponseMetadataTypeDef",
|
|
175
|
+
"RestoreSummaryResponseMetadataTypeDef",
|
|
176
|
+
"SSEDescriptionResponseMetadataTypeDef",
|
|
177
|
+
"StreamSpecificationResponseMetadataTypeDef",
|
|
178
|
+
"TableClassSummaryResponseMetadataTypeDef",
|
|
183
179
|
"UpdateContributorInsightsOutputTypeDef",
|
|
184
180
|
"AttributeValueUpdateTypeDef",
|
|
181
|
+
"BatchStatementErrorTypeDef",
|
|
185
182
|
"BatchStatementRequestTypeDef",
|
|
186
183
|
"ConditionCheckTypeDef",
|
|
187
184
|
"ConditionTypeDef",
|
|
@@ -204,13 +201,10 @@ __all__ = (
|
|
|
204
201
|
"ListBackupsOutputTableTypeDef",
|
|
205
202
|
"ListBackupsOutputTypeDef",
|
|
206
203
|
"BatchGetItemInputServiceResourceBatchGetItemTypeDef",
|
|
207
|
-
"BatchStatementResponseTypeDef",
|
|
208
204
|
"ConsumedCapacityServiceResourceTypeDef",
|
|
209
205
|
"ConsumedCapacityTableTypeDef",
|
|
210
206
|
"ConsumedCapacityTypeDef",
|
|
211
|
-
"QueryInputQueryPaginateTypeDef",
|
|
212
207
|
"QueryInputTableQueryTypeDef",
|
|
213
|
-
"ScanInputScanPaginateTypeDef",
|
|
214
208
|
"ScanInputTableScanTypeDef",
|
|
215
209
|
"ContinuousBackupsDescriptionTypeDef",
|
|
216
210
|
"ListContributorInsightsOutputTypeDef",
|
|
@@ -252,11 +246,17 @@ __all__ = (
|
|
|
252
246
|
"GlobalSecondaryIndexServiceResourceTypeDef",
|
|
253
247
|
"LocalSecondaryIndexServiceResourceTypeDef",
|
|
254
248
|
"ImportSummaryTypeDef",
|
|
249
|
+
"ListBackupsInputListBackupsPaginateTypeDef",
|
|
250
|
+
"ListTablesInputListTablesPaginateTypeDef",
|
|
251
|
+
"ListTagsOfResourceInputListTagsOfResourcePaginateTypeDef",
|
|
252
|
+
"QueryInputQueryPaginateTypeDef",
|
|
253
|
+
"ScanInputScanPaginateTypeDef",
|
|
255
254
|
"ListTagsOfResourceOutputTableTypeDef",
|
|
256
255
|
"UpdateContinuousBackupsInputRequestTypeDef",
|
|
257
256
|
"WriteRequestServiceResourceTypeDef",
|
|
258
257
|
"UpdateTimeToLiveInputRequestTypeDef",
|
|
259
258
|
"UpdateTimeToLiveOutputTypeDef",
|
|
259
|
+
"BatchStatementResponseTypeDef",
|
|
260
260
|
"BatchExecuteStatementInputRequestTypeDef",
|
|
261
261
|
"QueryInputRequestTypeDef",
|
|
262
262
|
"ScanInputRequestTypeDef",
|
|
@@ -277,7 +277,6 @@ __all__ = (
|
|
|
277
277
|
"QueryOutputTableTypeDef",
|
|
278
278
|
"ScanOutputTableTypeDef",
|
|
279
279
|
"UpdateItemOutputTableTypeDef",
|
|
280
|
-
"BatchExecuteStatementOutputTypeDef",
|
|
281
280
|
"BatchGetItemOutputTypeDef",
|
|
282
281
|
"DeleteItemOutputTypeDef",
|
|
283
282
|
"ExecuteStatementOutputTypeDef",
|
|
@@ -310,6 +309,7 @@ __all__ = (
|
|
|
310
309
|
"ListImportsOutputTypeDef",
|
|
311
310
|
"BatchWriteItemInputServiceResourceBatchWriteItemTypeDef",
|
|
312
311
|
"BatchWriteItemOutputServiceResourceTypeDef",
|
|
312
|
+
"BatchExecuteStatementOutputTypeDef",
|
|
313
313
|
"TransactGetItemsInputRequestTypeDef",
|
|
314
314
|
"BatchWriteItemInputRequestTypeDef",
|
|
315
315
|
"BatchWriteItemOutputTypeDef",
|
|
@@ -357,13 +357,14 @@ __all__ = (
|
|
|
357
357
|
"UpdateTableReplicaAutoScalingOutputTypeDef",
|
|
358
358
|
)
|
|
359
359
|
|
|
360
|
-
|
|
361
|
-
"
|
|
360
|
+
ResponseMetadataTypeDef = TypedDict(
|
|
361
|
+
"ResponseMetadataTypeDef",
|
|
362
362
|
{
|
|
363
|
-
"
|
|
364
|
-
"
|
|
365
|
-
"
|
|
366
|
-
"
|
|
363
|
+
"RequestId": str,
|
|
364
|
+
"HostId": str,
|
|
365
|
+
"HTTPStatusCode": int,
|
|
366
|
+
"HTTPHeaders": Dict[str, str],
|
|
367
|
+
"RetryAttempts": int,
|
|
367
368
|
},
|
|
368
369
|
)
|
|
369
370
|
|
|
@@ -595,15 +596,6 @@ class KeysAndAttributesServiceResourceTypeDef(
|
|
|
595
596
|
):
|
|
596
597
|
pass
|
|
597
598
|
|
|
598
|
-
BatchStatementErrorTypeDef = TypedDict(
|
|
599
|
-
"BatchStatementErrorTypeDef",
|
|
600
|
-
{
|
|
601
|
-
"Code": BatchStatementErrorCodeEnumType,
|
|
602
|
-
"Message": str,
|
|
603
|
-
},
|
|
604
|
-
total=False,
|
|
605
|
-
)
|
|
606
|
-
|
|
607
599
|
ItemCollectionMetricsServiceResourceTypeDef = TypedDict(
|
|
608
600
|
"ItemCollectionMetricsServiceResourceTypeDef",
|
|
609
601
|
{
|
|
@@ -631,15 +623,6 @@ ItemCollectionMetricsServiceResourceTypeDef = TypedDict(
|
|
|
631
623
|
total=False,
|
|
632
624
|
)
|
|
633
625
|
|
|
634
|
-
BillingModeSummaryResponseMetadataTypeDef = TypedDict(
|
|
635
|
-
"BillingModeSummaryResponseMetadataTypeDef",
|
|
636
|
-
{
|
|
637
|
-
"BillingMode": BillingModeType,
|
|
638
|
-
"LastUpdateToPayPerRequestDateTime": datetime,
|
|
639
|
-
"ResponseMetadata": "ResponseMetadataTypeDef",
|
|
640
|
-
},
|
|
641
|
-
)
|
|
642
|
-
|
|
643
626
|
BillingModeSummaryTableTypeDef = TypedDict(
|
|
644
627
|
"BillingModeSummaryTableTypeDef",
|
|
645
628
|
{
|
|
@@ -1197,17 +1180,6 @@ KinesisDataStreamDestinationTypeDef = TypedDict(
|
|
|
1197
1180
|
total=False,
|
|
1198
1181
|
)
|
|
1199
1182
|
|
|
1200
|
-
DescribeLimitsOutputTypeDef = TypedDict(
|
|
1201
|
-
"DescribeLimitsOutputTypeDef",
|
|
1202
|
-
{
|
|
1203
|
-
"AccountMaxReadCapacityUnits": int,
|
|
1204
|
-
"AccountMaxWriteCapacityUnits": int,
|
|
1205
|
-
"TableMaxReadCapacityUnits": int,
|
|
1206
|
-
"TableMaxWriteCapacityUnits": int,
|
|
1207
|
-
"ResponseMetadata": "ResponseMetadataTypeDef",
|
|
1208
|
-
},
|
|
1209
|
-
)
|
|
1210
|
-
|
|
1211
1183
|
DescribeTableInputRequestTypeDef = TypedDict(
|
|
1212
1184
|
"DescribeTableInputRequestTypeDef",
|
|
1213
1185
|
{
|
|
@@ -1247,13 +1219,6 @@ TimeToLiveDescriptionTypeDef = TypedDict(
|
|
|
1247
1219
|
total=False,
|
|
1248
1220
|
)
|
|
1249
1221
|
|
|
1250
|
-
EmptyResponseMetadataTypeDef = TypedDict(
|
|
1251
|
-
"EmptyResponseMetadataTypeDef",
|
|
1252
|
-
{
|
|
1253
|
-
"ResponseMetadata": "ResponseMetadataTypeDef",
|
|
1254
|
-
},
|
|
1255
|
-
)
|
|
1256
|
-
|
|
1257
1222
|
ExportSummaryTypeDef = TypedDict(
|
|
1258
1223
|
"ExportSummaryTypeDef",
|
|
1259
1224
|
{
|
|
@@ -1390,24 +1355,12 @@ KinesisStreamingDestinationInputRequestTypeDef = TypedDict(
|
|
|
1390
1355
|
},
|
|
1391
1356
|
)
|
|
1392
1357
|
|
|
1393
|
-
|
|
1394
|
-
"
|
|
1395
|
-
{
|
|
1396
|
-
"TableName": str,
|
|
1397
|
-
"StreamArn": str,
|
|
1398
|
-
"DestinationStatus": DestinationStatusType,
|
|
1399
|
-
"ResponseMetadata": "ResponseMetadataTypeDef",
|
|
1400
|
-
},
|
|
1401
|
-
)
|
|
1402
|
-
|
|
1403
|
-
ListBackupsInputListBackupsPaginateTypeDef = TypedDict(
|
|
1404
|
-
"ListBackupsInputListBackupsPaginateTypeDef",
|
|
1358
|
+
PaginatorConfigTypeDef = TypedDict(
|
|
1359
|
+
"PaginatorConfigTypeDef",
|
|
1405
1360
|
{
|
|
1406
|
-
"
|
|
1407
|
-
"
|
|
1408
|
-
"
|
|
1409
|
-
"BackupType": BackupTypeFilterType,
|
|
1410
|
-
"PaginationConfig": "PaginatorConfigTypeDef",
|
|
1361
|
+
"MaxItems": int,
|
|
1362
|
+
"PageSize": int,
|
|
1363
|
+
"StartingToken": str,
|
|
1411
1364
|
},
|
|
1412
1365
|
total=False,
|
|
1413
1366
|
)
|
|
@@ -1465,14 +1418,6 @@ ListImportsInputRequestTypeDef = TypedDict(
|
|
|
1465
1418
|
total=False,
|
|
1466
1419
|
)
|
|
1467
1420
|
|
|
1468
|
-
ListTablesInputListTablesPaginateTypeDef = TypedDict(
|
|
1469
|
-
"ListTablesInputListTablesPaginateTypeDef",
|
|
1470
|
-
{
|
|
1471
|
-
"PaginationConfig": "PaginatorConfigTypeDef",
|
|
1472
|
-
},
|
|
1473
|
-
total=False,
|
|
1474
|
-
)
|
|
1475
|
-
|
|
1476
1421
|
ListTablesInputRequestTypeDef = TypedDict(
|
|
1477
1422
|
"ListTablesInputRequestTypeDef",
|
|
1478
1423
|
{
|
|
@@ -1482,44 +1427,6 @@ ListTablesInputRequestTypeDef = TypedDict(
|
|
|
1482
1427
|
total=False,
|
|
1483
1428
|
)
|
|
1484
1429
|
|
|
1485
|
-
ListTablesOutputTableTypeDef = TypedDict(
|
|
1486
|
-
"ListTablesOutputTableTypeDef",
|
|
1487
|
-
{
|
|
1488
|
-
"TableNames": List[str],
|
|
1489
|
-
"LastEvaluatedTableName": str,
|
|
1490
|
-
"ResponseMetadata": "ResponseMetadataTypeDef",
|
|
1491
|
-
},
|
|
1492
|
-
)
|
|
1493
|
-
|
|
1494
|
-
ListTablesOutputTypeDef = TypedDict(
|
|
1495
|
-
"ListTablesOutputTypeDef",
|
|
1496
|
-
{
|
|
1497
|
-
"TableNames": List[str],
|
|
1498
|
-
"LastEvaluatedTableName": str,
|
|
1499
|
-
"ResponseMetadata": "ResponseMetadataTypeDef",
|
|
1500
|
-
},
|
|
1501
|
-
)
|
|
1502
|
-
|
|
1503
|
-
_RequiredListTagsOfResourceInputListTagsOfResourcePaginateTypeDef = TypedDict(
|
|
1504
|
-
"_RequiredListTagsOfResourceInputListTagsOfResourcePaginateTypeDef",
|
|
1505
|
-
{
|
|
1506
|
-
"ResourceArn": str,
|
|
1507
|
-
},
|
|
1508
|
-
)
|
|
1509
|
-
_OptionalListTagsOfResourceInputListTagsOfResourcePaginateTypeDef = TypedDict(
|
|
1510
|
-
"_OptionalListTagsOfResourceInputListTagsOfResourcePaginateTypeDef",
|
|
1511
|
-
{
|
|
1512
|
-
"PaginationConfig": "PaginatorConfigTypeDef",
|
|
1513
|
-
},
|
|
1514
|
-
total=False,
|
|
1515
|
-
)
|
|
1516
|
-
|
|
1517
|
-
class ListTagsOfResourceInputListTagsOfResourcePaginateTypeDef(
|
|
1518
|
-
_RequiredListTagsOfResourceInputListTagsOfResourcePaginateTypeDef,
|
|
1519
|
-
_OptionalListTagsOfResourceInputListTagsOfResourcePaginateTypeDef,
|
|
1520
|
-
):
|
|
1521
|
-
pass
|
|
1522
|
-
|
|
1523
1430
|
_RequiredListTagsOfResourceInputRequestTypeDef = TypedDict(
|
|
1524
1431
|
"_RequiredListTagsOfResourceInputRequestTypeDef",
|
|
1525
1432
|
{
|
|
@@ -1547,16 +1454,6 @@ TagTableTypeDef = TypedDict(
|
|
|
1547
1454
|
},
|
|
1548
1455
|
)
|
|
1549
1456
|
|
|
1550
|
-
PaginatorConfigTypeDef = TypedDict(
|
|
1551
|
-
"PaginatorConfigTypeDef",
|
|
1552
|
-
{
|
|
1553
|
-
"MaxItems": int,
|
|
1554
|
-
"PageSize": int,
|
|
1555
|
-
"StartingToken": str,
|
|
1556
|
-
},
|
|
1557
|
-
total=False,
|
|
1558
|
-
)
|
|
1559
|
-
|
|
1560
1457
|
PointInTimeRecoverySpecificationTypeDef = TypedDict(
|
|
1561
1458
|
"PointInTimeRecoverySpecificationTypeDef",
|
|
1562
1459
|
{
|
|
@@ -1564,18 +1461,6 @@ PointInTimeRecoverySpecificationTypeDef = TypedDict(
|
|
|
1564
1461
|
},
|
|
1565
1462
|
)
|
|
1566
1463
|
|
|
1567
|
-
ProvisionedThroughputDescriptionResponseMetadataTypeDef = TypedDict(
|
|
1568
|
-
"ProvisionedThroughputDescriptionResponseMetadataTypeDef",
|
|
1569
|
-
{
|
|
1570
|
-
"LastIncreaseDateTime": datetime,
|
|
1571
|
-
"LastDecreaseDateTime": datetime,
|
|
1572
|
-
"NumberOfDecreasesToday": int,
|
|
1573
|
-
"ReadCapacityUnits": int,
|
|
1574
|
-
"WriteCapacityUnits": int,
|
|
1575
|
-
"ResponseMetadata": "ResponseMetadataTypeDef",
|
|
1576
|
-
},
|
|
1577
|
-
)
|
|
1578
|
-
|
|
1579
1464
|
PutRequestServiceResourceTypeDef = TypedDict(
|
|
1580
1465
|
"PutRequestServiceResourceTypeDef",
|
|
1581
1466
|
{
|
|
@@ -1619,28 +1504,6 @@ TableClassSummaryTypeDef = TypedDict(
|
|
|
1619
1504
|
total=False,
|
|
1620
1505
|
)
|
|
1621
1506
|
|
|
1622
|
-
ResponseMetadataTypeDef = TypedDict(
|
|
1623
|
-
"ResponseMetadataTypeDef",
|
|
1624
|
-
{
|
|
1625
|
-
"RequestId": str,
|
|
1626
|
-
"HostId": str,
|
|
1627
|
-
"HTTPStatusCode": int,
|
|
1628
|
-
"HTTPHeaders": Dict[str, str],
|
|
1629
|
-
"RetryAttempts": int,
|
|
1630
|
-
},
|
|
1631
|
-
)
|
|
1632
|
-
|
|
1633
|
-
RestoreSummaryResponseMetadataTypeDef = TypedDict(
|
|
1634
|
-
"RestoreSummaryResponseMetadataTypeDef",
|
|
1635
|
-
{
|
|
1636
|
-
"SourceBackupArn": str,
|
|
1637
|
-
"SourceTableArn": str,
|
|
1638
|
-
"RestoreDateTime": datetime,
|
|
1639
|
-
"RestoreInProgress": bool,
|
|
1640
|
-
"ResponseMetadata": "ResponseMetadataTypeDef",
|
|
1641
|
-
},
|
|
1642
|
-
)
|
|
1643
|
-
|
|
1644
1507
|
_RequiredRestoreSummaryTableTypeDef = TypedDict(
|
|
1645
1508
|
"_RequiredRestoreSummaryTableTypeDef",
|
|
1646
1509
|
{
|
|
@@ -1681,17 +1544,6 @@ _OptionalRestoreSummaryTypeDef = TypedDict(
|
|
|
1681
1544
|
class RestoreSummaryTypeDef(_RequiredRestoreSummaryTypeDef, _OptionalRestoreSummaryTypeDef):
|
|
1682
1545
|
pass
|
|
1683
1546
|
|
|
1684
|
-
SSEDescriptionResponseMetadataTypeDef = TypedDict(
|
|
1685
|
-
"SSEDescriptionResponseMetadataTypeDef",
|
|
1686
|
-
{
|
|
1687
|
-
"Status": SSEStatusType,
|
|
1688
|
-
"SSEType": SSETypeType,
|
|
1689
|
-
"KMSMasterKeyArn": str,
|
|
1690
|
-
"InaccessibleEncryptionDateTime": datetime,
|
|
1691
|
-
"ResponseMetadata": "ResponseMetadataTypeDef",
|
|
1692
|
-
},
|
|
1693
|
-
)
|
|
1694
|
-
|
|
1695
1547
|
SSEDescriptionTableTypeDef = TypedDict(
|
|
1696
1548
|
"SSEDescriptionTableTypeDef",
|
|
1697
1549
|
{
|
|
@@ -1724,15 +1576,6 @@ SSESpecificationTableTypeDef = TypedDict(
|
|
|
1724
1576
|
total=False,
|
|
1725
1577
|
)
|
|
1726
1578
|
|
|
1727
|
-
StreamSpecificationResponseMetadataTypeDef = TypedDict(
|
|
1728
|
-
"StreamSpecificationResponseMetadataTypeDef",
|
|
1729
|
-
{
|
|
1730
|
-
"StreamEnabled": bool,
|
|
1731
|
-
"StreamViewType": StreamViewTypeType,
|
|
1732
|
-
"ResponseMetadata": "ResponseMetadataTypeDef",
|
|
1733
|
-
},
|
|
1734
|
-
)
|
|
1735
|
-
|
|
1736
1579
|
_RequiredStreamSpecificationTableTypeDef = TypedDict(
|
|
1737
1580
|
"_RequiredStreamSpecificationTableTypeDef",
|
|
1738
1581
|
{
|
|
@@ -1760,15 +1603,6 @@ TableBatchWriterRequestTypeDef = TypedDict(
|
|
|
1760
1603
|
total=False,
|
|
1761
1604
|
)
|
|
1762
1605
|
|
|
1763
|
-
TableClassSummaryResponseMetadataTypeDef = TypedDict(
|
|
1764
|
-
"TableClassSummaryResponseMetadataTypeDef",
|
|
1765
|
-
{
|
|
1766
|
-
"TableClass": TableClassType,
|
|
1767
|
-
"LastUpdateDateTime": datetime,
|
|
1768
|
-
"ResponseMetadata": "ResponseMetadataTypeDef",
|
|
1769
|
-
},
|
|
1770
|
-
)
|
|
1771
|
-
|
|
1772
1606
|
TimeToLiveSpecificationTypeDef = TypedDict(
|
|
1773
1607
|
"TimeToLiveSpecificationTypeDef",
|
|
1774
1608
|
{
|
|
@@ -1806,13 +1640,130 @@ class UpdateContributorInsightsInputRequestTypeDef(
|
|
|
1806
1640
|
):
|
|
1807
1641
|
pass
|
|
1808
1642
|
|
|
1643
|
+
ArchivalSummaryResponseMetadataTypeDef = TypedDict(
|
|
1644
|
+
"ArchivalSummaryResponseMetadataTypeDef",
|
|
1645
|
+
{
|
|
1646
|
+
"ArchivalDateTime": datetime,
|
|
1647
|
+
"ArchivalReason": str,
|
|
1648
|
+
"ArchivalBackupArn": str,
|
|
1649
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1650
|
+
},
|
|
1651
|
+
)
|
|
1652
|
+
|
|
1653
|
+
BillingModeSummaryResponseMetadataTypeDef = TypedDict(
|
|
1654
|
+
"BillingModeSummaryResponseMetadataTypeDef",
|
|
1655
|
+
{
|
|
1656
|
+
"BillingMode": BillingModeType,
|
|
1657
|
+
"LastUpdateToPayPerRequestDateTime": datetime,
|
|
1658
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1659
|
+
},
|
|
1660
|
+
)
|
|
1661
|
+
|
|
1662
|
+
DescribeLimitsOutputTypeDef = TypedDict(
|
|
1663
|
+
"DescribeLimitsOutputTypeDef",
|
|
1664
|
+
{
|
|
1665
|
+
"AccountMaxReadCapacityUnits": int,
|
|
1666
|
+
"AccountMaxWriteCapacityUnits": int,
|
|
1667
|
+
"TableMaxReadCapacityUnits": int,
|
|
1668
|
+
"TableMaxWriteCapacityUnits": int,
|
|
1669
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1670
|
+
},
|
|
1671
|
+
)
|
|
1672
|
+
|
|
1673
|
+
EmptyResponseMetadataTypeDef = TypedDict(
|
|
1674
|
+
"EmptyResponseMetadataTypeDef",
|
|
1675
|
+
{
|
|
1676
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1677
|
+
},
|
|
1678
|
+
)
|
|
1679
|
+
|
|
1680
|
+
KinesisStreamingDestinationOutputTypeDef = TypedDict(
|
|
1681
|
+
"KinesisStreamingDestinationOutputTypeDef",
|
|
1682
|
+
{
|
|
1683
|
+
"TableName": str,
|
|
1684
|
+
"StreamArn": str,
|
|
1685
|
+
"DestinationStatus": DestinationStatusType,
|
|
1686
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1687
|
+
},
|
|
1688
|
+
)
|
|
1689
|
+
|
|
1690
|
+
ListTablesOutputTableTypeDef = TypedDict(
|
|
1691
|
+
"ListTablesOutputTableTypeDef",
|
|
1692
|
+
{
|
|
1693
|
+
"TableNames": List[str],
|
|
1694
|
+
"LastEvaluatedTableName": str,
|
|
1695
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1696
|
+
},
|
|
1697
|
+
)
|
|
1698
|
+
|
|
1699
|
+
ListTablesOutputTypeDef = TypedDict(
|
|
1700
|
+
"ListTablesOutputTypeDef",
|
|
1701
|
+
{
|
|
1702
|
+
"TableNames": List[str],
|
|
1703
|
+
"LastEvaluatedTableName": str,
|
|
1704
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1705
|
+
},
|
|
1706
|
+
)
|
|
1707
|
+
|
|
1708
|
+
ProvisionedThroughputDescriptionResponseMetadataTypeDef = TypedDict(
|
|
1709
|
+
"ProvisionedThroughputDescriptionResponseMetadataTypeDef",
|
|
1710
|
+
{
|
|
1711
|
+
"LastIncreaseDateTime": datetime,
|
|
1712
|
+
"LastDecreaseDateTime": datetime,
|
|
1713
|
+
"NumberOfDecreasesToday": int,
|
|
1714
|
+
"ReadCapacityUnits": int,
|
|
1715
|
+
"WriteCapacityUnits": int,
|
|
1716
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1717
|
+
},
|
|
1718
|
+
)
|
|
1719
|
+
|
|
1720
|
+
RestoreSummaryResponseMetadataTypeDef = TypedDict(
|
|
1721
|
+
"RestoreSummaryResponseMetadataTypeDef",
|
|
1722
|
+
{
|
|
1723
|
+
"SourceBackupArn": str,
|
|
1724
|
+
"SourceTableArn": str,
|
|
1725
|
+
"RestoreDateTime": datetime,
|
|
1726
|
+
"RestoreInProgress": bool,
|
|
1727
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1728
|
+
},
|
|
1729
|
+
)
|
|
1730
|
+
|
|
1731
|
+
SSEDescriptionResponseMetadataTypeDef = TypedDict(
|
|
1732
|
+
"SSEDescriptionResponseMetadataTypeDef",
|
|
1733
|
+
{
|
|
1734
|
+
"Status": SSEStatusType,
|
|
1735
|
+
"SSEType": SSETypeType,
|
|
1736
|
+
"KMSMasterKeyArn": str,
|
|
1737
|
+
"InaccessibleEncryptionDateTime": datetime,
|
|
1738
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1739
|
+
},
|
|
1740
|
+
)
|
|
1741
|
+
|
|
1742
|
+
StreamSpecificationResponseMetadataTypeDef = TypedDict(
|
|
1743
|
+
"StreamSpecificationResponseMetadataTypeDef",
|
|
1744
|
+
{
|
|
1745
|
+
"StreamEnabled": bool,
|
|
1746
|
+
"StreamViewType": StreamViewTypeType,
|
|
1747
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1748
|
+
},
|
|
1749
|
+
)
|
|
1750
|
+
|
|
1751
|
+
TableClassSummaryResponseMetadataTypeDef = TypedDict(
|
|
1752
|
+
"TableClassSummaryResponseMetadataTypeDef",
|
|
1753
|
+
{
|
|
1754
|
+
"TableClass": TableClassType,
|
|
1755
|
+
"LastUpdateDateTime": datetime,
|
|
1756
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1757
|
+
},
|
|
1758
|
+
)
|
|
1759
|
+
|
|
1809
1760
|
UpdateContributorInsightsOutputTypeDef = TypedDict(
|
|
1810
1761
|
"UpdateContributorInsightsOutputTypeDef",
|
|
1811
1762
|
{
|
|
1812
1763
|
"TableName": str,
|
|
1813
1764
|
"IndexName": str,
|
|
1814
1765
|
"ContributorInsightsStatus": ContributorInsightsStatusType,
|
|
1815
|
-
"ResponseMetadata":
|
|
1766
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1816
1767
|
},
|
|
1817
1768
|
)
|
|
1818
1769
|
|
|
@@ -1843,6 +1794,16 @@ AttributeValueUpdateTypeDef = TypedDict(
|
|
|
1843
1794
|
total=False,
|
|
1844
1795
|
)
|
|
1845
1796
|
|
|
1797
|
+
BatchStatementErrorTypeDef = TypedDict(
|
|
1798
|
+
"BatchStatementErrorTypeDef",
|
|
1799
|
+
{
|
|
1800
|
+
"Code": BatchStatementErrorCodeEnumType,
|
|
1801
|
+
"Message": str,
|
|
1802
|
+
"Item": Dict[str, AttributeValueTypeDef],
|
|
1803
|
+
},
|
|
1804
|
+
total=False,
|
|
1805
|
+
)
|
|
1806
|
+
|
|
1846
1807
|
_RequiredBatchStatementRequestTypeDef = TypedDict(
|
|
1847
1808
|
"_RequiredBatchStatementRequestTypeDef",
|
|
1848
1809
|
{
|
|
@@ -1874,6 +1835,7 @@ _OptionalBatchStatementRequestTypeDef = TypedDict(
|
|
|
1874
1835
|
]
|
|
1875
1836
|
],
|
|
1876
1837
|
"ConsistentRead": bool,
|
|
1838
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
1877
1839
|
},
|
|
1878
1840
|
total=False,
|
|
1879
1841
|
)
|
|
@@ -2108,6 +2070,7 @@ _OptionalExecuteStatementInputRequestTypeDef = TypedDict(
|
|
|
2108
2070
|
"NextToken": str,
|
|
2109
2071
|
"ReturnConsumedCapacity": ReturnConsumedCapacityType,
|
|
2110
2072
|
"Limit": int,
|
|
2073
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
2111
2074
|
},
|
|
2112
2075
|
total=False,
|
|
2113
2076
|
)
|
|
@@ -2343,6 +2306,7 @@ _OptionalParameterizedStatementTypeDef = TypedDict(
|
|
|
2343
2306
|
],
|
|
2344
2307
|
]
|
|
2345
2308
|
],
|
|
2309
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
2346
2310
|
},
|
|
2347
2311
|
total=False,
|
|
2348
2312
|
)
|
|
@@ -2543,7 +2507,7 @@ CreateBackupOutputTypeDef = TypedDict(
|
|
|
2543
2507
|
"CreateBackupOutputTypeDef",
|
|
2544
2508
|
{
|
|
2545
2509
|
"BackupDetails": BackupDetailsTypeDef,
|
|
2546
|
-
"ResponseMetadata":
|
|
2510
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2547
2511
|
},
|
|
2548
2512
|
)
|
|
2549
2513
|
|
|
@@ -2552,7 +2516,7 @@ ListBackupsOutputTableTypeDef = TypedDict(
|
|
|
2552
2516
|
{
|
|
2553
2517
|
"BackupSummaries": List[BackupSummaryTableTypeDef],
|
|
2554
2518
|
"LastEvaluatedBackupArn": str,
|
|
2555
|
-
"ResponseMetadata":
|
|
2519
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2556
2520
|
},
|
|
2557
2521
|
)
|
|
2558
2522
|
|
|
@@ -2561,7 +2525,7 @@ ListBackupsOutputTypeDef = TypedDict(
|
|
|
2561
2525
|
{
|
|
2562
2526
|
"BackupSummaries": List[BackupSummaryTypeDef],
|
|
2563
2527
|
"LastEvaluatedBackupArn": str,
|
|
2564
|
-
"ResponseMetadata":
|
|
2528
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2565
2529
|
},
|
|
2566
2530
|
)
|
|
2567
2531
|
|
|
@@ -2585,108 +2549,47 @@ class BatchGetItemInputServiceResourceBatchGetItemTypeDef(
|
|
|
2585
2549
|
):
|
|
2586
2550
|
pass
|
|
2587
2551
|
|
|
2588
|
-
BatchStatementResponseTypeDef = TypedDict(
|
|
2589
|
-
"BatchStatementResponseTypeDef",
|
|
2590
|
-
{
|
|
2591
|
-
"Error": BatchStatementErrorTypeDef,
|
|
2592
|
-
"TableName": str,
|
|
2593
|
-
"Item": Dict[str, AttributeValueTypeDef],
|
|
2594
|
-
},
|
|
2595
|
-
total=False,
|
|
2596
|
-
)
|
|
2597
|
-
|
|
2598
2552
|
ConsumedCapacityServiceResourceTypeDef = TypedDict(
|
|
2599
2553
|
"ConsumedCapacityServiceResourceTypeDef",
|
|
2600
|
-
{
|
|
2601
|
-
"TableName": str,
|
|
2602
|
-
"CapacityUnits": float,
|
|
2603
|
-
"ReadCapacityUnits": float,
|
|
2604
|
-
"WriteCapacityUnits": float,
|
|
2605
|
-
"Table": CapacityServiceResourceTypeDef,
|
|
2606
|
-
"LocalSecondaryIndexes": Dict[str, CapacityServiceResourceTypeDef],
|
|
2607
|
-
"GlobalSecondaryIndexes": Dict[str, CapacityServiceResourceTypeDef],
|
|
2608
|
-
},
|
|
2609
|
-
total=False,
|
|
2610
|
-
)
|
|
2611
|
-
|
|
2612
|
-
ConsumedCapacityTableTypeDef = TypedDict(
|
|
2613
|
-
"ConsumedCapacityTableTypeDef",
|
|
2614
|
-
{
|
|
2615
|
-
"TableName": str,
|
|
2616
|
-
"CapacityUnits": float,
|
|
2617
|
-
"ReadCapacityUnits": float,
|
|
2618
|
-
"WriteCapacityUnits": float,
|
|
2619
|
-
"Table": CapacityTableTypeDef,
|
|
2620
|
-
"LocalSecondaryIndexes": Dict[str, CapacityTableTypeDef],
|
|
2621
|
-
"GlobalSecondaryIndexes": Dict[str, CapacityTableTypeDef],
|
|
2622
|
-
},
|
|
2623
|
-
total=False,
|
|
2624
|
-
)
|
|
2625
|
-
|
|
2626
|
-
ConsumedCapacityTypeDef = TypedDict(
|
|
2627
|
-
"ConsumedCapacityTypeDef",
|
|
2628
|
-
{
|
|
2629
|
-
"TableName": str,
|
|
2630
|
-
"CapacityUnits": float,
|
|
2631
|
-
"ReadCapacityUnits": float,
|
|
2632
|
-
"WriteCapacityUnits": float,
|
|
2633
|
-
"Table": CapacityTypeDef,
|
|
2634
|
-
"LocalSecondaryIndexes": Dict[str, CapacityTypeDef],
|
|
2635
|
-
"GlobalSecondaryIndexes": Dict[str, CapacityTypeDef],
|
|
2636
|
-
},
|
|
2637
|
-
total=False,
|
|
2638
|
-
)
|
|
2639
|
-
|
|
2640
|
-
_RequiredQueryInputQueryPaginateTypeDef = TypedDict(
|
|
2641
|
-
"_RequiredQueryInputQueryPaginateTypeDef",
|
|
2642
|
-
{
|
|
2643
|
-
"TableName": str,
|
|
2644
|
-
},
|
|
2645
|
-
)
|
|
2646
|
-
_OptionalQueryInputQueryPaginateTypeDef = TypedDict(
|
|
2647
|
-
"_OptionalQueryInputQueryPaginateTypeDef",
|
|
2648
|
-
{
|
|
2649
|
-
"IndexName": str,
|
|
2650
|
-
"Select": SelectType,
|
|
2651
|
-
"AttributesToGet": Sequence[str],
|
|
2652
|
-
"ConsistentRead": bool,
|
|
2653
|
-
"KeyConditions": Mapping[str, ConditionTableTypeDef],
|
|
2654
|
-
"QueryFilter": Mapping[str, ConditionTableTypeDef],
|
|
2655
|
-
"ConditionalOperator": ConditionalOperatorType,
|
|
2656
|
-
"ScanIndexForward": bool,
|
|
2657
|
-
"ReturnConsumedCapacity": ReturnConsumedCapacityType,
|
|
2658
|
-
"ProjectionExpression": str,
|
|
2659
|
-
"FilterExpression": str,
|
|
2660
|
-
"KeyConditionExpression": str,
|
|
2661
|
-
"ExpressionAttributeNames": Mapping[str, str],
|
|
2662
|
-
"ExpressionAttributeValues": Mapping[
|
|
2663
|
-
str,
|
|
2664
|
-
Union[
|
|
2665
|
-
bytes,
|
|
2666
|
-
bytearray,
|
|
2667
|
-
str,
|
|
2668
|
-
int,
|
|
2669
|
-
Decimal,
|
|
2670
|
-
bool,
|
|
2671
|
-
Set[int],
|
|
2672
|
-
Set[Decimal],
|
|
2673
|
-
Set[str],
|
|
2674
|
-
Set[bytes],
|
|
2675
|
-
Set[bytearray],
|
|
2676
|
-
Sequence[Any],
|
|
2677
|
-
Mapping[str, Any],
|
|
2678
|
-
None,
|
|
2679
|
-
],
|
|
2680
|
-
],
|
|
2681
|
-
"PaginationConfig": "PaginatorConfigTypeDef",
|
|
2554
|
+
{
|
|
2555
|
+
"TableName": str,
|
|
2556
|
+
"CapacityUnits": float,
|
|
2557
|
+
"ReadCapacityUnits": float,
|
|
2558
|
+
"WriteCapacityUnits": float,
|
|
2559
|
+
"Table": CapacityServiceResourceTypeDef,
|
|
2560
|
+
"LocalSecondaryIndexes": Dict[str, CapacityServiceResourceTypeDef],
|
|
2561
|
+
"GlobalSecondaryIndexes": Dict[str, CapacityServiceResourceTypeDef],
|
|
2682
2562
|
},
|
|
2683
2563
|
total=False,
|
|
2684
2564
|
)
|
|
2685
2565
|
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2566
|
+
ConsumedCapacityTableTypeDef = TypedDict(
|
|
2567
|
+
"ConsumedCapacityTableTypeDef",
|
|
2568
|
+
{
|
|
2569
|
+
"TableName": str,
|
|
2570
|
+
"CapacityUnits": float,
|
|
2571
|
+
"ReadCapacityUnits": float,
|
|
2572
|
+
"WriteCapacityUnits": float,
|
|
2573
|
+
"Table": CapacityTableTypeDef,
|
|
2574
|
+
"LocalSecondaryIndexes": Dict[str, CapacityTableTypeDef],
|
|
2575
|
+
"GlobalSecondaryIndexes": Dict[str, CapacityTableTypeDef],
|
|
2576
|
+
},
|
|
2577
|
+
total=False,
|
|
2578
|
+
)
|
|
2579
|
+
|
|
2580
|
+
ConsumedCapacityTypeDef = TypedDict(
|
|
2581
|
+
"ConsumedCapacityTypeDef",
|
|
2582
|
+
{
|
|
2583
|
+
"TableName": str,
|
|
2584
|
+
"CapacityUnits": float,
|
|
2585
|
+
"ReadCapacityUnits": float,
|
|
2586
|
+
"WriteCapacityUnits": float,
|
|
2587
|
+
"Table": CapacityTypeDef,
|
|
2588
|
+
"LocalSecondaryIndexes": Dict[str, CapacityTypeDef],
|
|
2589
|
+
"GlobalSecondaryIndexes": Dict[str, CapacityTypeDef],
|
|
2590
|
+
},
|
|
2591
|
+
total=False,
|
|
2592
|
+
)
|
|
2690
2593
|
|
|
2691
2594
|
QueryInputTableQueryTypeDef = TypedDict(
|
|
2692
2595
|
"QueryInputTableQueryTypeDef",
|
|
@@ -2747,56 +2650,6 @@ QueryInputTableQueryTypeDef = TypedDict(
|
|
|
2747
2650
|
total=False,
|
|
2748
2651
|
)
|
|
2749
2652
|
|
|
2750
|
-
_RequiredScanInputScanPaginateTypeDef = TypedDict(
|
|
2751
|
-
"_RequiredScanInputScanPaginateTypeDef",
|
|
2752
|
-
{
|
|
2753
|
-
"TableName": str,
|
|
2754
|
-
},
|
|
2755
|
-
)
|
|
2756
|
-
_OptionalScanInputScanPaginateTypeDef = TypedDict(
|
|
2757
|
-
"_OptionalScanInputScanPaginateTypeDef",
|
|
2758
|
-
{
|
|
2759
|
-
"IndexName": str,
|
|
2760
|
-
"AttributesToGet": Sequence[str],
|
|
2761
|
-
"Select": SelectType,
|
|
2762
|
-
"ScanFilter": Mapping[str, ConditionTableTypeDef],
|
|
2763
|
-
"ConditionalOperator": ConditionalOperatorType,
|
|
2764
|
-
"ReturnConsumedCapacity": ReturnConsumedCapacityType,
|
|
2765
|
-
"TotalSegments": int,
|
|
2766
|
-
"Segment": int,
|
|
2767
|
-
"ProjectionExpression": str,
|
|
2768
|
-
"FilterExpression": str,
|
|
2769
|
-
"ExpressionAttributeNames": Mapping[str, str],
|
|
2770
|
-
"ExpressionAttributeValues": Mapping[
|
|
2771
|
-
str,
|
|
2772
|
-
Union[
|
|
2773
|
-
bytes,
|
|
2774
|
-
bytearray,
|
|
2775
|
-
str,
|
|
2776
|
-
int,
|
|
2777
|
-
Decimal,
|
|
2778
|
-
bool,
|
|
2779
|
-
Set[int],
|
|
2780
|
-
Set[Decimal],
|
|
2781
|
-
Set[str],
|
|
2782
|
-
Set[bytes],
|
|
2783
|
-
Set[bytearray],
|
|
2784
|
-
Sequence[Any],
|
|
2785
|
-
Mapping[str, Any],
|
|
2786
|
-
None,
|
|
2787
|
-
],
|
|
2788
|
-
],
|
|
2789
|
-
"ConsistentRead": bool,
|
|
2790
|
-
"PaginationConfig": "PaginatorConfigTypeDef",
|
|
2791
|
-
},
|
|
2792
|
-
total=False,
|
|
2793
|
-
)
|
|
2794
|
-
|
|
2795
|
-
class ScanInputScanPaginateTypeDef(
|
|
2796
|
-
_RequiredScanInputScanPaginateTypeDef, _OptionalScanInputScanPaginateTypeDef
|
|
2797
|
-
):
|
|
2798
|
-
pass
|
|
2799
|
-
|
|
2800
2653
|
ScanInputTableScanTypeDef = TypedDict(
|
|
2801
2654
|
"ScanInputTableScanTypeDef",
|
|
2802
2655
|
{
|
|
@@ -2879,7 +2732,7 @@ ListContributorInsightsOutputTypeDef = TypedDict(
|
|
|
2879
2732
|
{
|
|
2880
2733
|
"ContributorInsightsSummaries": List[ContributorInsightsSummaryTypeDef],
|
|
2881
2734
|
"NextToken": str,
|
|
2882
|
-
"ResponseMetadata":
|
|
2735
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2883
2736
|
},
|
|
2884
2737
|
)
|
|
2885
2738
|
|
|
@@ -3125,7 +2978,7 @@ ListTagsOfResourceOutputTypeDef = TypedDict(
|
|
|
3125
2978
|
{
|
|
3126
2979
|
"Tags": List[TagTypeDef],
|
|
3127
2980
|
"NextToken": str,
|
|
3128
|
-
"ResponseMetadata":
|
|
2981
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
3129
2982
|
},
|
|
3130
2983
|
)
|
|
3131
2984
|
|
|
@@ -3198,6 +3051,7 @@ _OptionalDeleteItemInputTableDeleteItemTypeDef = TypedDict(
|
|
|
3198
3051
|
None,
|
|
3199
3052
|
],
|
|
3200
3053
|
],
|
|
3054
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3201
3055
|
},
|
|
3202
3056
|
total=False,
|
|
3203
3057
|
)
|
|
@@ -3260,6 +3114,7 @@ _OptionalPutItemInputTablePutItemTypeDef = TypedDict(
|
|
|
3260
3114
|
None,
|
|
3261
3115
|
],
|
|
3262
3116
|
],
|
|
3117
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3263
3118
|
},
|
|
3264
3119
|
total=False,
|
|
3265
3120
|
)
|
|
@@ -3324,6 +3179,7 @@ _OptionalUpdateItemInputTableUpdateItemTypeDef = TypedDict(
|
|
|
3324
3179
|
None,
|
|
3325
3180
|
],
|
|
3326
3181
|
],
|
|
3182
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3327
3183
|
},
|
|
3328
3184
|
total=False,
|
|
3329
3185
|
)
|
|
@@ -3351,7 +3207,7 @@ DescribeContributorInsightsOutputTypeDef = TypedDict(
|
|
|
3351
3207
|
"ContributorInsightsStatus": ContributorInsightsStatusType,
|
|
3352
3208
|
"LastUpdateDateTime": datetime,
|
|
3353
3209
|
"FailureException": FailureExceptionTypeDef,
|
|
3354
|
-
"ResponseMetadata":
|
|
3210
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
3355
3211
|
},
|
|
3356
3212
|
)
|
|
3357
3213
|
|
|
@@ -3359,7 +3215,7 @@ DescribeEndpointsResponseTypeDef = TypedDict(
|
|
|
3359
3215
|
"DescribeEndpointsResponseTypeDef",
|
|
3360
3216
|
{
|
|
3361
3217
|
"Endpoints": List[EndpointTypeDef],
|
|
3362
|
-
"ResponseMetadata":
|
|
3218
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
3363
3219
|
},
|
|
3364
3220
|
)
|
|
3365
3221
|
|
|
@@ -3367,7 +3223,7 @@ DescribeExportOutputTypeDef = TypedDict(
|
|
|
3367
3223
|
"DescribeExportOutputTypeDef",
|
|
3368
3224
|
{
|
|
3369
3225
|
"ExportDescription": ExportDescriptionTypeDef,
|
|
3370
|
-
"ResponseMetadata":
|
|
3226
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
3371
3227
|
},
|
|
3372
3228
|
)
|
|
3373
3229
|
|
|
@@ -3375,7 +3231,7 @@ ExportTableToPointInTimeOutputTypeDef = TypedDict(
|
|
|
3375
3231
|
"ExportTableToPointInTimeOutputTypeDef",
|
|
3376
3232
|
{
|
|
3377
3233
|
"ExportDescription": ExportDescriptionTypeDef,
|
|
3378
|
-
"ResponseMetadata":
|
|
3234
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
3379
3235
|
},
|
|
3380
3236
|
)
|
|
3381
3237
|
|
|
@@ -3384,7 +3240,7 @@ DescribeKinesisStreamingDestinationOutputTypeDef = TypedDict(
|
|
|
3384
3240
|
{
|
|
3385
3241
|
"TableName": str,
|
|
3386
3242
|
"KinesisDataStreamDestinations": List[KinesisDataStreamDestinationTypeDef],
|
|
3387
|
-
"ResponseMetadata":
|
|
3243
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
3388
3244
|
},
|
|
3389
3245
|
)
|
|
3390
3246
|
|
|
@@ -3432,7 +3288,7 @@ DescribeTimeToLiveOutputTypeDef = TypedDict(
|
|
|
3432
3288
|
"DescribeTimeToLiveOutputTypeDef",
|
|
3433
3289
|
{
|
|
3434
3290
|
"TimeToLiveDescription": TimeToLiveDescriptionTypeDef,
|
|
3435
|
-
"ResponseMetadata":
|
|
3291
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
3436
3292
|
},
|
|
3437
3293
|
)
|
|
3438
3294
|
|
|
@@ -3441,7 +3297,7 @@ ListExportsOutputTypeDef = TypedDict(
|
|
|
3441
3297
|
{
|
|
3442
3298
|
"ExportSummaries": List[ExportSummaryTypeDef],
|
|
3443
3299
|
"NextToken": str,
|
|
3444
|
-
"ResponseMetadata":
|
|
3300
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
3445
3301
|
},
|
|
3446
3302
|
)
|
|
3447
3303
|
|
|
@@ -3523,12 +3379,153 @@ ImportSummaryTypeDef = TypedDict(
|
|
|
3523
3379
|
total=False,
|
|
3524
3380
|
)
|
|
3525
3381
|
|
|
3382
|
+
ListBackupsInputListBackupsPaginateTypeDef = TypedDict(
|
|
3383
|
+
"ListBackupsInputListBackupsPaginateTypeDef",
|
|
3384
|
+
{
|
|
3385
|
+
"TableName": str,
|
|
3386
|
+
"TimeRangeLowerBound": Union[datetime, str],
|
|
3387
|
+
"TimeRangeUpperBound": Union[datetime, str],
|
|
3388
|
+
"BackupType": BackupTypeFilterType,
|
|
3389
|
+
"PaginationConfig": PaginatorConfigTypeDef,
|
|
3390
|
+
},
|
|
3391
|
+
total=False,
|
|
3392
|
+
)
|
|
3393
|
+
|
|
3394
|
+
ListTablesInputListTablesPaginateTypeDef = TypedDict(
|
|
3395
|
+
"ListTablesInputListTablesPaginateTypeDef",
|
|
3396
|
+
{
|
|
3397
|
+
"PaginationConfig": PaginatorConfigTypeDef,
|
|
3398
|
+
},
|
|
3399
|
+
total=False,
|
|
3400
|
+
)
|
|
3401
|
+
|
|
3402
|
+
_RequiredListTagsOfResourceInputListTagsOfResourcePaginateTypeDef = TypedDict(
|
|
3403
|
+
"_RequiredListTagsOfResourceInputListTagsOfResourcePaginateTypeDef",
|
|
3404
|
+
{
|
|
3405
|
+
"ResourceArn": str,
|
|
3406
|
+
},
|
|
3407
|
+
)
|
|
3408
|
+
_OptionalListTagsOfResourceInputListTagsOfResourcePaginateTypeDef = TypedDict(
|
|
3409
|
+
"_OptionalListTagsOfResourceInputListTagsOfResourcePaginateTypeDef",
|
|
3410
|
+
{
|
|
3411
|
+
"PaginationConfig": PaginatorConfigTypeDef,
|
|
3412
|
+
},
|
|
3413
|
+
total=False,
|
|
3414
|
+
)
|
|
3415
|
+
|
|
3416
|
+
class ListTagsOfResourceInputListTagsOfResourcePaginateTypeDef(
|
|
3417
|
+
_RequiredListTagsOfResourceInputListTagsOfResourcePaginateTypeDef,
|
|
3418
|
+
_OptionalListTagsOfResourceInputListTagsOfResourcePaginateTypeDef,
|
|
3419
|
+
):
|
|
3420
|
+
pass
|
|
3421
|
+
|
|
3422
|
+
_RequiredQueryInputQueryPaginateTypeDef = TypedDict(
|
|
3423
|
+
"_RequiredQueryInputQueryPaginateTypeDef",
|
|
3424
|
+
{
|
|
3425
|
+
"TableName": str,
|
|
3426
|
+
},
|
|
3427
|
+
)
|
|
3428
|
+
_OptionalQueryInputQueryPaginateTypeDef = TypedDict(
|
|
3429
|
+
"_OptionalQueryInputQueryPaginateTypeDef",
|
|
3430
|
+
{
|
|
3431
|
+
"IndexName": str,
|
|
3432
|
+
"Select": SelectType,
|
|
3433
|
+
"AttributesToGet": Sequence[str],
|
|
3434
|
+
"ConsistentRead": bool,
|
|
3435
|
+
"KeyConditions": Mapping[str, ConditionTableTypeDef],
|
|
3436
|
+
"QueryFilter": Mapping[str, ConditionTableTypeDef],
|
|
3437
|
+
"ConditionalOperator": ConditionalOperatorType,
|
|
3438
|
+
"ScanIndexForward": bool,
|
|
3439
|
+
"ReturnConsumedCapacity": ReturnConsumedCapacityType,
|
|
3440
|
+
"ProjectionExpression": str,
|
|
3441
|
+
"FilterExpression": str,
|
|
3442
|
+
"KeyConditionExpression": str,
|
|
3443
|
+
"ExpressionAttributeNames": Mapping[str, str],
|
|
3444
|
+
"ExpressionAttributeValues": Mapping[
|
|
3445
|
+
str,
|
|
3446
|
+
Union[
|
|
3447
|
+
bytes,
|
|
3448
|
+
bytearray,
|
|
3449
|
+
str,
|
|
3450
|
+
int,
|
|
3451
|
+
Decimal,
|
|
3452
|
+
bool,
|
|
3453
|
+
Set[int],
|
|
3454
|
+
Set[Decimal],
|
|
3455
|
+
Set[str],
|
|
3456
|
+
Set[bytes],
|
|
3457
|
+
Set[bytearray],
|
|
3458
|
+
Sequence[Any],
|
|
3459
|
+
Mapping[str, Any],
|
|
3460
|
+
None,
|
|
3461
|
+
],
|
|
3462
|
+
],
|
|
3463
|
+
"PaginationConfig": PaginatorConfigTypeDef,
|
|
3464
|
+
},
|
|
3465
|
+
total=False,
|
|
3466
|
+
)
|
|
3467
|
+
|
|
3468
|
+
class QueryInputQueryPaginateTypeDef(
|
|
3469
|
+
_RequiredQueryInputQueryPaginateTypeDef, _OptionalQueryInputQueryPaginateTypeDef
|
|
3470
|
+
):
|
|
3471
|
+
pass
|
|
3472
|
+
|
|
3473
|
+
_RequiredScanInputScanPaginateTypeDef = TypedDict(
|
|
3474
|
+
"_RequiredScanInputScanPaginateTypeDef",
|
|
3475
|
+
{
|
|
3476
|
+
"TableName": str,
|
|
3477
|
+
},
|
|
3478
|
+
)
|
|
3479
|
+
_OptionalScanInputScanPaginateTypeDef = TypedDict(
|
|
3480
|
+
"_OptionalScanInputScanPaginateTypeDef",
|
|
3481
|
+
{
|
|
3482
|
+
"IndexName": str,
|
|
3483
|
+
"AttributesToGet": Sequence[str],
|
|
3484
|
+
"Select": SelectType,
|
|
3485
|
+
"ScanFilter": Mapping[str, ConditionTableTypeDef],
|
|
3486
|
+
"ConditionalOperator": ConditionalOperatorType,
|
|
3487
|
+
"ReturnConsumedCapacity": ReturnConsumedCapacityType,
|
|
3488
|
+
"TotalSegments": int,
|
|
3489
|
+
"Segment": int,
|
|
3490
|
+
"ProjectionExpression": str,
|
|
3491
|
+
"FilterExpression": str,
|
|
3492
|
+
"ExpressionAttributeNames": Mapping[str, str],
|
|
3493
|
+
"ExpressionAttributeValues": Mapping[
|
|
3494
|
+
str,
|
|
3495
|
+
Union[
|
|
3496
|
+
bytes,
|
|
3497
|
+
bytearray,
|
|
3498
|
+
str,
|
|
3499
|
+
int,
|
|
3500
|
+
Decimal,
|
|
3501
|
+
bool,
|
|
3502
|
+
Set[int],
|
|
3503
|
+
Set[Decimal],
|
|
3504
|
+
Set[str],
|
|
3505
|
+
Set[bytes],
|
|
3506
|
+
Set[bytearray],
|
|
3507
|
+
Sequence[Any],
|
|
3508
|
+
Mapping[str, Any],
|
|
3509
|
+
None,
|
|
3510
|
+
],
|
|
3511
|
+
],
|
|
3512
|
+
"ConsistentRead": bool,
|
|
3513
|
+
"PaginationConfig": PaginatorConfigTypeDef,
|
|
3514
|
+
},
|
|
3515
|
+
total=False,
|
|
3516
|
+
)
|
|
3517
|
+
|
|
3518
|
+
class ScanInputScanPaginateTypeDef(
|
|
3519
|
+
_RequiredScanInputScanPaginateTypeDef, _OptionalScanInputScanPaginateTypeDef
|
|
3520
|
+
):
|
|
3521
|
+
pass
|
|
3522
|
+
|
|
3526
3523
|
ListTagsOfResourceOutputTableTypeDef = TypedDict(
|
|
3527
3524
|
"ListTagsOfResourceOutputTableTypeDef",
|
|
3528
3525
|
{
|
|
3529
3526
|
"Tags": List[TagTableTypeDef],
|
|
3530
3527
|
"NextToken": str,
|
|
3531
|
-
"ResponseMetadata":
|
|
3528
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
3532
3529
|
},
|
|
3533
3530
|
)
|
|
3534
3531
|
|
|
@@ -3561,8 +3558,18 @@ UpdateTimeToLiveOutputTypeDef = TypedDict(
|
|
|
3561
3558
|
"UpdateTimeToLiveOutputTypeDef",
|
|
3562
3559
|
{
|
|
3563
3560
|
"TimeToLiveSpecification": TimeToLiveSpecificationTypeDef,
|
|
3564
|
-
"ResponseMetadata":
|
|
3561
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
3562
|
+
},
|
|
3563
|
+
)
|
|
3564
|
+
|
|
3565
|
+
BatchStatementResponseTypeDef = TypedDict(
|
|
3566
|
+
"BatchStatementResponseTypeDef",
|
|
3567
|
+
{
|
|
3568
|
+
"Error": BatchStatementErrorTypeDef,
|
|
3569
|
+
"TableName": str,
|
|
3570
|
+
"Item": Dict[str, AttributeValueTypeDef],
|
|
3565
3571
|
},
|
|
3572
|
+
total=False,
|
|
3566
3573
|
)
|
|
3567
3574
|
|
|
3568
3575
|
_RequiredBatchExecuteStatementInputRequestTypeDef = TypedDict(
|
|
@@ -3794,6 +3801,7 @@ _OptionalDeleteItemInputRequestTypeDef = TypedDict(
|
|
|
3794
3801
|
],
|
|
3795
3802
|
],
|
|
3796
3803
|
],
|
|
3804
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3797
3805
|
},
|
|
3798
3806
|
total=False,
|
|
3799
3807
|
)
|
|
@@ -3863,6 +3871,7 @@ _OptionalPutItemInputRequestTypeDef = TypedDict(
|
|
|
3863
3871
|
],
|
|
3864
3872
|
],
|
|
3865
3873
|
],
|
|
3874
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3866
3875
|
},
|
|
3867
3876
|
total=False,
|
|
3868
3877
|
)
|
|
@@ -3934,6 +3943,7 @@ _OptionalUpdateItemInputRequestTypeDef = TypedDict(
|
|
|
3934
3943
|
],
|
|
3935
3944
|
],
|
|
3936
3945
|
],
|
|
3946
|
+
"ReturnValuesOnConditionCheckFailure": ReturnValuesOnConditionCheckFailureType,
|
|
3937
3947
|
},
|
|
3938
3948
|
total=False,
|
|
3939
3949
|
)
|
|
@@ -4062,7 +4072,7 @@ BatchGetItemOutputServiceResourceTypeDef = TypedDict(
|
|
|
4062
4072
|
],
|
|
4063
4073
|
"UnprocessedKeys": Dict[str, KeysAndAttributesServiceResourceTypeDef],
|
|
4064
4074
|
"ConsumedCapacity": List[ConsumedCapacityServiceResourceTypeDef],
|
|
4065
|
-
"ResponseMetadata":
|
|
4075
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4066
4076
|
},
|
|
4067
4077
|
)
|
|
4068
4078
|
|
|
@@ -4090,7 +4100,7 @@ DeleteItemOutputTableTypeDef = TypedDict(
|
|
|
4090
4100
|
],
|
|
4091
4101
|
"ConsumedCapacity": ConsumedCapacityTableTypeDef,
|
|
4092
4102
|
"ItemCollectionMetrics": ItemCollectionMetricsTableTypeDef,
|
|
4093
|
-
"ResponseMetadata":
|
|
4103
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4094
4104
|
},
|
|
4095
4105
|
)
|
|
4096
4106
|
|
|
@@ -4117,7 +4127,7 @@ GetItemOutputTableTypeDef = TypedDict(
|
|
|
4117
4127
|
],
|
|
4118
4128
|
],
|
|
4119
4129
|
"ConsumedCapacity": ConsumedCapacityTableTypeDef,
|
|
4120
|
-
"ResponseMetadata":
|
|
4130
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4121
4131
|
},
|
|
4122
4132
|
)
|
|
4123
4133
|
|
|
@@ -4145,7 +4155,7 @@ PutItemOutputTableTypeDef = TypedDict(
|
|
|
4145
4155
|
],
|
|
4146
4156
|
"ConsumedCapacity": ConsumedCapacityTableTypeDef,
|
|
4147
4157
|
"ItemCollectionMetrics": ItemCollectionMetricsTableTypeDef,
|
|
4148
|
-
"ResponseMetadata":
|
|
4158
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4149
4159
|
},
|
|
4150
4160
|
)
|
|
4151
4161
|
|
|
@@ -4195,7 +4205,7 @@ QueryOutputTableTypeDef = TypedDict(
|
|
|
4195
4205
|
],
|
|
4196
4206
|
],
|
|
4197
4207
|
"ConsumedCapacity": ConsumedCapacityTableTypeDef,
|
|
4198
|
-
"ResponseMetadata":
|
|
4208
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4199
4209
|
},
|
|
4200
4210
|
)
|
|
4201
4211
|
|
|
@@ -4245,7 +4255,7 @@ ScanOutputTableTypeDef = TypedDict(
|
|
|
4245
4255
|
],
|
|
4246
4256
|
],
|
|
4247
4257
|
"ConsumedCapacity": ConsumedCapacityTableTypeDef,
|
|
4248
|
-
"ResponseMetadata":
|
|
4258
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4249
4259
|
},
|
|
4250
4260
|
)
|
|
4251
4261
|
|
|
@@ -4273,16 +4283,7 @@ UpdateItemOutputTableTypeDef = TypedDict(
|
|
|
4273
4283
|
],
|
|
4274
4284
|
"ConsumedCapacity": ConsumedCapacityTableTypeDef,
|
|
4275
4285
|
"ItemCollectionMetrics": ItemCollectionMetricsTableTypeDef,
|
|
4276
|
-
"ResponseMetadata":
|
|
4277
|
-
},
|
|
4278
|
-
)
|
|
4279
|
-
|
|
4280
|
-
BatchExecuteStatementOutputTypeDef = TypedDict(
|
|
4281
|
-
"BatchExecuteStatementOutputTypeDef",
|
|
4282
|
-
{
|
|
4283
|
-
"Responses": List[BatchStatementResponseTypeDef],
|
|
4284
|
-
"ConsumedCapacity": List[ConsumedCapacityTypeDef],
|
|
4285
|
-
"ResponseMetadata": "ResponseMetadataTypeDef",
|
|
4286
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4286
4287
|
},
|
|
4287
4288
|
)
|
|
4288
4289
|
|
|
@@ -4292,7 +4293,7 @@ BatchGetItemOutputTypeDef = TypedDict(
|
|
|
4292
4293
|
"Responses": Dict[str, List[Dict[str, AttributeValueTypeDef]]],
|
|
4293
4294
|
"UnprocessedKeys": Dict[str, KeysAndAttributesTypeDef],
|
|
4294
4295
|
"ConsumedCapacity": List[ConsumedCapacityTypeDef],
|
|
4295
|
-
"ResponseMetadata":
|
|
4296
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4296
4297
|
},
|
|
4297
4298
|
)
|
|
4298
4299
|
|
|
@@ -4302,7 +4303,7 @@ DeleteItemOutputTypeDef = TypedDict(
|
|
|
4302
4303
|
"Attributes": Dict[str, AttributeValueTypeDef],
|
|
4303
4304
|
"ConsumedCapacity": ConsumedCapacityTypeDef,
|
|
4304
4305
|
"ItemCollectionMetrics": ItemCollectionMetricsTypeDef,
|
|
4305
|
-
"ResponseMetadata":
|
|
4306
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4306
4307
|
},
|
|
4307
4308
|
)
|
|
4308
4309
|
|
|
@@ -4313,7 +4314,7 @@ ExecuteStatementOutputTypeDef = TypedDict(
|
|
|
4313
4314
|
"NextToken": str,
|
|
4314
4315
|
"ConsumedCapacity": ConsumedCapacityTypeDef,
|
|
4315
4316
|
"LastEvaluatedKey": Dict[str, AttributeValueTypeDef],
|
|
4316
|
-
"ResponseMetadata":
|
|
4317
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4317
4318
|
},
|
|
4318
4319
|
)
|
|
4319
4320
|
|
|
@@ -4322,7 +4323,7 @@ ExecuteTransactionOutputTypeDef = TypedDict(
|
|
|
4322
4323
|
{
|
|
4323
4324
|
"Responses": List[ItemResponseTypeDef],
|
|
4324
4325
|
"ConsumedCapacity": List[ConsumedCapacityTypeDef],
|
|
4325
|
-
"ResponseMetadata":
|
|
4326
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4326
4327
|
},
|
|
4327
4328
|
)
|
|
4328
4329
|
|
|
@@ -4331,7 +4332,7 @@ GetItemOutputTypeDef = TypedDict(
|
|
|
4331
4332
|
{
|
|
4332
4333
|
"Item": Dict[str, AttributeValueTypeDef],
|
|
4333
4334
|
"ConsumedCapacity": ConsumedCapacityTypeDef,
|
|
4334
|
-
"ResponseMetadata":
|
|
4335
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4335
4336
|
},
|
|
4336
4337
|
)
|
|
4337
4338
|
|
|
@@ -4341,7 +4342,7 @@ PutItemOutputTypeDef = TypedDict(
|
|
|
4341
4342
|
"Attributes": Dict[str, AttributeValueTypeDef],
|
|
4342
4343
|
"ConsumedCapacity": ConsumedCapacityTypeDef,
|
|
4343
4344
|
"ItemCollectionMetrics": ItemCollectionMetricsTypeDef,
|
|
4344
|
-
"ResponseMetadata":
|
|
4345
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4345
4346
|
},
|
|
4346
4347
|
)
|
|
4347
4348
|
|
|
@@ -4353,7 +4354,7 @@ QueryOutputTypeDef = TypedDict(
|
|
|
4353
4354
|
"ScannedCount": int,
|
|
4354
4355
|
"LastEvaluatedKey": Dict[str, AttributeValueTypeDef],
|
|
4355
4356
|
"ConsumedCapacity": ConsumedCapacityTypeDef,
|
|
4356
|
-
"ResponseMetadata":
|
|
4357
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4357
4358
|
},
|
|
4358
4359
|
)
|
|
4359
4360
|
|
|
@@ -4365,7 +4366,7 @@ ScanOutputTypeDef = TypedDict(
|
|
|
4365
4366
|
"ScannedCount": int,
|
|
4366
4367
|
"LastEvaluatedKey": Dict[str, AttributeValueTypeDef],
|
|
4367
4368
|
"ConsumedCapacity": ConsumedCapacityTypeDef,
|
|
4368
|
-
"ResponseMetadata":
|
|
4369
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4369
4370
|
},
|
|
4370
4371
|
)
|
|
4371
4372
|
|
|
@@ -4374,7 +4375,7 @@ TransactGetItemsOutputTypeDef = TypedDict(
|
|
|
4374
4375
|
{
|
|
4375
4376
|
"ConsumedCapacity": List[ConsumedCapacityTypeDef],
|
|
4376
4377
|
"Responses": List[ItemResponseTypeDef],
|
|
4377
|
-
"ResponseMetadata":
|
|
4378
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4378
4379
|
},
|
|
4379
4380
|
)
|
|
4380
4381
|
|
|
@@ -4383,7 +4384,7 @@ TransactWriteItemsOutputTypeDef = TypedDict(
|
|
|
4383
4384
|
{
|
|
4384
4385
|
"ConsumedCapacity": List[ConsumedCapacityTypeDef],
|
|
4385
4386
|
"ItemCollectionMetrics": Dict[str, List[ItemCollectionMetricsTypeDef]],
|
|
4386
|
-
"ResponseMetadata":
|
|
4387
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4387
4388
|
},
|
|
4388
4389
|
)
|
|
4389
4390
|
|
|
@@ -4393,7 +4394,7 @@ UpdateItemOutputTypeDef = TypedDict(
|
|
|
4393
4394
|
"Attributes": Dict[str, AttributeValueTypeDef],
|
|
4394
4395
|
"ConsumedCapacity": ConsumedCapacityTypeDef,
|
|
4395
4396
|
"ItemCollectionMetrics": ItemCollectionMetricsTypeDef,
|
|
4396
|
-
"ResponseMetadata":
|
|
4397
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4397
4398
|
},
|
|
4398
4399
|
)
|
|
4399
4400
|
|
|
@@ -4401,7 +4402,7 @@ DescribeContinuousBackupsOutputTypeDef = TypedDict(
|
|
|
4401
4402
|
"DescribeContinuousBackupsOutputTypeDef",
|
|
4402
4403
|
{
|
|
4403
4404
|
"ContinuousBackupsDescription": ContinuousBackupsDescriptionTypeDef,
|
|
4404
|
-
"ResponseMetadata":
|
|
4405
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4405
4406
|
},
|
|
4406
4407
|
)
|
|
4407
4408
|
|
|
@@ -4409,7 +4410,7 @@ UpdateContinuousBackupsOutputTypeDef = TypedDict(
|
|
|
4409
4410
|
"UpdateContinuousBackupsOutputTypeDef",
|
|
4410
4411
|
{
|
|
4411
4412
|
"ContinuousBackupsDescription": ContinuousBackupsDescriptionTypeDef,
|
|
4412
|
-
"ResponseMetadata":
|
|
4413
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4413
4414
|
},
|
|
4414
4415
|
)
|
|
4415
4416
|
|
|
@@ -4556,7 +4557,7 @@ ListGlobalTablesOutputTypeDef = TypedDict(
|
|
|
4556
4557
|
{
|
|
4557
4558
|
"GlobalTables": List[GlobalTableTypeDef],
|
|
4558
4559
|
"LastEvaluatedGlobalTableName": str,
|
|
4559
|
-
"ResponseMetadata":
|
|
4560
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4560
4561
|
},
|
|
4561
4562
|
)
|
|
4562
4563
|
|
|
@@ -4727,7 +4728,7 @@ ListImportsOutputTypeDef = TypedDict(
|
|
|
4727
4728
|
{
|
|
4728
4729
|
"ImportSummaryList": List[ImportSummaryTypeDef],
|
|
4729
4730
|
"NextToken": str,
|
|
4730
|
-
"ResponseMetadata":
|
|
4731
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4731
4732
|
},
|
|
4732
4733
|
)
|
|
4733
4734
|
|
|
@@ -4758,7 +4759,16 @@ BatchWriteItemOutputServiceResourceTypeDef = TypedDict(
|
|
|
4758
4759
|
"UnprocessedItems": Dict[str, List[WriteRequestServiceResourceTypeDef]],
|
|
4759
4760
|
"ItemCollectionMetrics": Dict[str, List[ItemCollectionMetricsServiceResourceTypeDef]],
|
|
4760
4761
|
"ConsumedCapacity": List[ConsumedCapacityServiceResourceTypeDef],
|
|
4761
|
-
"ResponseMetadata":
|
|
4762
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4763
|
+
},
|
|
4764
|
+
)
|
|
4765
|
+
|
|
4766
|
+
BatchExecuteStatementOutputTypeDef = TypedDict(
|
|
4767
|
+
"BatchExecuteStatementOutputTypeDef",
|
|
4768
|
+
{
|
|
4769
|
+
"Responses": List[BatchStatementResponseTypeDef],
|
|
4770
|
+
"ConsumedCapacity": List[ConsumedCapacityTypeDef],
|
|
4771
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4762
4772
|
},
|
|
4763
4773
|
)
|
|
4764
4774
|
|
|
@@ -4807,7 +4817,7 @@ BatchWriteItemOutputTypeDef = TypedDict(
|
|
|
4807
4817
|
"UnprocessedItems": Dict[str, List[WriteRequestTypeDef]],
|
|
4808
4818
|
"ItemCollectionMetrics": Dict[str, List[ItemCollectionMetricsTypeDef]],
|
|
4809
4819
|
"ConsumedCapacity": List[ConsumedCapacityTypeDef],
|
|
4810
|
-
"ResponseMetadata":
|
|
4820
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
4811
4821
|
},
|
|
4812
4822
|
)
|
|
4813
4823
|
|
|
@@ -5168,7 +5178,7 @@ DeleteBackupOutputTypeDef = TypedDict(
|
|
|
5168
5178
|
"DeleteBackupOutputTypeDef",
|
|
5169
5179
|
{
|
|
5170
5180
|
"BackupDescription": BackupDescriptionTypeDef,
|
|
5171
|
-
"ResponseMetadata":
|
|
5181
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5172
5182
|
},
|
|
5173
5183
|
)
|
|
5174
5184
|
|
|
@@ -5176,7 +5186,7 @@ DescribeBackupOutputTypeDef = TypedDict(
|
|
|
5176
5186
|
"DescribeBackupOutputTypeDef",
|
|
5177
5187
|
{
|
|
5178
5188
|
"BackupDescription": BackupDescriptionTypeDef,
|
|
5179
|
-
"ResponseMetadata":
|
|
5189
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5180
5190
|
},
|
|
5181
5191
|
)
|
|
5182
5192
|
|
|
@@ -5184,7 +5194,7 @@ DescribeImportOutputTypeDef = TypedDict(
|
|
|
5184
5194
|
"DescribeImportOutputTypeDef",
|
|
5185
5195
|
{
|
|
5186
5196
|
"ImportTableDescription": ImportTableDescriptionTypeDef,
|
|
5187
|
-
"ResponseMetadata":
|
|
5197
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5188
5198
|
},
|
|
5189
5199
|
)
|
|
5190
5200
|
|
|
@@ -5192,7 +5202,7 @@ ImportTableOutputTypeDef = TypedDict(
|
|
|
5192
5202
|
"ImportTableOutputTypeDef",
|
|
5193
5203
|
{
|
|
5194
5204
|
"ImportTableDescription": ImportTableDescriptionTypeDef,
|
|
5195
|
-
"ResponseMetadata":
|
|
5205
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5196
5206
|
},
|
|
5197
5207
|
)
|
|
5198
5208
|
|
|
@@ -5200,7 +5210,7 @@ DeleteTableOutputTableTypeDef = TypedDict(
|
|
|
5200
5210
|
"DeleteTableOutputTableTypeDef",
|
|
5201
5211
|
{
|
|
5202
5212
|
"TableDescription": TableDescriptionTableTypeDef,
|
|
5203
|
-
"ResponseMetadata":
|
|
5213
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5204
5214
|
},
|
|
5205
5215
|
)
|
|
5206
5216
|
|
|
@@ -5224,7 +5234,7 @@ CreateGlobalTableOutputTypeDef = TypedDict(
|
|
|
5224
5234
|
"CreateGlobalTableOutputTypeDef",
|
|
5225
5235
|
{
|
|
5226
5236
|
"GlobalTableDescription": GlobalTableDescriptionTypeDef,
|
|
5227
|
-
"ResponseMetadata":
|
|
5237
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5228
5238
|
},
|
|
5229
5239
|
)
|
|
5230
5240
|
|
|
@@ -5232,7 +5242,7 @@ DescribeGlobalTableOutputTypeDef = TypedDict(
|
|
|
5232
5242
|
"DescribeGlobalTableOutputTypeDef",
|
|
5233
5243
|
{
|
|
5234
5244
|
"GlobalTableDescription": GlobalTableDescriptionTypeDef,
|
|
5235
|
-
"ResponseMetadata":
|
|
5245
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5236
5246
|
},
|
|
5237
5247
|
)
|
|
5238
5248
|
|
|
@@ -5240,7 +5250,7 @@ UpdateGlobalTableOutputTypeDef = TypedDict(
|
|
|
5240
5250
|
"UpdateGlobalTableOutputTypeDef",
|
|
5241
5251
|
{
|
|
5242
5252
|
"GlobalTableDescription": GlobalTableDescriptionTypeDef,
|
|
5243
|
-
"ResponseMetadata":
|
|
5253
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5244
5254
|
},
|
|
5245
5255
|
)
|
|
5246
5256
|
|
|
@@ -5248,7 +5258,7 @@ CreateTableOutputTypeDef = TypedDict(
|
|
|
5248
5258
|
"CreateTableOutputTypeDef",
|
|
5249
5259
|
{
|
|
5250
5260
|
"TableDescription": TableDescriptionTypeDef,
|
|
5251
|
-
"ResponseMetadata":
|
|
5261
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5252
5262
|
},
|
|
5253
5263
|
)
|
|
5254
5264
|
|
|
@@ -5256,7 +5266,7 @@ DeleteTableOutputTypeDef = TypedDict(
|
|
|
5256
5266
|
"DeleteTableOutputTypeDef",
|
|
5257
5267
|
{
|
|
5258
5268
|
"TableDescription": TableDescriptionTypeDef,
|
|
5259
|
-
"ResponseMetadata":
|
|
5269
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5260
5270
|
},
|
|
5261
5271
|
)
|
|
5262
5272
|
|
|
@@ -5264,7 +5274,7 @@ DescribeTableOutputTypeDef = TypedDict(
|
|
|
5264
5274
|
"DescribeTableOutputTypeDef",
|
|
5265
5275
|
{
|
|
5266
5276
|
"Table": TableDescriptionTypeDef,
|
|
5267
|
-
"ResponseMetadata":
|
|
5277
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5268
5278
|
},
|
|
5269
5279
|
)
|
|
5270
5280
|
|
|
@@ -5272,7 +5282,7 @@ RestoreTableFromBackupOutputTypeDef = TypedDict(
|
|
|
5272
5282
|
"RestoreTableFromBackupOutputTypeDef",
|
|
5273
5283
|
{
|
|
5274
5284
|
"TableDescription": TableDescriptionTypeDef,
|
|
5275
|
-
"ResponseMetadata":
|
|
5285
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5276
5286
|
},
|
|
5277
5287
|
)
|
|
5278
5288
|
|
|
@@ -5280,7 +5290,7 @@ RestoreTableToPointInTimeOutputTypeDef = TypedDict(
|
|
|
5280
5290
|
"RestoreTableToPointInTimeOutputTypeDef",
|
|
5281
5291
|
{
|
|
5282
5292
|
"TableDescription": TableDescriptionTypeDef,
|
|
5283
|
-
"ResponseMetadata":
|
|
5293
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5284
5294
|
},
|
|
5285
5295
|
)
|
|
5286
5296
|
|
|
@@ -5288,7 +5298,7 @@ UpdateTableOutputTypeDef = TypedDict(
|
|
|
5288
5298
|
"UpdateTableOutputTypeDef",
|
|
5289
5299
|
{
|
|
5290
5300
|
"TableDescription": TableDescriptionTypeDef,
|
|
5291
|
-
"ResponseMetadata":
|
|
5301
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5292
5302
|
},
|
|
5293
5303
|
)
|
|
5294
5304
|
|
|
@@ -5334,7 +5344,7 @@ DescribeGlobalTableSettingsOutputTypeDef = TypedDict(
|
|
|
5334
5344
|
{
|
|
5335
5345
|
"GlobalTableName": str,
|
|
5336
5346
|
"ReplicaSettings": List[ReplicaSettingsDescriptionTypeDef],
|
|
5337
|
-
"ResponseMetadata":
|
|
5347
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5338
5348
|
},
|
|
5339
5349
|
)
|
|
5340
5350
|
|
|
@@ -5343,7 +5353,7 @@ UpdateGlobalTableSettingsOutputTypeDef = TypedDict(
|
|
|
5343
5353
|
{
|
|
5344
5354
|
"GlobalTableName": str,
|
|
5345
5355
|
"ReplicaSettings": List[ReplicaSettingsDescriptionTypeDef],
|
|
5346
|
-
"ResponseMetadata":
|
|
5356
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5347
5357
|
},
|
|
5348
5358
|
)
|
|
5349
5359
|
|
|
@@ -5401,7 +5411,7 @@ DescribeTableReplicaAutoScalingOutputTypeDef = TypedDict(
|
|
|
5401
5411
|
"DescribeTableReplicaAutoScalingOutputTypeDef",
|
|
5402
5412
|
{
|
|
5403
5413
|
"TableAutoScalingDescription": TableAutoScalingDescriptionTypeDef,
|
|
5404
|
-
"ResponseMetadata":
|
|
5414
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5405
5415
|
},
|
|
5406
5416
|
)
|
|
5407
5417
|
|
|
@@ -5409,6 +5419,6 @@ UpdateTableReplicaAutoScalingOutputTypeDef = TypedDict(
|
|
|
5409
5419
|
"UpdateTableReplicaAutoScalingOutputTypeDef",
|
|
5410
5420
|
{
|
|
5411
5421
|
"TableAutoScalingDescription": TableAutoScalingDescriptionTypeDef,
|
|
5412
|
-
"ResponseMetadata":
|
|
5422
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
5413
5423
|
},
|
|
5414
5424
|
)
|