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
|
|
@@ -93,17 +93,17 @@ __all__ = (
|
|
|
93
93
|
"BackupDescriptionTypeDef",
|
|
94
94
|
"BackupDetailsTypeDef",
|
|
95
95
|
"BackupSummaryTypeDef",
|
|
96
|
-
"
|
|
96
|
+
"BatchExecuteStatementInputTypeDef",
|
|
97
97
|
"BatchExecuteStatementOutputTypeDef",
|
|
98
|
-
"BatchGetItemInputRequestTypeDef",
|
|
99
98
|
"BatchGetItemInputServiceResourceBatchGetItemTypeDef",
|
|
99
|
+
"BatchGetItemInputTypeDef",
|
|
100
100
|
"BatchGetItemOutputServiceResourceTypeDef",
|
|
101
101
|
"BatchGetItemOutputTypeDef",
|
|
102
102
|
"BatchStatementErrorTypeDef",
|
|
103
103
|
"BatchStatementRequestTypeDef",
|
|
104
104
|
"BatchStatementResponseTypeDef",
|
|
105
|
-
"BatchWriteItemInputRequestTypeDef",
|
|
106
105
|
"BatchWriteItemInputServiceResourceBatchWriteItemTypeDef",
|
|
106
|
+
"BatchWriteItemInputTypeDef",
|
|
107
107
|
"BatchWriteItemOutputServiceResourceTypeDef",
|
|
108
108
|
"BatchWriteItemOutputTypeDef",
|
|
109
109
|
"BillingModeSummaryTypeDef",
|
|
@@ -115,24 +115,23 @@ __all__ = (
|
|
|
115
115
|
"ConsumedCapacityTypeDef",
|
|
116
116
|
"ContinuousBackupsDescriptionTypeDef",
|
|
117
117
|
"ContributorInsightsSummaryTypeDef",
|
|
118
|
-
"
|
|
118
|
+
"CreateBackupInputTypeDef",
|
|
119
119
|
"CreateBackupOutputTypeDef",
|
|
120
120
|
"CreateGlobalSecondaryIndexActionTypeDef",
|
|
121
|
-
"
|
|
121
|
+
"CreateGlobalTableInputTypeDef",
|
|
122
122
|
"CreateGlobalTableOutputTypeDef",
|
|
123
123
|
"CreateReplicaActionTypeDef",
|
|
124
124
|
"CreateReplicationGroupMemberActionTypeDef",
|
|
125
|
-
"CreateTableInputRequestTypeDef",
|
|
126
125
|
"CreateTableInputServiceResourceCreateTableTypeDef",
|
|
126
|
+
"CreateTableInputTypeDef",
|
|
127
127
|
"CreateTableOutputTypeDef",
|
|
128
128
|
"CsvOptionsOutputTypeDef",
|
|
129
129
|
"CsvOptionsTypeDef",
|
|
130
|
-
"
|
|
131
|
-
"DeleteBackupInputRequestTypeDef",
|
|
130
|
+
"DeleteBackupInputTypeDef",
|
|
132
131
|
"DeleteBackupOutputTypeDef",
|
|
133
132
|
"DeleteGlobalSecondaryIndexActionTypeDef",
|
|
134
|
-
"DeleteItemInputRequestTypeDef",
|
|
135
133
|
"DeleteItemInputTableDeleteItemTypeDef",
|
|
134
|
+
"DeleteItemInputTypeDef",
|
|
136
135
|
"DeleteItemOutputTableTypeDef",
|
|
137
136
|
"DeleteItemOutputTypeDef",
|
|
138
137
|
"DeleteReplicaActionTypeDef",
|
|
@@ -143,55 +142,56 @@ __all__ = (
|
|
|
143
142
|
"DeleteRequestServiceResourceUnionTypeDef",
|
|
144
143
|
"DeleteRequestTypeDef",
|
|
145
144
|
"DeleteRequestUnionTypeDef",
|
|
146
|
-
"
|
|
145
|
+
"DeleteResourcePolicyInputTypeDef",
|
|
147
146
|
"DeleteResourcePolicyOutputTypeDef",
|
|
148
|
-
"
|
|
147
|
+
"DeleteTableInputTypeDef",
|
|
149
148
|
"DeleteTableOutputTypeDef",
|
|
150
149
|
"DeleteTypeDef",
|
|
151
|
-
"
|
|
150
|
+
"DescribeBackupInputTypeDef",
|
|
152
151
|
"DescribeBackupOutputTypeDef",
|
|
153
|
-
"
|
|
152
|
+
"DescribeContinuousBackupsInputTypeDef",
|
|
154
153
|
"DescribeContinuousBackupsOutputTypeDef",
|
|
155
|
-
"
|
|
154
|
+
"DescribeContributorInsightsInputTypeDef",
|
|
156
155
|
"DescribeContributorInsightsOutputTypeDef",
|
|
157
156
|
"DescribeEndpointsResponseTypeDef",
|
|
158
|
-
"
|
|
157
|
+
"DescribeExportInputTypeDef",
|
|
159
158
|
"DescribeExportOutputTypeDef",
|
|
160
|
-
"
|
|
159
|
+
"DescribeGlobalTableInputTypeDef",
|
|
161
160
|
"DescribeGlobalTableOutputTypeDef",
|
|
162
|
-
"
|
|
161
|
+
"DescribeGlobalTableSettingsInputTypeDef",
|
|
163
162
|
"DescribeGlobalTableSettingsOutputTypeDef",
|
|
164
|
-
"
|
|
163
|
+
"DescribeImportInputTypeDef",
|
|
165
164
|
"DescribeImportOutputTypeDef",
|
|
166
|
-
"
|
|
165
|
+
"DescribeKinesisStreamingDestinationInputTypeDef",
|
|
167
166
|
"DescribeKinesisStreamingDestinationOutputTypeDef",
|
|
168
167
|
"DescribeLimitsOutputTypeDef",
|
|
169
|
-
"
|
|
168
|
+
"DescribeTableInputTypeDef",
|
|
169
|
+
"DescribeTableInputWaitExtraTypeDef",
|
|
170
170
|
"DescribeTableInputWaitTypeDef",
|
|
171
171
|
"DescribeTableOutputTypeDef",
|
|
172
|
-
"
|
|
172
|
+
"DescribeTableReplicaAutoScalingInputTypeDef",
|
|
173
173
|
"DescribeTableReplicaAutoScalingOutputTypeDef",
|
|
174
|
-
"
|
|
174
|
+
"DescribeTimeToLiveInputTypeDef",
|
|
175
175
|
"DescribeTimeToLiveOutputTypeDef",
|
|
176
176
|
"EmptyResponseMetadataTypeDef",
|
|
177
177
|
"EnableKinesisStreamingConfigurationTypeDef",
|
|
178
178
|
"EndpointTypeDef",
|
|
179
|
-
"
|
|
179
|
+
"ExecuteStatementInputTypeDef",
|
|
180
180
|
"ExecuteStatementOutputTypeDef",
|
|
181
|
-
"
|
|
181
|
+
"ExecuteTransactionInputTypeDef",
|
|
182
182
|
"ExecuteTransactionOutputTypeDef",
|
|
183
183
|
"ExpectedAttributeValueTableTypeDef",
|
|
184
184
|
"ExpectedAttributeValueTypeDef",
|
|
185
185
|
"ExportDescriptionTypeDef",
|
|
186
186
|
"ExportSummaryTypeDef",
|
|
187
|
-
"
|
|
187
|
+
"ExportTableToPointInTimeInputTypeDef",
|
|
188
188
|
"ExportTableToPointInTimeOutputTypeDef",
|
|
189
189
|
"FailureExceptionTypeDef",
|
|
190
|
-
"GetItemInputRequestTypeDef",
|
|
191
190
|
"GetItemInputTableGetItemTypeDef",
|
|
191
|
+
"GetItemInputTypeDef",
|
|
192
192
|
"GetItemOutputTableTypeDef",
|
|
193
193
|
"GetItemOutputTypeDef",
|
|
194
|
-
"
|
|
194
|
+
"GetResourcePolicyInputTypeDef",
|
|
195
195
|
"GetResourcePolicyOutputTypeDef",
|
|
196
196
|
"GetTypeDef",
|
|
197
197
|
"GlobalSecondaryIndexAutoScalingUpdateTypeDef",
|
|
@@ -199,6 +199,7 @@ __all__ = (
|
|
|
199
199
|
"GlobalSecondaryIndexInfoTypeDef",
|
|
200
200
|
"GlobalSecondaryIndexOutputTypeDef",
|
|
201
201
|
"GlobalSecondaryIndexTypeDef",
|
|
202
|
+
"GlobalSecondaryIndexUnionTypeDef",
|
|
202
203
|
"GlobalSecondaryIndexUpdateTypeDef",
|
|
203
204
|
"GlobalSecondaryIndexWarmThroughputDescriptionTypeDef",
|
|
204
205
|
"GlobalTableDescriptionTypeDef",
|
|
@@ -206,12 +207,14 @@ __all__ = (
|
|
|
206
207
|
"GlobalTableTypeDef",
|
|
207
208
|
"ImportSummaryTypeDef",
|
|
208
209
|
"ImportTableDescriptionTypeDef",
|
|
209
|
-
"
|
|
210
|
+
"ImportTableInputTypeDef",
|
|
210
211
|
"ImportTableOutputTypeDef",
|
|
211
212
|
"IncrementalExportSpecificationOutputTypeDef",
|
|
212
213
|
"IncrementalExportSpecificationTypeDef",
|
|
214
|
+
"IncrementalExportSpecificationUnionTypeDef",
|
|
213
215
|
"InputFormatOptionsOutputTypeDef",
|
|
214
216
|
"InputFormatOptionsTypeDef",
|
|
217
|
+
"InputFormatOptionsUnionTypeDef",
|
|
215
218
|
"ItemCollectionMetricsServiceResourceTypeDef",
|
|
216
219
|
"ItemCollectionMetricsTableTypeDef",
|
|
217
220
|
"ItemCollectionMetricsTypeDef",
|
|
@@ -225,23 +228,24 @@ __all__ = (
|
|
|
225
228
|
"KeysAndAttributesUnionTypeDef",
|
|
226
229
|
"KinesisDataStreamDestinationTypeDef",
|
|
227
230
|
"KinesisStreamingDestinationInputRequestTypeDef",
|
|
231
|
+
"KinesisStreamingDestinationInputTypeDef",
|
|
228
232
|
"KinesisStreamingDestinationOutputTypeDef",
|
|
229
233
|
"ListBackupsInputPaginateTypeDef",
|
|
230
|
-
"
|
|
234
|
+
"ListBackupsInputTypeDef",
|
|
231
235
|
"ListBackupsOutputTypeDef",
|
|
232
|
-
"
|
|
236
|
+
"ListContributorInsightsInputTypeDef",
|
|
233
237
|
"ListContributorInsightsOutputTypeDef",
|
|
234
|
-
"
|
|
238
|
+
"ListExportsInputTypeDef",
|
|
235
239
|
"ListExportsOutputTypeDef",
|
|
236
|
-
"
|
|
240
|
+
"ListGlobalTablesInputTypeDef",
|
|
237
241
|
"ListGlobalTablesOutputTypeDef",
|
|
238
|
-
"
|
|
242
|
+
"ListImportsInputTypeDef",
|
|
239
243
|
"ListImportsOutputTypeDef",
|
|
240
244
|
"ListTablesInputPaginateTypeDef",
|
|
241
|
-
"
|
|
245
|
+
"ListTablesInputTypeDef",
|
|
242
246
|
"ListTablesOutputTypeDef",
|
|
243
247
|
"ListTagsOfResourceInputPaginateTypeDef",
|
|
244
|
-
"
|
|
248
|
+
"ListTagsOfResourceInputTypeDef",
|
|
245
249
|
"ListTagsOfResourceOutputTypeDef",
|
|
246
250
|
"LocalSecondaryIndexDescriptionTypeDef",
|
|
247
251
|
"LocalSecondaryIndexInfoTypeDef",
|
|
@@ -258,8 +262,8 @@ __all__ = (
|
|
|
258
262
|
"ProvisionedThroughputDescriptionTypeDef",
|
|
259
263
|
"ProvisionedThroughputOverrideTypeDef",
|
|
260
264
|
"ProvisionedThroughputTypeDef",
|
|
261
|
-
"PutItemInputRequestTypeDef",
|
|
262
265
|
"PutItemInputTablePutItemTypeDef",
|
|
266
|
+
"PutItemInputTypeDef",
|
|
263
267
|
"PutItemOutputTableTypeDef",
|
|
264
268
|
"PutItemOutputTypeDef",
|
|
265
269
|
"PutRequestOutputTypeDef",
|
|
@@ -268,12 +272,12 @@ __all__ = (
|
|
|
268
272
|
"PutRequestServiceResourceUnionTypeDef",
|
|
269
273
|
"PutRequestTypeDef",
|
|
270
274
|
"PutRequestUnionTypeDef",
|
|
271
|
-
"
|
|
275
|
+
"PutResourcePolicyInputTypeDef",
|
|
272
276
|
"PutResourcePolicyOutputTypeDef",
|
|
273
277
|
"PutTypeDef",
|
|
274
278
|
"QueryInputPaginateTypeDef",
|
|
275
|
-
"QueryInputRequestTypeDef",
|
|
276
279
|
"QueryInputTableQueryTypeDef",
|
|
280
|
+
"QueryInputTypeDef",
|
|
277
281
|
"QueryOutputTableTypeDef",
|
|
278
282
|
"QueryOutputTypeDef",
|
|
279
283
|
"ReplicaAutoScalingDescriptionTypeDef",
|
|
@@ -292,16 +296,16 @@ __all__ = (
|
|
|
292
296
|
"ReplicationGroupUpdateTypeDef",
|
|
293
297
|
"ResponseMetadataTypeDef",
|
|
294
298
|
"RestoreSummaryTypeDef",
|
|
295
|
-
"
|
|
299
|
+
"RestoreTableFromBackupInputTypeDef",
|
|
296
300
|
"RestoreTableFromBackupOutputTypeDef",
|
|
297
|
-
"
|
|
301
|
+
"RestoreTableToPointInTimeInputTypeDef",
|
|
298
302
|
"RestoreTableToPointInTimeOutputTypeDef",
|
|
299
303
|
"S3BucketSourceTypeDef",
|
|
300
304
|
"SSEDescriptionTypeDef",
|
|
301
305
|
"SSESpecificationTypeDef",
|
|
302
306
|
"ScanInputPaginateTypeDef",
|
|
303
|
-
"ScanInputRequestTypeDef",
|
|
304
307
|
"ScanInputTableScanTypeDef",
|
|
308
|
+
"ScanInputTypeDef",
|
|
305
309
|
"ScanOutputTableTypeDef",
|
|
306
310
|
"ScanOutputTypeDef",
|
|
307
311
|
"SourceTableDetailsTypeDef",
|
|
@@ -313,44 +317,45 @@ __all__ = (
|
|
|
313
317
|
"TableClassSummaryTypeDef",
|
|
314
318
|
"TableCreationParametersOutputTypeDef",
|
|
315
319
|
"TableCreationParametersTypeDef",
|
|
320
|
+
"TableCreationParametersUnionTypeDef",
|
|
316
321
|
"TableDescriptionTypeDef",
|
|
317
322
|
"TableWarmThroughputDescriptionTypeDef",
|
|
318
|
-
"
|
|
323
|
+
"TagResourceInputTypeDef",
|
|
319
324
|
"TagTypeDef",
|
|
320
325
|
"TimeToLiveDescriptionTypeDef",
|
|
321
326
|
"TimeToLiveSpecificationTypeDef",
|
|
322
327
|
"TimestampTypeDef",
|
|
323
328
|
"TransactGetItemTypeDef",
|
|
324
|
-
"
|
|
329
|
+
"TransactGetItemsInputTypeDef",
|
|
325
330
|
"TransactGetItemsOutputTypeDef",
|
|
326
331
|
"TransactWriteItemTypeDef",
|
|
327
|
-
"
|
|
332
|
+
"TransactWriteItemsInputTypeDef",
|
|
328
333
|
"TransactWriteItemsOutputTypeDef",
|
|
329
334
|
"UniversalAttributeValueTypeDef",
|
|
330
|
-
"
|
|
331
|
-
"
|
|
335
|
+
"UntagResourceInputTypeDef",
|
|
336
|
+
"UpdateContinuousBackupsInputTypeDef",
|
|
332
337
|
"UpdateContinuousBackupsOutputTypeDef",
|
|
333
|
-
"
|
|
338
|
+
"UpdateContributorInsightsInputTypeDef",
|
|
334
339
|
"UpdateContributorInsightsOutputTypeDef",
|
|
335
340
|
"UpdateGlobalSecondaryIndexActionTypeDef",
|
|
336
|
-
"
|
|
341
|
+
"UpdateGlobalTableInputTypeDef",
|
|
337
342
|
"UpdateGlobalTableOutputTypeDef",
|
|
338
|
-
"
|
|
343
|
+
"UpdateGlobalTableSettingsInputTypeDef",
|
|
339
344
|
"UpdateGlobalTableSettingsOutputTypeDef",
|
|
340
|
-
"UpdateItemInputRequestTypeDef",
|
|
341
345
|
"UpdateItemInputTableUpdateItemTypeDef",
|
|
346
|
+
"UpdateItemInputTypeDef",
|
|
342
347
|
"UpdateItemOutputTableTypeDef",
|
|
343
348
|
"UpdateItemOutputTypeDef",
|
|
344
349
|
"UpdateKinesisStreamingConfigurationTypeDef",
|
|
345
|
-
"
|
|
350
|
+
"UpdateKinesisStreamingDestinationInputTypeDef",
|
|
346
351
|
"UpdateKinesisStreamingDestinationOutputTypeDef",
|
|
347
352
|
"UpdateReplicationGroupMemberActionTypeDef",
|
|
348
|
-
"UpdateTableInputRequestTypeDef",
|
|
349
353
|
"UpdateTableInputTableUpdateTypeDef",
|
|
354
|
+
"UpdateTableInputTypeDef",
|
|
350
355
|
"UpdateTableOutputTypeDef",
|
|
351
|
-
"
|
|
356
|
+
"UpdateTableReplicaAutoScalingInputTypeDef",
|
|
352
357
|
"UpdateTableReplicaAutoScalingOutputTypeDef",
|
|
353
|
-
"
|
|
358
|
+
"UpdateTimeToLiveInputTypeDef",
|
|
354
359
|
"UpdateTimeToLiveOutputTypeDef",
|
|
355
360
|
"UpdateTypeDef",
|
|
356
361
|
"WaiterConfigTypeDef",
|
|
@@ -463,7 +468,7 @@ class ContributorInsightsSummaryTypeDef(TypedDict):
|
|
|
463
468
|
IndexName: NotRequired[str]
|
|
464
469
|
ContributorInsightsStatus: NotRequired[ContributorInsightsStatusType]
|
|
465
470
|
|
|
466
|
-
class
|
|
471
|
+
class CreateBackupInputTypeDef(TypedDict):
|
|
467
472
|
TableName: str
|
|
468
473
|
BackupName: str
|
|
469
474
|
|
|
@@ -523,7 +528,7 @@ class CsvOptionsTypeDef(TypedDict):
|
|
|
523
528
|
Delimiter: NotRequired[str]
|
|
524
529
|
HeaderList: NotRequired[Sequence[str]]
|
|
525
530
|
|
|
526
|
-
class
|
|
531
|
+
class DeleteBackupInputTypeDef(TypedDict):
|
|
527
532
|
BackupArn: str
|
|
528
533
|
|
|
529
534
|
class DeleteGlobalSecondaryIndexActionTypeDef(TypedDict):
|
|
@@ -542,20 +547,20 @@ DeleteReplicationGroupMemberActionTypeDef = TypedDict(
|
|
|
542
547
|
},
|
|
543
548
|
)
|
|
544
549
|
|
|
545
|
-
class
|
|
550
|
+
class DeleteResourcePolicyInputTypeDef(TypedDict):
|
|
546
551
|
ResourceArn: str
|
|
547
552
|
ExpectedRevisionId: NotRequired[str]
|
|
548
553
|
|
|
549
|
-
class
|
|
554
|
+
class DeleteTableInputTypeDef(TypedDict):
|
|
550
555
|
TableName: str
|
|
551
556
|
|
|
552
|
-
class
|
|
557
|
+
class DescribeBackupInputTypeDef(TypedDict):
|
|
553
558
|
BackupArn: str
|
|
554
559
|
|
|
555
|
-
class
|
|
560
|
+
class DescribeContinuousBackupsInputTypeDef(TypedDict):
|
|
556
561
|
TableName: str
|
|
557
562
|
|
|
558
|
-
class
|
|
563
|
+
class DescribeContributorInsightsInputTypeDef(TypedDict):
|
|
559
564
|
TableName: str
|
|
560
565
|
IndexName: NotRequired[str]
|
|
561
566
|
|
|
@@ -567,19 +572,19 @@ class EndpointTypeDef(TypedDict):
|
|
|
567
572
|
Address: str
|
|
568
573
|
CachePeriodInMinutes: int
|
|
569
574
|
|
|
570
|
-
class
|
|
575
|
+
class DescribeExportInputTypeDef(TypedDict):
|
|
571
576
|
ExportArn: str
|
|
572
577
|
|
|
573
|
-
class
|
|
578
|
+
class DescribeGlobalTableInputTypeDef(TypedDict):
|
|
574
579
|
GlobalTableName: str
|
|
575
580
|
|
|
576
|
-
class
|
|
581
|
+
class DescribeGlobalTableSettingsInputTypeDef(TypedDict):
|
|
577
582
|
GlobalTableName: str
|
|
578
583
|
|
|
579
|
-
class
|
|
584
|
+
class DescribeImportInputTypeDef(TypedDict):
|
|
580
585
|
ImportArn: str
|
|
581
586
|
|
|
582
|
-
class
|
|
587
|
+
class DescribeKinesisStreamingDestinationInputTypeDef(TypedDict):
|
|
583
588
|
TableName: str
|
|
584
589
|
|
|
585
590
|
class KinesisDataStreamDestinationTypeDef(TypedDict):
|
|
@@ -588,17 +593,17 @@ class KinesisDataStreamDestinationTypeDef(TypedDict):
|
|
|
588
593
|
DestinationStatusDescription: NotRequired[str]
|
|
589
594
|
ApproximateCreationDateTimePrecision: NotRequired[ApproximateCreationDateTimePrecisionType]
|
|
590
595
|
|
|
591
|
-
class
|
|
596
|
+
class DescribeTableInputTypeDef(TypedDict):
|
|
592
597
|
TableName: str
|
|
593
598
|
|
|
594
599
|
class WaiterConfigTypeDef(TypedDict):
|
|
595
600
|
Delay: NotRequired[int]
|
|
596
601
|
MaxAttempts: NotRequired[int]
|
|
597
602
|
|
|
598
|
-
class
|
|
603
|
+
class DescribeTableReplicaAutoScalingInputTypeDef(TypedDict):
|
|
599
604
|
TableName: str
|
|
600
605
|
|
|
601
|
-
class
|
|
606
|
+
class DescribeTimeToLiveInputTypeDef(TypedDict):
|
|
602
607
|
TableName: str
|
|
603
608
|
|
|
604
609
|
class TimeToLiveDescriptionTypeDef(TypedDict):
|
|
@@ -620,7 +625,7 @@ class ExportSummaryTypeDef(TypedDict):
|
|
|
620
625
|
|
|
621
626
|
TimestampTypeDef = Union[datetime, str]
|
|
622
627
|
|
|
623
|
-
class
|
|
628
|
+
class GetResourcePolicyInputTypeDef(TypedDict):
|
|
624
629
|
ResourceArn: str
|
|
625
630
|
|
|
626
631
|
class GlobalSecondaryIndexWarmThroughputDescriptionTypeDef(TypedDict):
|
|
@@ -649,18 +654,18 @@ class PaginatorConfigTypeDef(TypedDict):
|
|
|
649
654
|
PageSize: NotRequired[int]
|
|
650
655
|
StartingToken: NotRequired[str]
|
|
651
656
|
|
|
652
|
-
class
|
|
657
|
+
class ListContributorInsightsInputTypeDef(TypedDict):
|
|
653
658
|
TableName: NotRequired[str]
|
|
654
659
|
NextToken: NotRequired[str]
|
|
655
660
|
MaxResults: NotRequired[int]
|
|
656
661
|
|
|
657
|
-
class
|
|
662
|
+
class ListExportsInputTypeDef(TypedDict):
|
|
658
663
|
TableArn: NotRequired[str]
|
|
659
664
|
MaxResults: NotRequired[int]
|
|
660
665
|
NextToken: NotRequired[str]
|
|
661
666
|
|
|
662
|
-
|
|
663
|
-
"
|
|
667
|
+
ListGlobalTablesInputTypeDef = TypedDict(
|
|
668
|
+
"ListGlobalTablesInputTypeDef",
|
|
664
669
|
{
|
|
665
670
|
"ExclusiveStartGlobalTableName": NotRequired[str],
|
|
666
671
|
"Limit": NotRequired[int],
|
|
@@ -668,16 +673,16 @@ ListGlobalTablesInputRequestTypeDef = TypedDict(
|
|
|
668
673
|
},
|
|
669
674
|
)
|
|
670
675
|
|
|
671
|
-
class
|
|
676
|
+
class ListImportsInputTypeDef(TypedDict):
|
|
672
677
|
TableArn: NotRequired[str]
|
|
673
678
|
PageSize: NotRequired[int]
|
|
674
679
|
NextToken: NotRequired[str]
|
|
675
680
|
|
|
676
|
-
class
|
|
681
|
+
class ListTablesInputTypeDef(TypedDict):
|
|
677
682
|
ExclusiveStartTableName: NotRequired[str]
|
|
678
683
|
Limit: NotRequired[int]
|
|
679
684
|
|
|
680
|
-
class
|
|
685
|
+
class ListTagsOfResourceInputTypeDef(TypedDict):
|
|
681
686
|
ResourceArn: str
|
|
682
687
|
NextToken: NotRequired[str]
|
|
683
688
|
|
|
@@ -689,7 +694,7 @@ class ProjectionTypeDef(TypedDict):
|
|
|
689
694
|
ProjectionType: NotRequired[ProjectionTypeType]
|
|
690
695
|
NonKeyAttributes: NotRequired[Sequence[str]]
|
|
691
696
|
|
|
692
|
-
class
|
|
697
|
+
class PutResourcePolicyInputTypeDef(TypedDict):
|
|
693
698
|
ResourceArn: str
|
|
694
699
|
Policy: str
|
|
695
700
|
ExpectedRevisionId: NotRequired[str]
|
|
@@ -723,11 +728,11 @@ class TimeToLiveSpecificationTypeDef(TypedDict):
|
|
|
723
728
|
Enabled: bool
|
|
724
729
|
AttributeName: str
|
|
725
730
|
|
|
726
|
-
class
|
|
731
|
+
class UntagResourceInputTypeDef(TypedDict):
|
|
727
732
|
ResourceArn: str
|
|
728
733
|
TagKeys: Sequence[str]
|
|
729
734
|
|
|
730
|
-
class
|
|
735
|
+
class UpdateContributorInsightsInputTypeDef(TypedDict):
|
|
731
736
|
TableName: str
|
|
732
737
|
ContributorInsightsAction: ContributorInsightsActionType
|
|
733
738
|
IndexName: NotRequired[str]
|
|
@@ -925,7 +930,7 @@ class UpdateGlobalSecondaryIndexActionTypeDef(TypedDict):
|
|
|
925
930
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
926
931
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
927
932
|
|
|
928
|
-
class
|
|
933
|
+
class CreateGlobalTableInputTypeDef(TypedDict):
|
|
929
934
|
GlobalTableName: str
|
|
930
935
|
ReplicationGroup: Sequence[ReplicaTypeDef]
|
|
931
936
|
|
|
@@ -943,14 +948,15 @@ class ListTagsOfResourceOutputTypeDef(TypedDict):
|
|
|
943
948
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
944
949
|
NextToken: NotRequired[str]
|
|
945
950
|
|
|
946
|
-
class
|
|
951
|
+
class TagResourceInputTypeDef(TypedDict):
|
|
947
952
|
ResourceArn: str
|
|
948
953
|
Tags: Sequence[TagTypeDef]
|
|
949
954
|
|
|
950
955
|
class InputFormatOptionsOutputTypeDef(TypedDict):
|
|
951
956
|
Csv: NotRequired[CsvOptionsOutputTypeDef]
|
|
952
957
|
|
|
953
|
-
|
|
958
|
+
class InputFormatOptionsTypeDef(TypedDict):
|
|
959
|
+
Csv: NotRequired[CsvOptionsTypeDef]
|
|
954
960
|
|
|
955
961
|
class ReplicaUpdateTypeDef(TypedDict):
|
|
956
962
|
Create: NotRequired[CreateReplicaActionTypeDef]
|
|
@@ -974,6 +980,10 @@ class DescribeKinesisStreamingDestinationOutputTypeDef(TypedDict):
|
|
|
974
980
|
KinesisDataStreamDestinations: List[KinesisDataStreamDestinationTypeDef]
|
|
975
981
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
976
982
|
|
|
983
|
+
class DescribeTableInputWaitExtraTypeDef(TypedDict):
|
|
984
|
+
TableName: str
|
|
985
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
986
|
+
|
|
977
987
|
class DescribeTableInputWaitTypeDef(TypedDict):
|
|
978
988
|
TableName: str
|
|
979
989
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
@@ -987,6 +997,11 @@ class KinesisStreamingDestinationInputRequestTypeDef(TypedDict):
|
|
|
987
997
|
StreamArn: str
|
|
988
998
|
EnableKinesisStreamingConfiguration: NotRequired[EnableKinesisStreamingConfigurationTypeDef]
|
|
989
999
|
|
|
1000
|
+
class KinesisStreamingDestinationInputTypeDef(TypedDict):
|
|
1001
|
+
TableName: str
|
|
1002
|
+
StreamArn: str
|
|
1003
|
+
EnableKinesisStreamingConfiguration: NotRequired[EnableKinesisStreamingConfigurationTypeDef]
|
|
1004
|
+
|
|
990
1005
|
class KinesisStreamingDestinationOutputTypeDef(TypedDict):
|
|
991
1006
|
TableName: str
|
|
992
1007
|
StreamArn: str
|
|
@@ -1027,7 +1042,7 @@ class IncrementalExportSpecificationTypeDef(TypedDict):
|
|
|
1027
1042
|
ExportToTime: NotRequired[TimestampTypeDef]
|
|
1028
1043
|
ExportViewType: NotRequired[ExportViewTypeType]
|
|
1029
1044
|
|
|
1030
|
-
class
|
|
1045
|
+
class ListBackupsInputTypeDef(TypedDict):
|
|
1031
1046
|
TableName: NotRequired[str]
|
|
1032
1047
|
Limit: NotRequired[int]
|
|
1033
1048
|
TimeRangeLowerBound: NotRequired[TimestampTypeDef]
|
|
@@ -1106,13 +1121,13 @@ class ListTagsOfResourceInputPaginateTypeDef(TypedDict):
|
|
|
1106
1121
|
ResourceArn: str
|
|
1107
1122
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1108
1123
|
|
|
1109
|
-
class
|
|
1124
|
+
class UpdateContinuousBackupsInputTypeDef(TypedDict):
|
|
1110
1125
|
TableName: str
|
|
1111
1126
|
PointInTimeRecoverySpecification: PointInTimeRecoverySpecificationTypeDef
|
|
1112
1127
|
|
|
1113
1128
|
ProjectionUnionTypeDef = Union[ProjectionTypeDef, ProjectionOutputTypeDef]
|
|
1114
1129
|
|
|
1115
|
-
class
|
|
1130
|
+
class UpdateTimeToLiveInputTypeDef(TypedDict):
|
|
1116
1131
|
TableName: str
|
|
1117
1132
|
TimeToLiveSpecification: TimeToLiveSpecificationTypeDef
|
|
1118
1133
|
|
|
@@ -1120,7 +1135,7 @@ class UpdateTimeToLiveOutputTypeDef(TypedDict):
|
|
|
1120
1135
|
TimeToLiveSpecification: TimeToLiveSpecificationTypeDef
|
|
1121
1136
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1122
1137
|
|
|
1123
|
-
class
|
|
1138
|
+
class UpdateKinesisStreamingDestinationInputTypeDef(TypedDict):
|
|
1124
1139
|
TableName: str
|
|
1125
1140
|
StreamArn: str
|
|
1126
1141
|
UpdateKinesisStreamingConfiguration: NotRequired[UpdateKinesisStreamingConfigurationTypeDef]
|
|
@@ -1174,7 +1189,7 @@ class DeleteTypeDef(TypedDict):
|
|
|
1174
1189
|
ExpressionAttributeValues: NotRequired[Mapping[str, UniversalAttributeValueTypeDef]]
|
|
1175
1190
|
ReturnValuesOnConditionCheckFailure: NotRequired[ReturnValuesOnConditionCheckFailureType]
|
|
1176
1191
|
|
|
1177
|
-
class
|
|
1192
|
+
class ExecuteStatementInputTypeDef(TypedDict):
|
|
1178
1193
|
Statement: str
|
|
1179
1194
|
Parameters: NotRequired[Sequence[UniversalAttributeValueTypeDef]]
|
|
1180
1195
|
ConsistentRead: NotRequired[bool]
|
|
@@ -1189,7 +1204,7 @@ class ExpectedAttributeValueTypeDef(TypedDict):
|
|
|
1189
1204
|
ComparisonOperator: NotRequired[ComparisonOperatorType]
|
|
1190
1205
|
AttributeValueList: NotRequired[Sequence[UniversalAttributeValueTypeDef]]
|
|
1191
1206
|
|
|
1192
|
-
class
|
|
1207
|
+
class GetItemInputTypeDef(TypedDict):
|
|
1193
1208
|
TableName: str
|
|
1194
1209
|
Key: Mapping[str, UniversalAttributeValueTypeDef]
|
|
1195
1210
|
AttributesToGet: NotRequired[Sequence[str]]
|
|
@@ -1486,11 +1501,9 @@ UpdateReplicationGroupMemberActionTypeDef = TypedDict(
|
|
|
1486
1501
|
"TableClassOverride": NotRequired[TableClassType],
|
|
1487
1502
|
},
|
|
1488
1503
|
)
|
|
1504
|
+
InputFormatOptionsUnionTypeDef = Union[InputFormatOptionsTypeDef, InputFormatOptionsOutputTypeDef]
|
|
1489
1505
|
|
|
1490
|
-
class
|
|
1491
|
-
Csv: NotRequired[CsvOptionsUnionTypeDef]
|
|
1492
|
-
|
|
1493
|
-
class UpdateGlobalTableInputRequestTypeDef(TypedDict):
|
|
1506
|
+
class UpdateGlobalTableInputTypeDef(TypedDict):
|
|
1494
1507
|
GlobalTableName: str
|
|
1495
1508
|
ReplicaUpdates: Sequence[ReplicaUpdateTypeDef]
|
|
1496
1509
|
|
|
@@ -1502,19 +1515,9 @@ class ExportTableToPointInTimeOutputTypeDef(TypedDict):
|
|
|
1502
1515
|
ExportDescription: ExportDescriptionTypeDef
|
|
1503
1516
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1504
1517
|
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
ExportTime: NotRequired[TimestampTypeDef]
|
|
1509
|
-
ClientToken: NotRequired[str]
|
|
1510
|
-
S3BucketOwner: NotRequired[str]
|
|
1511
|
-
S3Prefix: NotRequired[str]
|
|
1512
|
-
S3SseAlgorithm: NotRequired[S3SseAlgorithmType]
|
|
1513
|
-
S3SseKmsKeyId: NotRequired[str]
|
|
1514
|
-
ExportFormat: NotRequired[ExportFormatType]
|
|
1515
|
-
ExportType: NotRequired[ExportTypeType]
|
|
1516
|
-
IncrementalExportSpecification: NotRequired[IncrementalExportSpecificationTypeDef]
|
|
1517
|
-
|
|
1518
|
+
IncrementalExportSpecificationUnionTypeDef = Union[
|
|
1519
|
+
IncrementalExportSpecificationTypeDef, IncrementalExportSpecificationOutputTypeDef
|
|
1520
|
+
]
|
|
1518
1521
|
ReplicaDescriptionTypeDef = TypedDict(
|
|
1519
1522
|
"ReplicaDescriptionTypeDef",
|
|
1520
1523
|
{
|
|
@@ -1586,7 +1589,7 @@ class BatchWriteItemOutputTypeDef(TypedDict):
|
|
|
1586
1589
|
ConsumedCapacity: List[ConsumedCapacityTypeDef]
|
|
1587
1590
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1588
1591
|
|
|
1589
|
-
class
|
|
1592
|
+
class BatchExecuteStatementInputTypeDef(TypedDict):
|
|
1590
1593
|
Statements: Sequence[BatchStatementRequestTypeDef]
|
|
1591
1594
|
ReturnConsumedCapacity: NotRequired[ReturnConsumedCapacityType]
|
|
1592
1595
|
|
|
@@ -1608,7 +1611,7 @@ class QueryInputPaginateTypeDef(TypedDict):
|
|
|
1608
1611
|
ExpressionAttributeValues: NotRequired[Mapping[str, UniversalAttributeValueTypeDef]]
|
|
1609
1612
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1610
1613
|
|
|
1611
|
-
class
|
|
1614
|
+
class QueryInputTypeDef(TypedDict):
|
|
1612
1615
|
TableName: str
|
|
1613
1616
|
IndexName: NotRequired[str]
|
|
1614
1617
|
Select: NotRequired[SelectType]
|
|
@@ -1644,7 +1647,7 @@ class ScanInputPaginateTypeDef(TypedDict):
|
|
|
1644
1647
|
ConsistentRead: NotRequired[bool]
|
|
1645
1648
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1646
1649
|
|
|
1647
|
-
class
|
|
1650
|
+
class ScanInputTypeDef(TypedDict):
|
|
1648
1651
|
TableName: str
|
|
1649
1652
|
IndexName: NotRequired[str]
|
|
1650
1653
|
AttributesToGet: NotRequired[Sequence[str]]
|
|
@@ -1664,7 +1667,7 @@ class ScanInputRequestTypeDef(TypedDict):
|
|
|
1664
1667
|
|
|
1665
1668
|
DeleteRequestUnionTypeDef = Union[DeleteRequestTypeDef, DeleteRequestOutputTypeDef]
|
|
1666
1669
|
|
|
1667
|
-
class
|
|
1670
|
+
class DeleteItemInputTypeDef(TypedDict):
|
|
1668
1671
|
TableName: str
|
|
1669
1672
|
Key: Mapping[str, UniversalAttributeValueTypeDef]
|
|
1670
1673
|
Expected: NotRequired[Mapping[str, ExpectedAttributeValueTypeDef]]
|
|
@@ -1677,7 +1680,7 @@ class DeleteItemInputRequestTypeDef(TypedDict):
|
|
|
1677
1680
|
ExpressionAttributeValues: NotRequired[Mapping[str, UniversalAttributeValueTypeDef]]
|
|
1678
1681
|
ReturnValuesOnConditionCheckFailure: NotRequired[ReturnValuesOnConditionCheckFailureType]
|
|
1679
1682
|
|
|
1680
|
-
class
|
|
1683
|
+
class PutItemInputTypeDef(TypedDict):
|
|
1681
1684
|
TableName: str
|
|
1682
1685
|
Item: Mapping[str, UniversalAttributeValueTypeDef]
|
|
1683
1686
|
Expected: NotRequired[Mapping[str, ExpectedAttributeValueTypeDef]]
|
|
@@ -1690,7 +1693,7 @@ class PutItemInputRequestTypeDef(TypedDict):
|
|
|
1690
1693
|
ExpressionAttributeValues: NotRequired[Mapping[str, UniversalAttributeValueTypeDef]]
|
|
1691
1694
|
ReturnValuesOnConditionCheckFailure: NotRequired[ReturnValuesOnConditionCheckFailureType]
|
|
1692
1695
|
|
|
1693
|
-
class
|
|
1696
|
+
class UpdateItemInputTypeDef(TypedDict):
|
|
1694
1697
|
TableName: str
|
|
1695
1698
|
Key: Mapping[str, UniversalAttributeValueTypeDef]
|
|
1696
1699
|
AttributeUpdates: NotRequired[Mapping[str, AttributeValueUpdateTypeDef]]
|
|
@@ -1710,7 +1713,7 @@ class TransactGetItemTypeDef(TypedDict):
|
|
|
1710
1713
|
|
|
1711
1714
|
KeysAndAttributesUnionTypeDef = Union[KeysAndAttributesTypeDef, KeysAndAttributesOutputTypeDef]
|
|
1712
1715
|
|
|
1713
|
-
class
|
|
1716
|
+
class ExecuteTransactionInputTypeDef(TypedDict):
|
|
1714
1717
|
TransactStatements: Sequence[ParameterizedStatementTypeDef]
|
|
1715
1718
|
ClientRequestToken: NotRequired[str]
|
|
1716
1719
|
ReturnConsumedCapacity: NotRequired[ReturnConsumedCapacityType]
|
|
@@ -1774,6 +1777,19 @@ class ReplicationGroupUpdateTypeDef(TypedDict):
|
|
|
1774
1777
|
Update: NotRequired[UpdateReplicationGroupMemberActionTypeDef]
|
|
1775
1778
|
Delete: NotRequired[DeleteReplicationGroupMemberActionTypeDef]
|
|
1776
1779
|
|
|
1780
|
+
class ExportTableToPointInTimeInputTypeDef(TypedDict):
|
|
1781
|
+
TableArn: str
|
|
1782
|
+
S3Bucket: str
|
|
1783
|
+
ExportTime: NotRequired[TimestampTypeDef]
|
|
1784
|
+
ClientToken: NotRequired[str]
|
|
1785
|
+
S3BucketOwner: NotRequired[str]
|
|
1786
|
+
S3Prefix: NotRequired[str]
|
|
1787
|
+
S3SseAlgorithm: NotRequired[S3SseAlgorithmType]
|
|
1788
|
+
S3SseKmsKeyId: NotRequired[str]
|
|
1789
|
+
ExportFormat: NotRequired[ExportFormatType]
|
|
1790
|
+
ExportType: NotRequired[ExportTypeType]
|
|
1791
|
+
IncrementalExportSpecification: NotRequired[IncrementalExportSpecificationUnionTypeDef]
|
|
1792
|
+
|
|
1777
1793
|
class GlobalTableDescriptionTypeDef(TypedDict):
|
|
1778
1794
|
ReplicationGroup: NotRequired[List[ReplicaDescriptionTypeDef]]
|
|
1779
1795
|
GlobalTableArn: NotRequired[str]
|
|
@@ -1840,6 +1856,10 @@ class GlobalSecondaryIndexUpdateTypeDef(TypedDict):
|
|
|
1840
1856
|
Create: NotRequired[CreateGlobalSecondaryIndexActionTypeDef]
|
|
1841
1857
|
Delete: NotRequired[DeleteGlobalSecondaryIndexActionTypeDef]
|
|
1842
1858
|
|
|
1859
|
+
GlobalSecondaryIndexUnionTypeDef = Union[
|
|
1860
|
+
GlobalSecondaryIndexTypeDef, GlobalSecondaryIndexOutputTypeDef
|
|
1861
|
+
]
|
|
1862
|
+
|
|
1843
1863
|
class TableCreationParametersTypeDef(TypedDict):
|
|
1844
1864
|
TableName: str
|
|
1845
1865
|
AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
|
|
@@ -1850,68 +1870,11 @@ class TableCreationParametersTypeDef(TypedDict):
|
|
|
1850
1870
|
SSESpecification: NotRequired[SSESpecificationTypeDef]
|
|
1851
1871
|
GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexTypeDef]]
|
|
1852
1872
|
|
|
1853
|
-
class
|
|
1854
|
-
AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
|
|
1855
|
-
TableName: str
|
|
1856
|
-
KeySchema: Sequence[KeySchemaElementTypeDef]
|
|
1857
|
-
LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
1858
|
-
GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexTypeDef]]
|
|
1859
|
-
BillingMode: NotRequired[BillingModeType]
|
|
1860
|
-
ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
|
|
1861
|
-
StreamSpecification: NotRequired[StreamSpecificationTypeDef]
|
|
1862
|
-
SSESpecification: NotRequired[SSESpecificationTypeDef]
|
|
1863
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1864
|
-
TableClass: NotRequired[TableClassType]
|
|
1865
|
-
DeletionProtectionEnabled: NotRequired[bool]
|
|
1866
|
-
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
1867
|
-
ResourcePolicy: NotRequired[str]
|
|
1868
|
-
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
1869
|
-
|
|
1870
|
-
class CreateTableInputServiceResourceCreateTableTypeDef(TypedDict):
|
|
1871
|
-
AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
|
|
1872
|
-
TableName: str
|
|
1873
|
-
KeySchema: Sequence[KeySchemaElementTypeDef]
|
|
1874
|
-
LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
1875
|
-
GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexTypeDef]]
|
|
1876
|
-
BillingMode: NotRequired[BillingModeType]
|
|
1877
|
-
ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
|
|
1878
|
-
StreamSpecification: NotRequired[StreamSpecificationTypeDef]
|
|
1879
|
-
SSESpecification: NotRequired[SSESpecificationTypeDef]
|
|
1880
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1881
|
-
TableClass: NotRequired[TableClassType]
|
|
1882
|
-
DeletionProtectionEnabled: NotRequired[bool]
|
|
1883
|
-
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
1884
|
-
ResourcePolicy: NotRequired[str]
|
|
1885
|
-
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
1886
|
-
|
|
1887
|
-
class RestoreTableFromBackupInputRequestTypeDef(TypedDict):
|
|
1888
|
-
TargetTableName: str
|
|
1889
|
-
BackupArn: str
|
|
1890
|
-
BillingModeOverride: NotRequired[BillingModeType]
|
|
1891
|
-
GlobalSecondaryIndexOverride: NotRequired[Sequence[GlobalSecondaryIndexTypeDef]]
|
|
1892
|
-
LocalSecondaryIndexOverride: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
1893
|
-
ProvisionedThroughputOverride: NotRequired[ProvisionedThroughputTypeDef]
|
|
1894
|
-
OnDemandThroughputOverride: NotRequired[OnDemandThroughputTypeDef]
|
|
1895
|
-
SSESpecificationOverride: NotRequired[SSESpecificationTypeDef]
|
|
1896
|
-
|
|
1897
|
-
class RestoreTableToPointInTimeInputRequestTypeDef(TypedDict):
|
|
1898
|
-
TargetTableName: str
|
|
1899
|
-
SourceTableArn: NotRequired[str]
|
|
1900
|
-
SourceTableName: NotRequired[str]
|
|
1901
|
-
UseLatestRestorableTime: NotRequired[bool]
|
|
1902
|
-
RestoreDateTime: NotRequired[TimestampTypeDef]
|
|
1903
|
-
BillingModeOverride: NotRequired[BillingModeType]
|
|
1904
|
-
GlobalSecondaryIndexOverride: NotRequired[Sequence[GlobalSecondaryIndexTypeDef]]
|
|
1905
|
-
LocalSecondaryIndexOverride: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
1906
|
-
ProvisionedThroughputOverride: NotRequired[ProvisionedThroughputTypeDef]
|
|
1907
|
-
OnDemandThroughputOverride: NotRequired[OnDemandThroughputTypeDef]
|
|
1908
|
-
SSESpecificationOverride: NotRequired[SSESpecificationTypeDef]
|
|
1909
|
-
|
|
1910
|
-
class TransactGetItemsInputRequestTypeDef(TypedDict):
|
|
1873
|
+
class TransactGetItemsInputTypeDef(TypedDict):
|
|
1911
1874
|
TransactItems: Sequence[TransactGetItemTypeDef]
|
|
1912
1875
|
ReturnConsumedCapacity: NotRequired[ReturnConsumedCapacityType]
|
|
1913
1876
|
|
|
1914
|
-
class
|
|
1877
|
+
class BatchGetItemInputTypeDef(TypedDict):
|
|
1915
1878
|
RequestItems: Mapping[str, KeysAndAttributesUnionTypeDef]
|
|
1916
1879
|
ReturnConsumedCapacity: NotRequired[ReturnConsumedCapacityType]
|
|
1917
1880
|
|
|
@@ -1919,7 +1882,7 @@ class WriteRequestTypeDef(TypedDict):
|
|
|
1919
1882
|
PutRequest: NotRequired[PutRequestUnionTypeDef]
|
|
1920
1883
|
DeleteRequest: NotRequired[DeleteRequestUnionTypeDef]
|
|
1921
1884
|
|
|
1922
|
-
class
|
|
1885
|
+
class TransactWriteItemsInputTypeDef(TypedDict):
|
|
1923
1886
|
TransactItems: Sequence[TransactWriteItemTypeDef]
|
|
1924
1887
|
ReturnConsumedCapacity: NotRequired[ReturnConsumedCapacityType]
|
|
1925
1888
|
ReturnItemCollectionMetrics: NotRequired[ReturnItemCollectionMetricsType]
|
|
@@ -2043,8 +2006,7 @@ class DescribeBackupOutputTypeDef(TypedDict):
|
|
|
2043
2006
|
BackupDescription: BackupDescriptionTypeDef
|
|
2044
2007
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2045
2008
|
|
|
2046
|
-
class
|
|
2047
|
-
TableName: str
|
|
2009
|
+
class UpdateTableInputTableUpdateTypeDef(TypedDict):
|
|
2048
2010
|
AttributeDefinitions: NotRequired[Sequence[AttributeDefinitionTypeDef]]
|
|
2049
2011
|
BillingMode: NotRequired[BillingModeType]
|
|
2050
2012
|
ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
|
|
@@ -2058,7 +2020,8 @@ class UpdateTableInputRequestTypeDef(TypedDict):
|
|
|
2058
2020
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2059
2021
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2060
2022
|
|
|
2061
|
-
class
|
|
2023
|
+
class UpdateTableInputTypeDef(TypedDict):
|
|
2024
|
+
TableName: str
|
|
2062
2025
|
AttributeDefinitions: NotRequired[Sequence[AttributeDefinitionTypeDef]]
|
|
2063
2026
|
BillingMode: NotRequired[BillingModeType]
|
|
2064
2027
|
ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
|
|
@@ -2072,14 +2035,66 @@ class UpdateTableInputTableUpdateTypeDef(TypedDict):
|
|
|
2072
2035
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2073
2036
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2074
2037
|
|
|
2075
|
-
class
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2038
|
+
class CreateTableInputServiceResourceCreateTableTypeDef(TypedDict):
|
|
2039
|
+
AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
|
|
2040
|
+
TableName: str
|
|
2041
|
+
KeySchema: Sequence[KeySchemaElementTypeDef]
|
|
2042
|
+
LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
2043
|
+
GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
|
|
2044
|
+
BillingMode: NotRequired[BillingModeType]
|
|
2045
|
+
ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
|
|
2046
|
+
StreamSpecification: NotRequired[StreamSpecificationTypeDef]
|
|
2047
|
+
SSESpecification: NotRequired[SSESpecificationTypeDef]
|
|
2048
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
2049
|
+
TableClass: NotRequired[TableClassType]
|
|
2050
|
+
DeletionProtectionEnabled: NotRequired[bool]
|
|
2051
|
+
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2052
|
+
ResourcePolicy: NotRequired[str]
|
|
2053
|
+
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2082
2054
|
|
|
2055
|
+
class CreateTableInputTypeDef(TypedDict):
|
|
2056
|
+
AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
|
|
2057
|
+
TableName: str
|
|
2058
|
+
KeySchema: Sequence[KeySchemaElementTypeDef]
|
|
2059
|
+
LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
2060
|
+
GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
|
|
2061
|
+
BillingMode: NotRequired[BillingModeType]
|
|
2062
|
+
ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
|
|
2063
|
+
StreamSpecification: NotRequired[StreamSpecificationTypeDef]
|
|
2064
|
+
SSESpecification: NotRequired[SSESpecificationTypeDef]
|
|
2065
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
2066
|
+
TableClass: NotRequired[TableClassType]
|
|
2067
|
+
DeletionProtectionEnabled: NotRequired[bool]
|
|
2068
|
+
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2069
|
+
ResourcePolicy: NotRequired[str]
|
|
2070
|
+
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2071
|
+
|
|
2072
|
+
class RestoreTableFromBackupInputTypeDef(TypedDict):
|
|
2073
|
+
TargetTableName: str
|
|
2074
|
+
BackupArn: str
|
|
2075
|
+
BillingModeOverride: NotRequired[BillingModeType]
|
|
2076
|
+
GlobalSecondaryIndexOverride: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
|
|
2077
|
+
LocalSecondaryIndexOverride: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
2078
|
+
ProvisionedThroughputOverride: NotRequired[ProvisionedThroughputTypeDef]
|
|
2079
|
+
OnDemandThroughputOverride: NotRequired[OnDemandThroughputTypeDef]
|
|
2080
|
+
SSESpecificationOverride: NotRequired[SSESpecificationTypeDef]
|
|
2081
|
+
|
|
2082
|
+
class RestoreTableToPointInTimeInputTypeDef(TypedDict):
|
|
2083
|
+
TargetTableName: str
|
|
2084
|
+
SourceTableArn: NotRequired[str]
|
|
2085
|
+
SourceTableName: NotRequired[str]
|
|
2086
|
+
UseLatestRestorableTime: NotRequired[bool]
|
|
2087
|
+
RestoreDateTime: NotRequired[TimestampTypeDef]
|
|
2088
|
+
BillingModeOverride: NotRequired[BillingModeType]
|
|
2089
|
+
GlobalSecondaryIndexOverride: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
|
|
2090
|
+
LocalSecondaryIndexOverride: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
2091
|
+
ProvisionedThroughputOverride: NotRequired[ProvisionedThroughputTypeDef]
|
|
2092
|
+
OnDemandThroughputOverride: NotRequired[OnDemandThroughputTypeDef]
|
|
2093
|
+
SSESpecificationOverride: NotRequired[SSESpecificationTypeDef]
|
|
2094
|
+
|
|
2095
|
+
TableCreationParametersUnionTypeDef = Union[
|
|
2096
|
+
TableCreationParametersTypeDef, TableCreationParametersOutputTypeDef
|
|
2097
|
+
]
|
|
2083
2098
|
WriteRequestUnionTypeDef = Union[WriteRequestTypeDef, WriteRequestOutputTypeDef]
|
|
2084
2099
|
|
|
2085
2100
|
class BatchWriteItemInputServiceResourceBatchWriteItemTypeDef(TypedDict):
|
|
@@ -2102,13 +2117,13 @@ class UpdateGlobalTableSettingsOutputTypeDef(TypedDict):
|
|
|
2102
2117
|
ReplicaSettings: List[ReplicaSettingsDescriptionTypeDef]
|
|
2103
2118
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2104
2119
|
|
|
2105
|
-
class
|
|
2120
|
+
class UpdateTableReplicaAutoScalingInputTypeDef(TypedDict):
|
|
2106
2121
|
TableName: str
|
|
2107
2122
|
GlobalSecondaryIndexUpdates: NotRequired[Sequence[GlobalSecondaryIndexAutoScalingUpdateTypeDef]]
|
|
2108
2123
|
ProvisionedWriteCapacityAutoScalingUpdate: NotRequired[AutoScalingSettingsUpdateTypeDef]
|
|
2109
2124
|
ReplicaUpdates: NotRequired[Sequence[ReplicaAutoScalingUpdateTypeDef]]
|
|
2110
2125
|
|
|
2111
|
-
class
|
|
2126
|
+
class UpdateGlobalTableSettingsInputTypeDef(TypedDict):
|
|
2112
2127
|
GlobalTableName: str
|
|
2113
2128
|
GlobalTableBillingMode: NotRequired[BillingModeType]
|
|
2114
2129
|
GlobalTableProvisionedWriteCapacityUnits: NotRequired[int]
|
|
@@ -2120,7 +2135,15 @@ class UpdateGlobalTableSettingsInputRequestTypeDef(TypedDict):
|
|
|
2120
2135
|
]
|
|
2121
2136
|
ReplicaSettingsUpdate: NotRequired[Sequence[ReplicaSettingsUpdateTypeDef]]
|
|
2122
2137
|
|
|
2123
|
-
class
|
|
2138
|
+
class ImportTableInputTypeDef(TypedDict):
|
|
2139
|
+
S3BucketSource: S3BucketSourceTypeDef
|
|
2140
|
+
InputFormat: InputFormatType
|
|
2141
|
+
TableCreationParameters: TableCreationParametersUnionTypeDef
|
|
2142
|
+
ClientToken: NotRequired[str]
|
|
2143
|
+
InputFormatOptions: NotRequired[InputFormatOptionsUnionTypeDef]
|
|
2144
|
+
InputCompressionType: NotRequired[InputCompressionTypeType]
|
|
2145
|
+
|
|
2146
|
+
class BatchWriteItemInputTypeDef(TypedDict):
|
|
2124
2147
|
RequestItems: Mapping[str, Sequence[WriteRequestUnionTypeDef]]
|
|
2125
2148
|
ReturnConsumedCapacity: NotRequired[ReturnConsumedCapacityType]
|
|
2126
2149
|
ReturnItemCollectionMetrics: NotRequired[ReturnItemCollectionMetricsType]
|