types-boto3-dynamodb 1.35.94__py3-none-any.whl → 1.37.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.
- types_boto3_dynamodb/__init__.py +4 -2
- types_boto3_dynamodb/__init__.pyi +4 -2
- types_boto3_dynamodb/__main__.py +4 -4
- types_boto3_dynamodb/client.py +110 -129
- types_boto3_dynamodb/client.pyi +110 -129
- types_boto3_dynamodb/literals.py +4 -3
- types_boto3_dynamodb/literals.pyi +4 -3
- types_boto3_dynamodb/paginator.py +2 -2
- types_boto3_dynamodb/paginator.pyi +2 -2
- types_boto3_dynamodb/service_resource.py +2 -2
- types_boto3_dynamodb/service_resource.pyi +2 -2
- types_boto3_dynamodb/type_defs.py +219 -194
- types_boto3_dynamodb/type_defs.pyi +211 -188
- types_boto3_dynamodb/version.py +1 -1
- types_boto3_dynamodb/waiter.py +4 -4
- types_boto3_dynamodb/waiter.pyi +4 -4
- {types_boto3_dynamodb-1.35.94.dist-info → types_boto3_dynamodb-1.37.0.dist-info}/METADATA +25 -9
- types_boto3_dynamodb-1.37.0.dist-info/RECORD +22 -0
- {types_boto3_dynamodb-1.35.94.dist-info → types_boto3_dynamodb-1.37.0.dist-info}/WHEEL +1 -1
- types_boto3_dynamodb-1.35.94.dist-info/RECORD +0 -22
- {types_boto3_dynamodb-1.35.94.dist-info → types_boto3_dynamodb-1.37.0.dist-info}/LICENSE +0 -0
- {types_boto3_dynamodb-1.35.94.dist-info → types_boto3_dynamodb-1.37.0.dist-info}/top_level.txt +0 -0
|
@@ -3,6 +3,8 @@ Type annotations for dynamodb service type definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/type_defs/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -10,8 +12,6 @@ Usage::
|
|
|
10
12
|
|
|
11
13
|
data: ArchivalSummaryTypeDef = ...
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
from __future__ import annotations
|
|
@@ -94,17 +94,17 @@ __all__ = (
|
|
|
94
94
|
"BackupDescriptionTypeDef",
|
|
95
95
|
"BackupDetailsTypeDef",
|
|
96
96
|
"BackupSummaryTypeDef",
|
|
97
|
-
"
|
|
97
|
+
"BatchExecuteStatementInputTypeDef",
|
|
98
98
|
"BatchExecuteStatementOutputTypeDef",
|
|
99
|
-
"BatchGetItemInputRequestTypeDef",
|
|
100
99
|
"BatchGetItemInputServiceResourceBatchGetItemTypeDef",
|
|
100
|
+
"BatchGetItemInputTypeDef",
|
|
101
101
|
"BatchGetItemOutputServiceResourceTypeDef",
|
|
102
102
|
"BatchGetItemOutputTypeDef",
|
|
103
103
|
"BatchStatementErrorTypeDef",
|
|
104
104
|
"BatchStatementRequestTypeDef",
|
|
105
105
|
"BatchStatementResponseTypeDef",
|
|
106
|
-
"BatchWriteItemInputRequestTypeDef",
|
|
107
106
|
"BatchWriteItemInputServiceResourceBatchWriteItemTypeDef",
|
|
107
|
+
"BatchWriteItemInputTypeDef",
|
|
108
108
|
"BatchWriteItemOutputServiceResourceTypeDef",
|
|
109
109
|
"BatchWriteItemOutputTypeDef",
|
|
110
110
|
"BillingModeSummaryTypeDef",
|
|
@@ -116,24 +116,23 @@ __all__ = (
|
|
|
116
116
|
"ConsumedCapacityTypeDef",
|
|
117
117
|
"ContinuousBackupsDescriptionTypeDef",
|
|
118
118
|
"ContributorInsightsSummaryTypeDef",
|
|
119
|
-
"
|
|
119
|
+
"CreateBackupInputTypeDef",
|
|
120
120
|
"CreateBackupOutputTypeDef",
|
|
121
121
|
"CreateGlobalSecondaryIndexActionTypeDef",
|
|
122
|
-
"
|
|
122
|
+
"CreateGlobalTableInputTypeDef",
|
|
123
123
|
"CreateGlobalTableOutputTypeDef",
|
|
124
124
|
"CreateReplicaActionTypeDef",
|
|
125
125
|
"CreateReplicationGroupMemberActionTypeDef",
|
|
126
|
-
"CreateTableInputRequestTypeDef",
|
|
127
126
|
"CreateTableInputServiceResourceCreateTableTypeDef",
|
|
127
|
+
"CreateTableInputTypeDef",
|
|
128
128
|
"CreateTableOutputTypeDef",
|
|
129
129
|
"CsvOptionsOutputTypeDef",
|
|
130
130
|
"CsvOptionsTypeDef",
|
|
131
|
-
"
|
|
132
|
-
"DeleteBackupInputRequestTypeDef",
|
|
131
|
+
"DeleteBackupInputTypeDef",
|
|
133
132
|
"DeleteBackupOutputTypeDef",
|
|
134
133
|
"DeleteGlobalSecondaryIndexActionTypeDef",
|
|
135
|
-
"DeleteItemInputRequestTypeDef",
|
|
136
134
|
"DeleteItemInputTableDeleteItemTypeDef",
|
|
135
|
+
"DeleteItemInputTypeDef",
|
|
137
136
|
"DeleteItemOutputTableTypeDef",
|
|
138
137
|
"DeleteItemOutputTypeDef",
|
|
139
138
|
"DeleteReplicaActionTypeDef",
|
|
@@ -144,55 +143,56 @@ __all__ = (
|
|
|
144
143
|
"DeleteRequestServiceResourceUnionTypeDef",
|
|
145
144
|
"DeleteRequestTypeDef",
|
|
146
145
|
"DeleteRequestUnionTypeDef",
|
|
147
|
-
"
|
|
146
|
+
"DeleteResourcePolicyInputTypeDef",
|
|
148
147
|
"DeleteResourcePolicyOutputTypeDef",
|
|
149
|
-
"
|
|
148
|
+
"DeleteTableInputTypeDef",
|
|
150
149
|
"DeleteTableOutputTypeDef",
|
|
151
150
|
"DeleteTypeDef",
|
|
152
|
-
"
|
|
151
|
+
"DescribeBackupInputTypeDef",
|
|
153
152
|
"DescribeBackupOutputTypeDef",
|
|
154
|
-
"
|
|
153
|
+
"DescribeContinuousBackupsInputTypeDef",
|
|
155
154
|
"DescribeContinuousBackupsOutputTypeDef",
|
|
156
|
-
"
|
|
155
|
+
"DescribeContributorInsightsInputTypeDef",
|
|
157
156
|
"DescribeContributorInsightsOutputTypeDef",
|
|
158
157
|
"DescribeEndpointsResponseTypeDef",
|
|
159
|
-
"
|
|
158
|
+
"DescribeExportInputTypeDef",
|
|
160
159
|
"DescribeExportOutputTypeDef",
|
|
161
|
-
"
|
|
160
|
+
"DescribeGlobalTableInputTypeDef",
|
|
162
161
|
"DescribeGlobalTableOutputTypeDef",
|
|
163
|
-
"
|
|
162
|
+
"DescribeGlobalTableSettingsInputTypeDef",
|
|
164
163
|
"DescribeGlobalTableSettingsOutputTypeDef",
|
|
165
|
-
"
|
|
164
|
+
"DescribeImportInputTypeDef",
|
|
166
165
|
"DescribeImportOutputTypeDef",
|
|
167
|
-
"
|
|
166
|
+
"DescribeKinesisStreamingDestinationInputTypeDef",
|
|
168
167
|
"DescribeKinesisStreamingDestinationOutputTypeDef",
|
|
169
168
|
"DescribeLimitsOutputTypeDef",
|
|
170
|
-
"
|
|
169
|
+
"DescribeTableInputTypeDef",
|
|
170
|
+
"DescribeTableInputWaitExtraTypeDef",
|
|
171
171
|
"DescribeTableInputWaitTypeDef",
|
|
172
172
|
"DescribeTableOutputTypeDef",
|
|
173
|
-
"
|
|
173
|
+
"DescribeTableReplicaAutoScalingInputTypeDef",
|
|
174
174
|
"DescribeTableReplicaAutoScalingOutputTypeDef",
|
|
175
|
-
"
|
|
175
|
+
"DescribeTimeToLiveInputTypeDef",
|
|
176
176
|
"DescribeTimeToLiveOutputTypeDef",
|
|
177
177
|
"EmptyResponseMetadataTypeDef",
|
|
178
178
|
"EnableKinesisStreamingConfigurationTypeDef",
|
|
179
179
|
"EndpointTypeDef",
|
|
180
|
-
"
|
|
180
|
+
"ExecuteStatementInputTypeDef",
|
|
181
181
|
"ExecuteStatementOutputTypeDef",
|
|
182
|
-
"
|
|
182
|
+
"ExecuteTransactionInputTypeDef",
|
|
183
183
|
"ExecuteTransactionOutputTypeDef",
|
|
184
184
|
"ExpectedAttributeValueTableTypeDef",
|
|
185
185
|
"ExpectedAttributeValueTypeDef",
|
|
186
186
|
"ExportDescriptionTypeDef",
|
|
187
187
|
"ExportSummaryTypeDef",
|
|
188
|
-
"
|
|
188
|
+
"ExportTableToPointInTimeInputTypeDef",
|
|
189
189
|
"ExportTableToPointInTimeOutputTypeDef",
|
|
190
190
|
"FailureExceptionTypeDef",
|
|
191
|
-
"GetItemInputRequestTypeDef",
|
|
192
191
|
"GetItemInputTableGetItemTypeDef",
|
|
192
|
+
"GetItemInputTypeDef",
|
|
193
193
|
"GetItemOutputTableTypeDef",
|
|
194
194
|
"GetItemOutputTypeDef",
|
|
195
|
-
"
|
|
195
|
+
"GetResourcePolicyInputTypeDef",
|
|
196
196
|
"GetResourcePolicyOutputTypeDef",
|
|
197
197
|
"GetTypeDef",
|
|
198
198
|
"GlobalSecondaryIndexAutoScalingUpdateTypeDef",
|
|
@@ -200,6 +200,7 @@ __all__ = (
|
|
|
200
200
|
"GlobalSecondaryIndexInfoTypeDef",
|
|
201
201
|
"GlobalSecondaryIndexOutputTypeDef",
|
|
202
202
|
"GlobalSecondaryIndexTypeDef",
|
|
203
|
+
"GlobalSecondaryIndexUnionTypeDef",
|
|
203
204
|
"GlobalSecondaryIndexUpdateTypeDef",
|
|
204
205
|
"GlobalSecondaryIndexWarmThroughputDescriptionTypeDef",
|
|
205
206
|
"GlobalTableDescriptionTypeDef",
|
|
@@ -207,12 +208,14 @@ __all__ = (
|
|
|
207
208
|
"GlobalTableTypeDef",
|
|
208
209
|
"ImportSummaryTypeDef",
|
|
209
210
|
"ImportTableDescriptionTypeDef",
|
|
210
|
-
"
|
|
211
|
+
"ImportTableInputTypeDef",
|
|
211
212
|
"ImportTableOutputTypeDef",
|
|
212
213
|
"IncrementalExportSpecificationOutputTypeDef",
|
|
213
214
|
"IncrementalExportSpecificationTypeDef",
|
|
215
|
+
"IncrementalExportSpecificationUnionTypeDef",
|
|
214
216
|
"InputFormatOptionsOutputTypeDef",
|
|
215
217
|
"InputFormatOptionsTypeDef",
|
|
218
|
+
"InputFormatOptionsUnionTypeDef",
|
|
216
219
|
"ItemCollectionMetricsServiceResourceTypeDef",
|
|
217
220
|
"ItemCollectionMetricsTableTypeDef",
|
|
218
221
|
"ItemCollectionMetricsTypeDef",
|
|
@@ -226,23 +229,24 @@ __all__ = (
|
|
|
226
229
|
"KeysAndAttributesUnionTypeDef",
|
|
227
230
|
"KinesisDataStreamDestinationTypeDef",
|
|
228
231
|
"KinesisStreamingDestinationInputRequestTypeDef",
|
|
232
|
+
"KinesisStreamingDestinationInputTypeDef",
|
|
229
233
|
"KinesisStreamingDestinationOutputTypeDef",
|
|
230
234
|
"ListBackupsInputPaginateTypeDef",
|
|
231
|
-
"
|
|
235
|
+
"ListBackupsInputTypeDef",
|
|
232
236
|
"ListBackupsOutputTypeDef",
|
|
233
|
-
"
|
|
237
|
+
"ListContributorInsightsInputTypeDef",
|
|
234
238
|
"ListContributorInsightsOutputTypeDef",
|
|
235
|
-
"
|
|
239
|
+
"ListExportsInputTypeDef",
|
|
236
240
|
"ListExportsOutputTypeDef",
|
|
237
|
-
"
|
|
241
|
+
"ListGlobalTablesInputTypeDef",
|
|
238
242
|
"ListGlobalTablesOutputTypeDef",
|
|
239
|
-
"
|
|
243
|
+
"ListImportsInputTypeDef",
|
|
240
244
|
"ListImportsOutputTypeDef",
|
|
241
245
|
"ListTablesInputPaginateTypeDef",
|
|
242
|
-
"
|
|
246
|
+
"ListTablesInputTypeDef",
|
|
243
247
|
"ListTablesOutputTypeDef",
|
|
244
248
|
"ListTagsOfResourceInputPaginateTypeDef",
|
|
245
|
-
"
|
|
249
|
+
"ListTagsOfResourceInputTypeDef",
|
|
246
250
|
"ListTagsOfResourceOutputTypeDef",
|
|
247
251
|
"LocalSecondaryIndexDescriptionTypeDef",
|
|
248
252
|
"LocalSecondaryIndexInfoTypeDef",
|
|
@@ -259,8 +263,8 @@ __all__ = (
|
|
|
259
263
|
"ProvisionedThroughputDescriptionTypeDef",
|
|
260
264
|
"ProvisionedThroughputOverrideTypeDef",
|
|
261
265
|
"ProvisionedThroughputTypeDef",
|
|
262
|
-
"PutItemInputRequestTypeDef",
|
|
263
266
|
"PutItemInputTablePutItemTypeDef",
|
|
267
|
+
"PutItemInputTypeDef",
|
|
264
268
|
"PutItemOutputTableTypeDef",
|
|
265
269
|
"PutItemOutputTypeDef",
|
|
266
270
|
"PutRequestOutputTypeDef",
|
|
@@ -269,12 +273,12 @@ __all__ = (
|
|
|
269
273
|
"PutRequestServiceResourceUnionTypeDef",
|
|
270
274
|
"PutRequestTypeDef",
|
|
271
275
|
"PutRequestUnionTypeDef",
|
|
272
|
-
"
|
|
276
|
+
"PutResourcePolicyInputTypeDef",
|
|
273
277
|
"PutResourcePolicyOutputTypeDef",
|
|
274
278
|
"PutTypeDef",
|
|
275
279
|
"QueryInputPaginateTypeDef",
|
|
276
|
-
"QueryInputRequestTypeDef",
|
|
277
280
|
"QueryInputTableQueryTypeDef",
|
|
281
|
+
"QueryInputTypeDef",
|
|
278
282
|
"QueryOutputTableTypeDef",
|
|
279
283
|
"QueryOutputTypeDef",
|
|
280
284
|
"ReplicaAutoScalingDescriptionTypeDef",
|
|
@@ -293,16 +297,16 @@ __all__ = (
|
|
|
293
297
|
"ReplicationGroupUpdateTypeDef",
|
|
294
298
|
"ResponseMetadataTypeDef",
|
|
295
299
|
"RestoreSummaryTypeDef",
|
|
296
|
-
"
|
|
300
|
+
"RestoreTableFromBackupInputTypeDef",
|
|
297
301
|
"RestoreTableFromBackupOutputTypeDef",
|
|
298
|
-
"
|
|
302
|
+
"RestoreTableToPointInTimeInputTypeDef",
|
|
299
303
|
"RestoreTableToPointInTimeOutputTypeDef",
|
|
300
304
|
"S3BucketSourceTypeDef",
|
|
301
305
|
"SSEDescriptionTypeDef",
|
|
302
306
|
"SSESpecificationTypeDef",
|
|
303
307
|
"ScanInputPaginateTypeDef",
|
|
304
|
-
"ScanInputRequestTypeDef",
|
|
305
308
|
"ScanInputTableScanTypeDef",
|
|
309
|
+
"ScanInputTypeDef",
|
|
306
310
|
"ScanOutputTableTypeDef",
|
|
307
311
|
"ScanOutputTypeDef",
|
|
308
312
|
"SourceTableDetailsTypeDef",
|
|
@@ -314,44 +318,45 @@ __all__ = (
|
|
|
314
318
|
"TableClassSummaryTypeDef",
|
|
315
319
|
"TableCreationParametersOutputTypeDef",
|
|
316
320
|
"TableCreationParametersTypeDef",
|
|
321
|
+
"TableCreationParametersUnionTypeDef",
|
|
317
322
|
"TableDescriptionTypeDef",
|
|
318
323
|
"TableWarmThroughputDescriptionTypeDef",
|
|
319
|
-
"
|
|
324
|
+
"TagResourceInputTypeDef",
|
|
320
325
|
"TagTypeDef",
|
|
321
326
|
"TimeToLiveDescriptionTypeDef",
|
|
322
327
|
"TimeToLiveSpecificationTypeDef",
|
|
323
328
|
"TimestampTypeDef",
|
|
324
329
|
"TransactGetItemTypeDef",
|
|
325
|
-
"
|
|
330
|
+
"TransactGetItemsInputTypeDef",
|
|
326
331
|
"TransactGetItemsOutputTypeDef",
|
|
327
332
|
"TransactWriteItemTypeDef",
|
|
328
|
-
"
|
|
333
|
+
"TransactWriteItemsInputTypeDef",
|
|
329
334
|
"TransactWriteItemsOutputTypeDef",
|
|
330
335
|
"UniversalAttributeValueTypeDef",
|
|
331
|
-
"
|
|
332
|
-
"
|
|
336
|
+
"UntagResourceInputTypeDef",
|
|
337
|
+
"UpdateContinuousBackupsInputTypeDef",
|
|
333
338
|
"UpdateContinuousBackupsOutputTypeDef",
|
|
334
|
-
"
|
|
339
|
+
"UpdateContributorInsightsInputTypeDef",
|
|
335
340
|
"UpdateContributorInsightsOutputTypeDef",
|
|
336
341
|
"UpdateGlobalSecondaryIndexActionTypeDef",
|
|
337
|
-
"
|
|
342
|
+
"UpdateGlobalTableInputTypeDef",
|
|
338
343
|
"UpdateGlobalTableOutputTypeDef",
|
|
339
|
-
"
|
|
344
|
+
"UpdateGlobalTableSettingsInputTypeDef",
|
|
340
345
|
"UpdateGlobalTableSettingsOutputTypeDef",
|
|
341
|
-
"UpdateItemInputRequestTypeDef",
|
|
342
346
|
"UpdateItemInputTableUpdateItemTypeDef",
|
|
347
|
+
"UpdateItemInputTypeDef",
|
|
343
348
|
"UpdateItemOutputTableTypeDef",
|
|
344
349
|
"UpdateItemOutputTypeDef",
|
|
345
350
|
"UpdateKinesisStreamingConfigurationTypeDef",
|
|
346
|
-
"
|
|
351
|
+
"UpdateKinesisStreamingDestinationInputTypeDef",
|
|
347
352
|
"UpdateKinesisStreamingDestinationOutputTypeDef",
|
|
348
353
|
"UpdateReplicationGroupMemberActionTypeDef",
|
|
349
|
-
"UpdateTableInputRequestTypeDef",
|
|
350
354
|
"UpdateTableInputTableUpdateTypeDef",
|
|
355
|
+
"UpdateTableInputTypeDef",
|
|
351
356
|
"UpdateTableOutputTypeDef",
|
|
352
|
-
"
|
|
357
|
+
"UpdateTableReplicaAutoScalingInputTypeDef",
|
|
353
358
|
"UpdateTableReplicaAutoScalingOutputTypeDef",
|
|
354
|
-
"
|
|
359
|
+
"UpdateTimeToLiveInputTypeDef",
|
|
355
360
|
"UpdateTimeToLiveOutputTypeDef",
|
|
356
361
|
"UpdateTypeDef",
|
|
357
362
|
"WaiterConfigTypeDef",
|
|
@@ -479,7 +484,7 @@ class ContributorInsightsSummaryTypeDef(TypedDict):
|
|
|
479
484
|
ContributorInsightsStatus: NotRequired[ContributorInsightsStatusType]
|
|
480
485
|
|
|
481
486
|
|
|
482
|
-
class
|
|
487
|
+
class CreateBackupInputTypeDef(TypedDict):
|
|
483
488
|
TableName: str
|
|
484
489
|
BackupName: str
|
|
485
490
|
|
|
@@ -552,7 +557,7 @@ class CsvOptionsTypeDef(TypedDict):
|
|
|
552
557
|
HeaderList: NotRequired[Sequence[str]]
|
|
553
558
|
|
|
554
559
|
|
|
555
|
-
class
|
|
560
|
+
class DeleteBackupInputTypeDef(TypedDict):
|
|
556
561
|
BackupArn: str
|
|
557
562
|
|
|
558
563
|
|
|
@@ -574,24 +579,24 @@ DeleteReplicationGroupMemberActionTypeDef = TypedDict(
|
|
|
574
579
|
)
|
|
575
580
|
|
|
576
581
|
|
|
577
|
-
class
|
|
582
|
+
class DeleteResourcePolicyInputTypeDef(TypedDict):
|
|
578
583
|
ResourceArn: str
|
|
579
584
|
ExpectedRevisionId: NotRequired[str]
|
|
580
585
|
|
|
581
586
|
|
|
582
|
-
class
|
|
587
|
+
class DeleteTableInputTypeDef(TypedDict):
|
|
583
588
|
TableName: str
|
|
584
589
|
|
|
585
590
|
|
|
586
|
-
class
|
|
591
|
+
class DescribeBackupInputTypeDef(TypedDict):
|
|
587
592
|
BackupArn: str
|
|
588
593
|
|
|
589
594
|
|
|
590
|
-
class
|
|
595
|
+
class DescribeContinuousBackupsInputTypeDef(TypedDict):
|
|
591
596
|
TableName: str
|
|
592
597
|
|
|
593
598
|
|
|
594
|
-
class
|
|
599
|
+
class DescribeContributorInsightsInputTypeDef(TypedDict):
|
|
595
600
|
TableName: str
|
|
596
601
|
IndexName: NotRequired[str]
|
|
597
602
|
|
|
@@ -606,23 +611,23 @@ class EndpointTypeDef(TypedDict):
|
|
|
606
611
|
CachePeriodInMinutes: int
|
|
607
612
|
|
|
608
613
|
|
|
609
|
-
class
|
|
614
|
+
class DescribeExportInputTypeDef(TypedDict):
|
|
610
615
|
ExportArn: str
|
|
611
616
|
|
|
612
617
|
|
|
613
|
-
class
|
|
618
|
+
class DescribeGlobalTableInputTypeDef(TypedDict):
|
|
614
619
|
GlobalTableName: str
|
|
615
620
|
|
|
616
621
|
|
|
617
|
-
class
|
|
622
|
+
class DescribeGlobalTableSettingsInputTypeDef(TypedDict):
|
|
618
623
|
GlobalTableName: str
|
|
619
624
|
|
|
620
625
|
|
|
621
|
-
class
|
|
626
|
+
class DescribeImportInputTypeDef(TypedDict):
|
|
622
627
|
ImportArn: str
|
|
623
628
|
|
|
624
629
|
|
|
625
|
-
class
|
|
630
|
+
class DescribeKinesisStreamingDestinationInputTypeDef(TypedDict):
|
|
626
631
|
TableName: str
|
|
627
632
|
|
|
628
633
|
|
|
@@ -633,7 +638,7 @@ class KinesisDataStreamDestinationTypeDef(TypedDict):
|
|
|
633
638
|
ApproximateCreationDateTimePrecision: NotRequired[ApproximateCreationDateTimePrecisionType]
|
|
634
639
|
|
|
635
640
|
|
|
636
|
-
class
|
|
641
|
+
class DescribeTableInputTypeDef(TypedDict):
|
|
637
642
|
TableName: str
|
|
638
643
|
|
|
639
644
|
|
|
@@ -642,11 +647,11 @@ class WaiterConfigTypeDef(TypedDict):
|
|
|
642
647
|
MaxAttempts: NotRequired[int]
|
|
643
648
|
|
|
644
649
|
|
|
645
|
-
class
|
|
650
|
+
class DescribeTableReplicaAutoScalingInputTypeDef(TypedDict):
|
|
646
651
|
TableName: str
|
|
647
652
|
|
|
648
653
|
|
|
649
|
-
class
|
|
654
|
+
class DescribeTimeToLiveInputTypeDef(TypedDict):
|
|
650
655
|
TableName: str
|
|
651
656
|
|
|
652
657
|
|
|
@@ -674,7 +679,7 @@ class ExportSummaryTypeDef(TypedDict):
|
|
|
674
679
|
TimestampTypeDef = Union[datetime, str]
|
|
675
680
|
|
|
676
681
|
|
|
677
|
-
class
|
|
682
|
+
class GetResourcePolicyInputTypeDef(TypedDict):
|
|
678
683
|
ResourceArn: str
|
|
679
684
|
|
|
680
685
|
|
|
@@ -709,20 +714,20 @@ class PaginatorConfigTypeDef(TypedDict):
|
|
|
709
714
|
StartingToken: NotRequired[str]
|
|
710
715
|
|
|
711
716
|
|
|
712
|
-
class
|
|
717
|
+
class ListContributorInsightsInputTypeDef(TypedDict):
|
|
713
718
|
TableName: NotRequired[str]
|
|
714
719
|
NextToken: NotRequired[str]
|
|
715
720
|
MaxResults: NotRequired[int]
|
|
716
721
|
|
|
717
722
|
|
|
718
|
-
class
|
|
723
|
+
class ListExportsInputTypeDef(TypedDict):
|
|
719
724
|
TableArn: NotRequired[str]
|
|
720
725
|
MaxResults: NotRequired[int]
|
|
721
726
|
NextToken: NotRequired[str]
|
|
722
727
|
|
|
723
728
|
|
|
724
|
-
|
|
725
|
-
"
|
|
729
|
+
ListGlobalTablesInputTypeDef = TypedDict(
|
|
730
|
+
"ListGlobalTablesInputTypeDef",
|
|
726
731
|
{
|
|
727
732
|
"ExclusiveStartGlobalTableName": NotRequired[str],
|
|
728
733
|
"Limit": NotRequired[int],
|
|
@@ -731,18 +736,18 @@ ListGlobalTablesInputRequestTypeDef = TypedDict(
|
|
|
731
736
|
)
|
|
732
737
|
|
|
733
738
|
|
|
734
|
-
class
|
|
739
|
+
class ListImportsInputTypeDef(TypedDict):
|
|
735
740
|
TableArn: NotRequired[str]
|
|
736
741
|
PageSize: NotRequired[int]
|
|
737
742
|
NextToken: NotRequired[str]
|
|
738
743
|
|
|
739
744
|
|
|
740
|
-
class
|
|
745
|
+
class ListTablesInputTypeDef(TypedDict):
|
|
741
746
|
ExclusiveStartTableName: NotRequired[str]
|
|
742
747
|
Limit: NotRequired[int]
|
|
743
748
|
|
|
744
749
|
|
|
745
|
-
class
|
|
750
|
+
class ListTagsOfResourceInputTypeDef(TypedDict):
|
|
746
751
|
ResourceArn: str
|
|
747
752
|
NextToken: NotRequired[str]
|
|
748
753
|
|
|
@@ -757,7 +762,7 @@ class ProjectionTypeDef(TypedDict):
|
|
|
757
762
|
NonKeyAttributes: NotRequired[Sequence[str]]
|
|
758
763
|
|
|
759
764
|
|
|
760
|
-
class
|
|
765
|
+
class PutResourcePolicyInputTypeDef(TypedDict):
|
|
761
766
|
ResourceArn: str
|
|
762
767
|
Policy: str
|
|
763
768
|
ExpectedRevisionId: NotRequired[str]
|
|
@@ -798,12 +803,12 @@ class TimeToLiveSpecificationTypeDef(TypedDict):
|
|
|
798
803
|
AttributeName: str
|
|
799
804
|
|
|
800
805
|
|
|
801
|
-
class
|
|
806
|
+
class UntagResourceInputTypeDef(TypedDict):
|
|
802
807
|
ResourceArn: str
|
|
803
808
|
TagKeys: Sequence[str]
|
|
804
809
|
|
|
805
810
|
|
|
806
|
-
class
|
|
811
|
+
class UpdateContributorInsightsInputTypeDef(TypedDict):
|
|
807
812
|
TableName: str
|
|
808
813
|
ContributorInsightsAction: ContributorInsightsActionType
|
|
809
814
|
IndexName: NotRequired[str]
|
|
@@ -1038,7 +1043,7 @@ class UpdateGlobalSecondaryIndexActionTypeDef(TypedDict):
|
|
|
1038
1043
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
1039
1044
|
|
|
1040
1045
|
|
|
1041
|
-
class
|
|
1046
|
+
class CreateGlobalTableInputTypeDef(TypedDict):
|
|
1042
1047
|
GlobalTableName: str
|
|
1043
1048
|
ReplicationGroup: Sequence[ReplicaTypeDef]
|
|
1044
1049
|
|
|
@@ -1060,7 +1065,7 @@ class ListTagsOfResourceOutputTypeDef(TypedDict):
|
|
|
1060
1065
|
NextToken: NotRequired[str]
|
|
1061
1066
|
|
|
1062
1067
|
|
|
1063
|
-
class
|
|
1068
|
+
class TagResourceInputTypeDef(TypedDict):
|
|
1064
1069
|
ResourceArn: str
|
|
1065
1070
|
Tags: Sequence[TagTypeDef]
|
|
1066
1071
|
|
|
@@ -1069,7 +1074,8 @@ class InputFormatOptionsOutputTypeDef(TypedDict):
|
|
|
1069
1074
|
Csv: NotRequired[CsvOptionsOutputTypeDef]
|
|
1070
1075
|
|
|
1071
1076
|
|
|
1072
|
-
|
|
1077
|
+
class InputFormatOptionsTypeDef(TypedDict):
|
|
1078
|
+
Csv: NotRequired[CsvOptionsTypeDef]
|
|
1073
1079
|
|
|
1074
1080
|
|
|
1075
1081
|
class ReplicaUpdateTypeDef(TypedDict):
|
|
@@ -1098,6 +1104,11 @@ class DescribeKinesisStreamingDestinationOutputTypeDef(TypedDict):
|
|
|
1098
1104
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1099
1105
|
|
|
1100
1106
|
|
|
1107
|
+
class DescribeTableInputWaitExtraTypeDef(TypedDict):
|
|
1108
|
+
TableName: str
|
|
1109
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1110
|
+
|
|
1111
|
+
|
|
1101
1112
|
class DescribeTableInputWaitTypeDef(TypedDict):
|
|
1102
1113
|
TableName: str
|
|
1103
1114
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
@@ -1114,6 +1125,12 @@ class KinesisStreamingDestinationInputRequestTypeDef(TypedDict):
|
|
|
1114
1125
|
EnableKinesisStreamingConfiguration: NotRequired[EnableKinesisStreamingConfigurationTypeDef]
|
|
1115
1126
|
|
|
1116
1127
|
|
|
1128
|
+
class KinesisStreamingDestinationInputTypeDef(TypedDict):
|
|
1129
|
+
TableName: str
|
|
1130
|
+
StreamArn: str
|
|
1131
|
+
EnableKinesisStreamingConfiguration: NotRequired[EnableKinesisStreamingConfigurationTypeDef]
|
|
1132
|
+
|
|
1133
|
+
|
|
1117
1134
|
class KinesisStreamingDestinationOutputTypeDef(TypedDict):
|
|
1118
1135
|
TableName: str
|
|
1119
1136
|
StreamArn: str
|
|
@@ -1158,7 +1175,7 @@ class IncrementalExportSpecificationTypeDef(TypedDict):
|
|
|
1158
1175
|
ExportViewType: NotRequired[ExportViewTypeType]
|
|
1159
1176
|
|
|
1160
1177
|
|
|
1161
|
-
class
|
|
1178
|
+
class ListBackupsInputTypeDef(TypedDict):
|
|
1162
1179
|
TableName: NotRequired[str]
|
|
1163
1180
|
Limit: NotRequired[int]
|
|
1164
1181
|
TimeRangeLowerBound: NotRequired[TimestampTypeDef]
|
|
@@ -1248,7 +1265,7 @@ class ListTagsOfResourceInputPaginateTypeDef(TypedDict):
|
|
|
1248
1265
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1249
1266
|
|
|
1250
1267
|
|
|
1251
|
-
class
|
|
1268
|
+
class UpdateContinuousBackupsInputTypeDef(TypedDict):
|
|
1252
1269
|
TableName: str
|
|
1253
1270
|
PointInTimeRecoverySpecification: PointInTimeRecoverySpecificationTypeDef
|
|
1254
1271
|
|
|
@@ -1256,7 +1273,7 @@ class UpdateContinuousBackupsInputRequestTypeDef(TypedDict):
|
|
|
1256
1273
|
ProjectionUnionTypeDef = Union[ProjectionTypeDef, ProjectionOutputTypeDef]
|
|
1257
1274
|
|
|
1258
1275
|
|
|
1259
|
-
class
|
|
1276
|
+
class UpdateTimeToLiveInputTypeDef(TypedDict):
|
|
1260
1277
|
TableName: str
|
|
1261
1278
|
TimeToLiveSpecification: TimeToLiveSpecificationTypeDef
|
|
1262
1279
|
|
|
@@ -1266,7 +1283,7 @@ class UpdateTimeToLiveOutputTypeDef(TypedDict):
|
|
|
1266
1283
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1267
1284
|
|
|
1268
1285
|
|
|
1269
|
-
class
|
|
1286
|
+
class UpdateKinesisStreamingDestinationInputTypeDef(TypedDict):
|
|
1270
1287
|
TableName: str
|
|
1271
1288
|
StreamArn: str
|
|
1272
1289
|
UpdateKinesisStreamingConfiguration: NotRequired[UpdateKinesisStreamingConfigurationTypeDef]
|
|
@@ -1330,7 +1347,7 @@ class DeleteTypeDef(TypedDict):
|
|
|
1330
1347
|
ReturnValuesOnConditionCheckFailure: NotRequired[ReturnValuesOnConditionCheckFailureType]
|
|
1331
1348
|
|
|
1332
1349
|
|
|
1333
|
-
class
|
|
1350
|
+
class ExecuteStatementInputTypeDef(TypedDict):
|
|
1334
1351
|
Statement: str
|
|
1335
1352
|
Parameters: NotRequired[Sequence[UniversalAttributeValueTypeDef]]
|
|
1336
1353
|
ConsistentRead: NotRequired[bool]
|
|
@@ -1347,7 +1364,7 @@ class ExpectedAttributeValueTypeDef(TypedDict):
|
|
|
1347
1364
|
AttributeValueList: NotRequired[Sequence[UniversalAttributeValueTypeDef]]
|
|
1348
1365
|
|
|
1349
1366
|
|
|
1350
|
-
class
|
|
1367
|
+
class GetItemInputTypeDef(TypedDict):
|
|
1351
1368
|
TableName: str
|
|
1352
1369
|
Key: Mapping[str, UniversalAttributeValueTypeDef]
|
|
1353
1370
|
AttributesToGet: NotRequired[Sequence[str]]
|
|
@@ -1683,13 +1700,10 @@ UpdateReplicationGroupMemberActionTypeDef = TypedDict(
|
|
|
1683
1700
|
"TableClassOverride": NotRequired[TableClassType],
|
|
1684
1701
|
},
|
|
1685
1702
|
)
|
|
1703
|
+
InputFormatOptionsUnionTypeDef = Union[InputFormatOptionsTypeDef, InputFormatOptionsOutputTypeDef]
|
|
1686
1704
|
|
|
1687
1705
|
|
|
1688
|
-
class
|
|
1689
|
-
Csv: NotRequired[CsvOptionsUnionTypeDef]
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
class UpdateGlobalTableInputRequestTypeDef(TypedDict):
|
|
1706
|
+
class UpdateGlobalTableInputTypeDef(TypedDict):
|
|
1693
1707
|
GlobalTableName: str
|
|
1694
1708
|
ReplicaUpdates: Sequence[ReplicaUpdateTypeDef]
|
|
1695
1709
|
|
|
@@ -1704,20 +1718,9 @@ class ExportTableToPointInTimeOutputTypeDef(TypedDict):
|
|
|
1704
1718
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1705
1719
|
|
|
1706
1720
|
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
ExportTime: NotRequired[TimestampTypeDef]
|
|
1711
|
-
ClientToken: NotRequired[str]
|
|
1712
|
-
S3BucketOwner: NotRequired[str]
|
|
1713
|
-
S3Prefix: NotRequired[str]
|
|
1714
|
-
S3SseAlgorithm: NotRequired[S3SseAlgorithmType]
|
|
1715
|
-
S3SseKmsKeyId: NotRequired[str]
|
|
1716
|
-
ExportFormat: NotRequired[ExportFormatType]
|
|
1717
|
-
ExportType: NotRequired[ExportTypeType]
|
|
1718
|
-
IncrementalExportSpecification: NotRequired[IncrementalExportSpecificationTypeDef]
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
+
IncrementalExportSpecificationUnionTypeDef = Union[
|
|
1722
|
+
IncrementalExportSpecificationTypeDef, IncrementalExportSpecificationOutputTypeDef
|
|
1723
|
+
]
|
|
1721
1724
|
ReplicaDescriptionTypeDef = TypedDict(
|
|
1722
1725
|
"ReplicaDescriptionTypeDef",
|
|
1723
1726
|
{
|
|
@@ -1798,7 +1801,7 @@ class BatchWriteItemOutputTypeDef(TypedDict):
|
|
|
1798
1801
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1799
1802
|
|
|
1800
1803
|
|
|
1801
|
-
class
|
|
1804
|
+
class BatchExecuteStatementInputTypeDef(TypedDict):
|
|
1802
1805
|
Statements: Sequence[BatchStatementRequestTypeDef]
|
|
1803
1806
|
ReturnConsumedCapacity: NotRequired[ReturnConsumedCapacityType]
|
|
1804
1807
|
|
|
@@ -1822,7 +1825,7 @@ class QueryInputPaginateTypeDef(TypedDict):
|
|
|
1822
1825
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1823
1826
|
|
|
1824
1827
|
|
|
1825
|
-
class
|
|
1828
|
+
class QueryInputTypeDef(TypedDict):
|
|
1826
1829
|
TableName: str
|
|
1827
1830
|
IndexName: NotRequired[str]
|
|
1828
1831
|
Select: NotRequired[SelectType]
|
|
@@ -1860,7 +1863,7 @@ class ScanInputPaginateTypeDef(TypedDict):
|
|
|
1860
1863
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1861
1864
|
|
|
1862
1865
|
|
|
1863
|
-
class
|
|
1866
|
+
class ScanInputTypeDef(TypedDict):
|
|
1864
1867
|
TableName: str
|
|
1865
1868
|
IndexName: NotRequired[str]
|
|
1866
1869
|
AttributesToGet: NotRequired[Sequence[str]]
|
|
@@ -1882,7 +1885,7 @@ class ScanInputRequestTypeDef(TypedDict):
|
|
|
1882
1885
|
DeleteRequestUnionTypeDef = Union[DeleteRequestTypeDef, DeleteRequestOutputTypeDef]
|
|
1883
1886
|
|
|
1884
1887
|
|
|
1885
|
-
class
|
|
1888
|
+
class DeleteItemInputTypeDef(TypedDict):
|
|
1886
1889
|
TableName: str
|
|
1887
1890
|
Key: Mapping[str, UniversalAttributeValueTypeDef]
|
|
1888
1891
|
Expected: NotRequired[Mapping[str, ExpectedAttributeValueTypeDef]]
|
|
@@ -1896,7 +1899,7 @@ class DeleteItemInputRequestTypeDef(TypedDict):
|
|
|
1896
1899
|
ReturnValuesOnConditionCheckFailure: NotRequired[ReturnValuesOnConditionCheckFailureType]
|
|
1897
1900
|
|
|
1898
1901
|
|
|
1899
|
-
class
|
|
1902
|
+
class PutItemInputTypeDef(TypedDict):
|
|
1900
1903
|
TableName: str
|
|
1901
1904
|
Item: Mapping[str, UniversalAttributeValueTypeDef]
|
|
1902
1905
|
Expected: NotRequired[Mapping[str, ExpectedAttributeValueTypeDef]]
|
|
@@ -1910,7 +1913,7 @@ class PutItemInputRequestTypeDef(TypedDict):
|
|
|
1910
1913
|
ReturnValuesOnConditionCheckFailure: NotRequired[ReturnValuesOnConditionCheckFailureType]
|
|
1911
1914
|
|
|
1912
1915
|
|
|
1913
|
-
class
|
|
1916
|
+
class UpdateItemInputTypeDef(TypedDict):
|
|
1914
1917
|
TableName: str
|
|
1915
1918
|
Key: Mapping[str, UniversalAttributeValueTypeDef]
|
|
1916
1919
|
AttributeUpdates: NotRequired[Mapping[str, AttributeValueUpdateTypeDef]]
|
|
@@ -1933,7 +1936,7 @@ class TransactGetItemTypeDef(TypedDict):
|
|
|
1933
1936
|
KeysAndAttributesUnionTypeDef = Union[KeysAndAttributesTypeDef, KeysAndAttributesOutputTypeDef]
|
|
1934
1937
|
|
|
1935
1938
|
|
|
1936
|
-
class
|
|
1939
|
+
class ExecuteTransactionInputTypeDef(TypedDict):
|
|
1937
1940
|
TransactStatements: Sequence[ParameterizedStatementTypeDef]
|
|
1938
1941
|
ClientRequestToken: NotRequired[str]
|
|
1939
1942
|
ReturnConsumedCapacity: NotRequired[ReturnConsumedCapacityType]
|
|
@@ -2010,6 +2013,20 @@ class ReplicationGroupUpdateTypeDef(TypedDict):
|
|
|
2010
2013
|
Delete: NotRequired[DeleteReplicationGroupMemberActionTypeDef]
|
|
2011
2014
|
|
|
2012
2015
|
|
|
2016
|
+
class ExportTableToPointInTimeInputTypeDef(TypedDict):
|
|
2017
|
+
TableArn: str
|
|
2018
|
+
S3Bucket: str
|
|
2019
|
+
ExportTime: NotRequired[TimestampTypeDef]
|
|
2020
|
+
ClientToken: NotRequired[str]
|
|
2021
|
+
S3BucketOwner: NotRequired[str]
|
|
2022
|
+
S3Prefix: NotRequired[str]
|
|
2023
|
+
S3SseAlgorithm: NotRequired[S3SseAlgorithmType]
|
|
2024
|
+
S3SseKmsKeyId: NotRequired[str]
|
|
2025
|
+
ExportFormat: NotRequired[ExportFormatType]
|
|
2026
|
+
ExportType: NotRequired[ExportTypeType]
|
|
2027
|
+
IncrementalExportSpecification: NotRequired[IncrementalExportSpecificationUnionTypeDef]
|
|
2028
|
+
|
|
2029
|
+
|
|
2013
2030
|
class GlobalTableDescriptionTypeDef(TypedDict):
|
|
2014
2031
|
ReplicationGroup: NotRequired[List[ReplicaDescriptionTypeDef]]
|
|
2015
2032
|
GlobalTableArn: NotRequired[str]
|
|
@@ -2081,6 +2098,11 @@ class GlobalSecondaryIndexUpdateTypeDef(TypedDict):
|
|
|
2081
2098
|
Delete: NotRequired[DeleteGlobalSecondaryIndexActionTypeDef]
|
|
2082
2099
|
|
|
2083
2100
|
|
|
2101
|
+
GlobalSecondaryIndexUnionTypeDef = Union[
|
|
2102
|
+
GlobalSecondaryIndexTypeDef, GlobalSecondaryIndexOutputTypeDef
|
|
2103
|
+
]
|
|
2104
|
+
|
|
2105
|
+
|
|
2084
2106
|
class TableCreationParametersTypeDef(TypedDict):
|
|
2085
2107
|
TableName: str
|
|
2086
2108
|
AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
|
|
@@ -2092,73 +2114,12 @@ class TableCreationParametersTypeDef(TypedDict):
|
|
|
2092
2114
|
GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexTypeDef]]
|
|
2093
2115
|
|
|
2094
2116
|
|
|
2095
|
-
class
|
|
2096
|
-
AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
|
|
2097
|
-
TableName: str
|
|
2098
|
-
KeySchema: Sequence[KeySchemaElementTypeDef]
|
|
2099
|
-
LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
2100
|
-
GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexTypeDef]]
|
|
2101
|
-
BillingMode: NotRequired[BillingModeType]
|
|
2102
|
-
ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
|
|
2103
|
-
StreamSpecification: NotRequired[StreamSpecificationTypeDef]
|
|
2104
|
-
SSESpecification: NotRequired[SSESpecificationTypeDef]
|
|
2105
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
2106
|
-
TableClass: NotRequired[TableClassType]
|
|
2107
|
-
DeletionProtectionEnabled: NotRequired[bool]
|
|
2108
|
-
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2109
|
-
ResourcePolicy: NotRequired[str]
|
|
2110
|
-
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
class CreateTableInputServiceResourceCreateTableTypeDef(TypedDict):
|
|
2114
|
-
AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
|
|
2115
|
-
TableName: str
|
|
2116
|
-
KeySchema: Sequence[KeySchemaElementTypeDef]
|
|
2117
|
-
LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
2118
|
-
GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexTypeDef]]
|
|
2119
|
-
BillingMode: NotRequired[BillingModeType]
|
|
2120
|
-
ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
|
|
2121
|
-
StreamSpecification: NotRequired[StreamSpecificationTypeDef]
|
|
2122
|
-
SSESpecification: NotRequired[SSESpecificationTypeDef]
|
|
2123
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
2124
|
-
TableClass: NotRequired[TableClassType]
|
|
2125
|
-
DeletionProtectionEnabled: NotRequired[bool]
|
|
2126
|
-
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2127
|
-
ResourcePolicy: NotRequired[str]
|
|
2128
|
-
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
class RestoreTableFromBackupInputRequestTypeDef(TypedDict):
|
|
2132
|
-
TargetTableName: str
|
|
2133
|
-
BackupArn: str
|
|
2134
|
-
BillingModeOverride: NotRequired[BillingModeType]
|
|
2135
|
-
GlobalSecondaryIndexOverride: NotRequired[Sequence[GlobalSecondaryIndexTypeDef]]
|
|
2136
|
-
LocalSecondaryIndexOverride: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
2137
|
-
ProvisionedThroughputOverride: NotRequired[ProvisionedThroughputTypeDef]
|
|
2138
|
-
OnDemandThroughputOverride: NotRequired[OnDemandThroughputTypeDef]
|
|
2139
|
-
SSESpecificationOverride: NotRequired[SSESpecificationTypeDef]
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
class RestoreTableToPointInTimeInputRequestTypeDef(TypedDict):
|
|
2143
|
-
TargetTableName: str
|
|
2144
|
-
SourceTableArn: NotRequired[str]
|
|
2145
|
-
SourceTableName: NotRequired[str]
|
|
2146
|
-
UseLatestRestorableTime: NotRequired[bool]
|
|
2147
|
-
RestoreDateTime: NotRequired[TimestampTypeDef]
|
|
2148
|
-
BillingModeOverride: NotRequired[BillingModeType]
|
|
2149
|
-
GlobalSecondaryIndexOverride: NotRequired[Sequence[GlobalSecondaryIndexTypeDef]]
|
|
2150
|
-
LocalSecondaryIndexOverride: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
2151
|
-
ProvisionedThroughputOverride: NotRequired[ProvisionedThroughputTypeDef]
|
|
2152
|
-
OnDemandThroughputOverride: NotRequired[OnDemandThroughputTypeDef]
|
|
2153
|
-
SSESpecificationOverride: NotRequired[SSESpecificationTypeDef]
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
class TransactGetItemsInputRequestTypeDef(TypedDict):
|
|
2117
|
+
class TransactGetItemsInputTypeDef(TypedDict):
|
|
2157
2118
|
TransactItems: Sequence[TransactGetItemTypeDef]
|
|
2158
2119
|
ReturnConsumedCapacity: NotRequired[ReturnConsumedCapacityType]
|
|
2159
2120
|
|
|
2160
2121
|
|
|
2161
|
-
class
|
|
2122
|
+
class BatchGetItemInputTypeDef(TypedDict):
|
|
2162
2123
|
RequestItems: Mapping[str, KeysAndAttributesUnionTypeDef]
|
|
2163
2124
|
ReturnConsumedCapacity: NotRequired[ReturnConsumedCapacityType]
|
|
2164
2125
|
|
|
@@ -2168,7 +2129,7 @@ class WriteRequestTypeDef(TypedDict):
|
|
|
2168
2129
|
DeleteRequest: NotRequired[DeleteRequestUnionTypeDef]
|
|
2169
2130
|
|
|
2170
2131
|
|
|
2171
|
-
class
|
|
2132
|
+
class TransactWriteItemsInputTypeDef(TypedDict):
|
|
2172
2133
|
TransactItems: Sequence[TransactWriteItemTypeDef]
|
|
2173
2134
|
ReturnConsumedCapacity: NotRequired[ReturnConsumedCapacityType]
|
|
2174
2135
|
ReturnItemCollectionMetrics: NotRequired[ReturnItemCollectionMetricsType]
|
|
@@ -2307,8 +2268,7 @@ class DescribeBackupOutputTypeDef(TypedDict):
|
|
|
2307
2268
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2308
2269
|
|
|
2309
2270
|
|
|
2310
|
-
class
|
|
2311
|
-
TableName: str
|
|
2271
|
+
class UpdateTableInputTableUpdateTypeDef(TypedDict):
|
|
2312
2272
|
AttributeDefinitions: NotRequired[Sequence[AttributeDefinitionTypeDef]]
|
|
2313
2273
|
BillingMode: NotRequired[BillingModeType]
|
|
2314
2274
|
ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
|
|
@@ -2323,7 +2283,8 @@ class UpdateTableInputRequestTypeDef(TypedDict):
|
|
|
2323
2283
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2324
2284
|
|
|
2325
2285
|
|
|
2326
|
-
class
|
|
2286
|
+
class UpdateTableInputTypeDef(TypedDict):
|
|
2287
|
+
TableName: str
|
|
2327
2288
|
AttributeDefinitions: NotRequired[Sequence[AttributeDefinitionTypeDef]]
|
|
2328
2289
|
BillingMode: NotRequired[BillingModeType]
|
|
2329
2290
|
ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
|
|
@@ -2338,15 +2299,70 @@ class UpdateTableInputTableUpdateTypeDef(TypedDict):
|
|
|
2338
2299
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2339
2300
|
|
|
2340
2301
|
|
|
2341
|
-
class
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2302
|
+
class CreateTableInputServiceResourceCreateTableTypeDef(TypedDict):
|
|
2303
|
+
AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
|
|
2304
|
+
TableName: str
|
|
2305
|
+
KeySchema: Sequence[KeySchemaElementTypeDef]
|
|
2306
|
+
LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
2307
|
+
GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
|
|
2308
|
+
BillingMode: NotRequired[BillingModeType]
|
|
2309
|
+
ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
|
|
2310
|
+
StreamSpecification: NotRequired[StreamSpecificationTypeDef]
|
|
2311
|
+
SSESpecification: NotRequired[SSESpecificationTypeDef]
|
|
2312
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
2313
|
+
TableClass: NotRequired[TableClassType]
|
|
2314
|
+
DeletionProtectionEnabled: NotRequired[bool]
|
|
2315
|
+
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2316
|
+
ResourcePolicy: NotRequired[str]
|
|
2317
|
+
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2318
|
+
|
|
2319
|
+
|
|
2320
|
+
class CreateTableInputTypeDef(TypedDict):
|
|
2321
|
+
AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
|
|
2322
|
+
TableName: str
|
|
2323
|
+
KeySchema: Sequence[KeySchemaElementTypeDef]
|
|
2324
|
+
LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
2325
|
+
GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
|
|
2326
|
+
BillingMode: NotRequired[BillingModeType]
|
|
2327
|
+
ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
|
|
2328
|
+
StreamSpecification: NotRequired[StreamSpecificationTypeDef]
|
|
2329
|
+
SSESpecification: NotRequired[SSESpecificationTypeDef]
|
|
2330
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
2331
|
+
TableClass: NotRequired[TableClassType]
|
|
2332
|
+
DeletionProtectionEnabled: NotRequired[bool]
|
|
2333
|
+
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2334
|
+
ResourcePolicy: NotRequired[str]
|
|
2335
|
+
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2336
|
+
|
|
2337
|
+
|
|
2338
|
+
class RestoreTableFromBackupInputTypeDef(TypedDict):
|
|
2339
|
+
TargetTableName: str
|
|
2340
|
+
BackupArn: str
|
|
2341
|
+
BillingModeOverride: NotRequired[BillingModeType]
|
|
2342
|
+
GlobalSecondaryIndexOverride: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
|
|
2343
|
+
LocalSecondaryIndexOverride: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
2344
|
+
ProvisionedThroughputOverride: NotRequired[ProvisionedThroughputTypeDef]
|
|
2345
|
+
OnDemandThroughputOverride: NotRequired[OnDemandThroughputTypeDef]
|
|
2346
|
+
SSESpecificationOverride: NotRequired[SSESpecificationTypeDef]
|
|
2348
2347
|
|
|
2349
2348
|
|
|
2349
|
+
class RestoreTableToPointInTimeInputTypeDef(TypedDict):
|
|
2350
|
+
TargetTableName: str
|
|
2351
|
+
SourceTableArn: NotRequired[str]
|
|
2352
|
+
SourceTableName: NotRequired[str]
|
|
2353
|
+
UseLatestRestorableTime: NotRequired[bool]
|
|
2354
|
+
RestoreDateTime: NotRequired[TimestampTypeDef]
|
|
2355
|
+
BillingModeOverride: NotRequired[BillingModeType]
|
|
2356
|
+
GlobalSecondaryIndexOverride: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
|
|
2357
|
+
LocalSecondaryIndexOverride: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
2358
|
+
ProvisionedThroughputOverride: NotRequired[ProvisionedThroughputTypeDef]
|
|
2359
|
+
OnDemandThroughputOverride: NotRequired[OnDemandThroughputTypeDef]
|
|
2360
|
+
SSESpecificationOverride: NotRequired[SSESpecificationTypeDef]
|
|
2361
|
+
|
|
2362
|
+
|
|
2363
|
+
TableCreationParametersUnionTypeDef = Union[
|
|
2364
|
+
TableCreationParametersTypeDef, TableCreationParametersOutputTypeDef
|
|
2365
|
+
]
|
|
2350
2366
|
WriteRequestUnionTypeDef = Union[WriteRequestTypeDef, WriteRequestOutputTypeDef]
|
|
2351
2367
|
|
|
2352
2368
|
|
|
@@ -2374,14 +2390,14 @@ class UpdateGlobalTableSettingsOutputTypeDef(TypedDict):
|
|
|
2374
2390
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2375
2391
|
|
|
2376
2392
|
|
|
2377
|
-
class
|
|
2393
|
+
class UpdateTableReplicaAutoScalingInputTypeDef(TypedDict):
|
|
2378
2394
|
TableName: str
|
|
2379
2395
|
GlobalSecondaryIndexUpdates: NotRequired[Sequence[GlobalSecondaryIndexAutoScalingUpdateTypeDef]]
|
|
2380
2396
|
ProvisionedWriteCapacityAutoScalingUpdate: NotRequired[AutoScalingSettingsUpdateTypeDef]
|
|
2381
2397
|
ReplicaUpdates: NotRequired[Sequence[ReplicaAutoScalingUpdateTypeDef]]
|
|
2382
2398
|
|
|
2383
2399
|
|
|
2384
|
-
class
|
|
2400
|
+
class UpdateGlobalTableSettingsInputTypeDef(TypedDict):
|
|
2385
2401
|
GlobalTableName: str
|
|
2386
2402
|
GlobalTableBillingMode: NotRequired[BillingModeType]
|
|
2387
2403
|
GlobalTableProvisionedWriteCapacityUnits: NotRequired[int]
|
|
@@ -2394,7 +2410,16 @@ class UpdateGlobalTableSettingsInputRequestTypeDef(TypedDict):
|
|
|
2394
2410
|
ReplicaSettingsUpdate: NotRequired[Sequence[ReplicaSettingsUpdateTypeDef]]
|
|
2395
2411
|
|
|
2396
2412
|
|
|
2397
|
-
class
|
|
2413
|
+
class ImportTableInputTypeDef(TypedDict):
|
|
2414
|
+
S3BucketSource: S3BucketSourceTypeDef
|
|
2415
|
+
InputFormat: InputFormatType
|
|
2416
|
+
TableCreationParameters: TableCreationParametersUnionTypeDef
|
|
2417
|
+
ClientToken: NotRequired[str]
|
|
2418
|
+
InputFormatOptions: NotRequired[InputFormatOptionsUnionTypeDef]
|
|
2419
|
+
InputCompressionType: NotRequired[InputCompressionTypeType]
|
|
2420
|
+
|
|
2421
|
+
|
|
2422
|
+
class BatchWriteItemInputTypeDef(TypedDict):
|
|
2398
2423
|
RequestItems: Mapping[str, Sequence[WriteRequestUnionTypeDef]]
|
|
2399
2424
|
ReturnConsumedCapacity: NotRequired[ReturnConsumedCapacityType]
|
|
2400
2425
|
ReturnItemCollectionMetrics: NotRequired[ReturnItemCollectionMetricsType]
|