mypy-boto3-dynamodb 1.28.36__py3-none-any.whl → 1.28.66__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/__init__.py +1 -0
- mypy_boto3_dynamodb/__init__.pyi +1 -0
- mypy_boto3_dynamodb/__main__.py +4 -3
- mypy_boto3_dynamodb/client.py +50 -23
- mypy_boto3_dynamodb/client.pyi +113 -23
- mypy_boto3_dynamodb/literals.py +10 -0
- mypy_boto3_dynamodb/literals.pyi +10 -0
- mypy_boto3_dynamodb/paginator.py +1 -0
- mypy_boto3_dynamodb/paginator.pyi +1 -0
- mypy_boto3_dynamodb/service_resource.py +17 -8
- mypy_boto3_dynamodb/service_resource.pyi +39 -8
- mypy_boto3_dynamodb/type_defs.py +62 -44
- mypy_boto3_dynamodb/type_defs.pyi +62 -44
- mypy_boto3_dynamodb/version.py +2 -1
- mypy_boto3_dynamodb/waiter.py +1 -0
- mypy_boto3_dynamodb/waiter.pyi +1 -0
- {mypy_boto3_dynamodb-1.28.36.dist-info → mypy_boto3_dynamodb-1.28.66.dist-info}/METADATA +5 -6
- mypy_boto3_dynamodb-1.28.66.dist-info/RECORD +22 -0
- mypy_boto3_dynamodb-1.28.36.dist-info/RECORD +0 -22
- {mypy_boto3_dynamodb-1.28.36.dist-info → mypy_boto3_dynamodb-1.28.66.dist-info}/LICENSE +0 -0
- {mypy_boto3_dynamodb-1.28.36.dist-info → mypy_boto3_dynamodb-1.28.66.dist-info}/WHEEL +0 -0
- {mypy_boto3_dynamodb-1.28.36.dist-info → mypy_boto3_dynamodb-1.28.66.dist-info}/top_level.txt +0 -0
mypy_boto3_dynamodb/client.pyi
CHANGED
|
@@ -13,6 +13,7 @@ Usage::
|
|
|
13
13
|
client: DynamoDBClient = session.client("dynamodb")
|
|
14
14
|
```
|
|
15
15
|
"""
|
|
16
|
+
|
|
16
17
|
import sys
|
|
17
18
|
from typing import Any, Dict, Mapping, Sequence, Type, overload
|
|
18
19
|
|
|
@@ -24,6 +25,7 @@ from .literals import (
|
|
|
24
25
|
ConditionalOperatorType,
|
|
25
26
|
ContributorInsightsActionType,
|
|
26
27
|
ExportFormatType,
|
|
28
|
+
ExportTypeType,
|
|
27
29
|
InputCompressionTypeType,
|
|
28
30
|
InputFormatType,
|
|
29
31
|
ReturnConsumedCapacityType,
|
|
@@ -80,6 +82,7 @@ from .type_defs import (
|
|
|
80
82
|
GlobalSecondaryIndexUpdateTypeDef,
|
|
81
83
|
GlobalTableGlobalSecondaryIndexSettingsUpdateTypeDef,
|
|
82
84
|
ImportTableOutputTypeDef,
|
|
85
|
+
IncrementalExportSpecificationTypeDef,
|
|
83
86
|
InputFormatOptionsTypeDef,
|
|
84
87
|
KeysAndAttributesTypeDef,
|
|
85
88
|
KeySchemaElementTypeDef,
|
|
@@ -193,6 +196,7 @@ class DynamoDBClient(BaseClient):
|
|
|
193
196
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.exceptions)
|
|
194
197
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#exceptions)
|
|
195
198
|
"""
|
|
199
|
+
|
|
196
200
|
def batch_execute_statement(
|
|
197
201
|
self,
|
|
198
202
|
*,
|
|
@@ -201,11 +205,13 @@ class DynamoDBClient(BaseClient):
|
|
|
201
205
|
) -> BatchExecuteStatementOutputTypeDef:
|
|
202
206
|
"""
|
|
203
207
|
This operation allows you to perform batch reads or writes on data stored in
|
|
204
|
-
DynamoDB, using
|
|
208
|
+
DynamoDB, using
|
|
209
|
+
PartiQL.
|
|
205
210
|
|
|
206
211
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.batch_execute_statement)
|
|
207
212
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#batch_execute_statement)
|
|
208
213
|
"""
|
|
214
|
+
|
|
209
215
|
def batch_get_item(
|
|
210
216
|
self,
|
|
211
217
|
*,
|
|
@@ -214,11 +220,13 @@ class DynamoDBClient(BaseClient):
|
|
|
214
220
|
) -> BatchGetItemOutputTypeDef:
|
|
215
221
|
"""
|
|
216
222
|
The `BatchGetItem` operation returns the attributes of one or more items from
|
|
217
|
-
one or more
|
|
223
|
+
one or more
|
|
224
|
+
tables.
|
|
218
225
|
|
|
219
226
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.batch_get_item)
|
|
220
227
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#batch_get_item)
|
|
221
228
|
"""
|
|
229
|
+
|
|
222
230
|
def batch_write_item(
|
|
223
231
|
self,
|
|
224
232
|
*,
|
|
@@ -233,6 +241,7 @@ class DynamoDBClient(BaseClient):
|
|
|
233
241
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.batch_write_item)
|
|
234
242
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#batch_write_item)
|
|
235
243
|
"""
|
|
244
|
+
|
|
236
245
|
def can_paginate(self, operation_name: str) -> bool:
|
|
237
246
|
"""
|
|
238
247
|
Check if an operation can be paginated.
|
|
@@ -240,6 +249,7 @@ class DynamoDBClient(BaseClient):
|
|
|
240
249
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.can_paginate)
|
|
241
250
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#can_paginate)
|
|
242
251
|
"""
|
|
252
|
+
|
|
243
253
|
def close(self) -> None:
|
|
244
254
|
"""
|
|
245
255
|
Closes underlying endpoint connections.
|
|
@@ -247,6 +257,7 @@ class DynamoDBClient(BaseClient):
|
|
|
247
257
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.close)
|
|
248
258
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#close)
|
|
249
259
|
"""
|
|
260
|
+
|
|
250
261
|
def create_backup(self, *, TableName: str, BackupName: str) -> CreateBackupOutputTypeDef:
|
|
251
262
|
"""
|
|
252
263
|
Creates a backup for an existing table.
|
|
@@ -254,6 +265,7 @@ class DynamoDBClient(BaseClient):
|
|
|
254
265
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.create_backup)
|
|
255
266
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#create_backup)
|
|
256
267
|
"""
|
|
268
|
+
|
|
257
269
|
def create_global_table(
|
|
258
270
|
self, *, GlobalTableName: str, ReplicationGroup: Sequence[ReplicaTypeDef]
|
|
259
271
|
) -> CreateGlobalTableOutputTypeDef:
|
|
@@ -263,6 +275,7 @@ class DynamoDBClient(BaseClient):
|
|
|
263
275
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.create_global_table)
|
|
264
276
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#create_global_table)
|
|
265
277
|
"""
|
|
278
|
+
|
|
266
279
|
def create_table(
|
|
267
280
|
self,
|
|
268
281
|
*,
|
|
@@ -285,6 +298,7 @@ class DynamoDBClient(BaseClient):
|
|
|
285
298
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.create_table)
|
|
286
299
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#create_table)
|
|
287
300
|
"""
|
|
301
|
+
|
|
288
302
|
def delete_backup(self, *, BackupArn: str) -> DeleteBackupOutputTypeDef:
|
|
289
303
|
"""
|
|
290
304
|
Deletes an existing backup of a table.
|
|
@@ -292,6 +306,7 @@ class DynamoDBClient(BaseClient):
|
|
|
292
306
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.delete_backup)
|
|
293
307
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#delete_backup)
|
|
294
308
|
"""
|
|
309
|
+
|
|
295
310
|
def delete_item(
|
|
296
311
|
self,
|
|
297
312
|
*,
|
|
@@ -313,6 +328,7 @@ class DynamoDBClient(BaseClient):
|
|
|
313
328
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.delete_item)
|
|
314
329
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#delete_item)
|
|
315
330
|
"""
|
|
331
|
+
|
|
316
332
|
def delete_table(self, *, TableName: str) -> DeleteTableOutputTypeDef:
|
|
317
333
|
"""
|
|
318
334
|
The `DeleteTable` operation deletes a table and all of its items.
|
|
@@ -320,6 +336,7 @@ class DynamoDBClient(BaseClient):
|
|
|
320
336
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.delete_table)
|
|
321
337
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#delete_table)
|
|
322
338
|
"""
|
|
339
|
+
|
|
323
340
|
def describe_backup(self, *, BackupArn: str) -> DescribeBackupOutputTypeDef:
|
|
324
341
|
"""
|
|
325
342
|
Describes an existing backup of a table.
|
|
@@ -327,26 +344,31 @@ class DynamoDBClient(BaseClient):
|
|
|
327
344
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.describe_backup)
|
|
328
345
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_backup)
|
|
329
346
|
"""
|
|
347
|
+
|
|
330
348
|
def describe_continuous_backups(
|
|
331
349
|
self, *, TableName: str
|
|
332
350
|
) -> DescribeContinuousBackupsOutputTypeDef:
|
|
333
351
|
"""
|
|
334
352
|
Checks the status of continuous backups and point in time recovery on the
|
|
335
|
-
specified
|
|
353
|
+
specified
|
|
354
|
+
table.
|
|
336
355
|
|
|
337
356
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.describe_continuous_backups)
|
|
338
357
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_continuous_backups)
|
|
339
358
|
"""
|
|
359
|
+
|
|
340
360
|
def describe_contributor_insights(
|
|
341
361
|
self, *, TableName: str, IndexName: str = ...
|
|
342
362
|
) -> DescribeContributorInsightsOutputTypeDef:
|
|
343
363
|
"""
|
|
344
364
|
Returns information about contributor insights for a given table or global
|
|
345
|
-
secondary
|
|
365
|
+
secondary
|
|
366
|
+
index.
|
|
346
367
|
|
|
347
368
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.describe_contributor_insights)
|
|
348
369
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_contributor_insights)
|
|
349
370
|
"""
|
|
371
|
+
|
|
350
372
|
def describe_endpoints(self) -> DescribeEndpointsResponseTypeDef:
|
|
351
373
|
"""
|
|
352
374
|
Returns the regional endpoint information.
|
|
@@ -354,6 +376,7 @@ class DynamoDBClient(BaseClient):
|
|
|
354
376
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.describe_endpoints)
|
|
355
377
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_endpoints)
|
|
356
378
|
"""
|
|
379
|
+
|
|
357
380
|
def describe_export(self, *, ExportArn: str) -> DescribeExportOutputTypeDef:
|
|
358
381
|
"""
|
|
359
382
|
Describes an existing table export.
|
|
@@ -361,6 +384,7 @@ class DynamoDBClient(BaseClient):
|
|
|
361
384
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.describe_export)
|
|
362
385
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_export)
|
|
363
386
|
"""
|
|
387
|
+
|
|
364
388
|
def describe_global_table(self, *, GlobalTableName: str) -> DescribeGlobalTableOutputTypeDef:
|
|
365
389
|
"""
|
|
366
390
|
Returns information about the specified global table.
|
|
@@ -368,6 +392,7 @@ class DynamoDBClient(BaseClient):
|
|
|
368
392
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.describe_global_table)
|
|
369
393
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_global_table)
|
|
370
394
|
"""
|
|
395
|
+
|
|
371
396
|
def describe_global_table_settings(
|
|
372
397
|
self, *, GlobalTableName: str
|
|
373
398
|
) -> DescribeGlobalTableSettingsOutputTypeDef:
|
|
@@ -377,6 +402,7 @@ class DynamoDBClient(BaseClient):
|
|
|
377
402
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.describe_global_table_settings)
|
|
378
403
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_global_table_settings)
|
|
379
404
|
"""
|
|
405
|
+
|
|
380
406
|
def describe_import(self, *, ImportArn: str) -> DescribeImportOutputTypeDef:
|
|
381
407
|
"""
|
|
382
408
|
Represents the properties of the import.
|
|
@@ -384,6 +410,7 @@ class DynamoDBClient(BaseClient):
|
|
|
384
410
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.describe_import)
|
|
385
411
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_import)
|
|
386
412
|
"""
|
|
413
|
+
|
|
387
414
|
def describe_kinesis_streaming_destination(
|
|
388
415
|
self, *, TableName: str
|
|
389
416
|
) -> DescribeKinesisStreamingDestinationOutputTypeDef:
|
|
@@ -393,23 +420,28 @@ class DynamoDBClient(BaseClient):
|
|
|
393
420
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.describe_kinesis_streaming_destination)
|
|
394
421
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_kinesis_streaming_destination)
|
|
395
422
|
"""
|
|
423
|
+
|
|
396
424
|
def describe_limits(self) -> DescribeLimitsOutputTypeDef:
|
|
397
425
|
"""
|
|
398
426
|
Returns the current provisioned-capacity quotas for your Amazon Web Services
|
|
399
427
|
account in a Region, both for the Region as a whole and for any one DynamoDB
|
|
400
|
-
table that you create
|
|
428
|
+
table that you create
|
|
429
|
+
there.
|
|
401
430
|
|
|
402
431
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.describe_limits)
|
|
403
432
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_limits)
|
|
404
433
|
"""
|
|
434
|
+
|
|
405
435
|
def describe_table(self, *, TableName: str) -> DescribeTableOutputTypeDef:
|
|
406
436
|
"""
|
|
407
437
|
Returns information about the table, including the current status of the table,
|
|
408
|
-
when it was created, the primary key schema, and any indexes on the
|
|
438
|
+
when it was created, the primary key schema, and any indexes on the
|
|
439
|
+
table.
|
|
409
440
|
|
|
410
441
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.describe_table)
|
|
411
442
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_table)
|
|
412
443
|
"""
|
|
444
|
+
|
|
413
445
|
def describe_table_replica_auto_scaling(
|
|
414
446
|
self, *, TableName: str
|
|
415
447
|
) -> DescribeTableReplicaAutoScalingOutputTypeDef:
|
|
@@ -419,6 +451,7 @@ class DynamoDBClient(BaseClient):
|
|
|
419
451
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.describe_table_replica_auto_scaling)
|
|
420
452
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_table_replica_auto_scaling)
|
|
421
453
|
"""
|
|
454
|
+
|
|
422
455
|
def describe_time_to_live(self, *, TableName: str) -> DescribeTimeToLiveOutputTypeDef:
|
|
423
456
|
"""
|
|
424
457
|
Gives a description of the Time to Live (TTL) status on the specified table.
|
|
@@ -426,6 +459,7 @@ class DynamoDBClient(BaseClient):
|
|
|
426
459
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.describe_time_to_live)
|
|
427
460
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_time_to_live)
|
|
428
461
|
"""
|
|
462
|
+
|
|
429
463
|
def disable_kinesis_streaming_destination(
|
|
430
464
|
self, *, TableName: str, StreamArn: str
|
|
431
465
|
) -> KinesisStreamingDestinationOutputTypeDef:
|
|
@@ -435,16 +469,19 @@ class DynamoDBClient(BaseClient):
|
|
|
435
469
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.disable_kinesis_streaming_destination)
|
|
436
470
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#disable_kinesis_streaming_destination)
|
|
437
471
|
"""
|
|
472
|
+
|
|
438
473
|
def enable_kinesis_streaming_destination(
|
|
439
474
|
self, *, TableName: str, StreamArn: str
|
|
440
475
|
) -> KinesisStreamingDestinationOutputTypeDef:
|
|
441
476
|
"""
|
|
442
477
|
Starts table data replication to the specified Kinesis data stream at a
|
|
443
|
-
timestamp chosen during the enable
|
|
478
|
+
timestamp chosen during the enable
|
|
479
|
+
workflow.
|
|
444
480
|
|
|
445
481
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.enable_kinesis_streaming_destination)
|
|
446
482
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#enable_kinesis_streaming_destination)
|
|
447
483
|
"""
|
|
484
|
+
|
|
448
485
|
def execute_statement(
|
|
449
486
|
self,
|
|
450
487
|
*,
|
|
@@ -458,11 +495,13 @@ class DynamoDBClient(BaseClient):
|
|
|
458
495
|
) -> ExecuteStatementOutputTypeDef:
|
|
459
496
|
"""
|
|
460
497
|
This operation allows you to perform reads and singleton writes on data stored
|
|
461
|
-
in DynamoDB, using
|
|
498
|
+
in DynamoDB, using
|
|
499
|
+
PartiQL.
|
|
462
500
|
|
|
463
501
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.execute_statement)
|
|
464
502
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#execute_statement)
|
|
465
503
|
"""
|
|
504
|
+
|
|
466
505
|
def execute_transaction(
|
|
467
506
|
self,
|
|
468
507
|
*,
|
|
@@ -472,11 +511,13 @@ class DynamoDBClient(BaseClient):
|
|
|
472
511
|
) -> ExecuteTransactionOutputTypeDef:
|
|
473
512
|
"""
|
|
474
513
|
This operation allows you to perform transactional reads or writes on data
|
|
475
|
-
stored in DynamoDB, using
|
|
514
|
+
stored in DynamoDB, using
|
|
515
|
+
PartiQL.
|
|
476
516
|
|
|
477
517
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.execute_transaction)
|
|
478
518
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#execute_transaction)
|
|
479
519
|
"""
|
|
520
|
+
|
|
480
521
|
def export_table_to_point_in_time(
|
|
481
522
|
self,
|
|
482
523
|
*,
|
|
@@ -488,7 +529,9 @@ class DynamoDBClient(BaseClient):
|
|
|
488
529
|
S3Prefix: str = ...,
|
|
489
530
|
S3SseAlgorithm: S3SseAlgorithmType = ...,
|
|
490
531
|
S3SseKmsKeyId: str = ...,
|
|
491
|
-
ExportFormat: ExportFormatType =
|
|
532
|
+
ExportFormat: ExportFormatType = ...,
|
|
533
|
+
ExportType: ExportTypeType = ...,
|
|
534
|
+
IncrementalExportSpecification: IncrementalExportSpecificationTypeDef = ...
|
|
492
535
|
) -> ExportTableToPointInTimeOutputTypeDef:
|
|
493
536
|
"""
|
|
494
537
|
Exports table data to an S3 bucket.
|
|
@@ -496,6 +539,7 @@ class DynamoDBClient(BaseClient):
|
|
|
496
539
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.export_table_to_point_in_time)
|
|
497
540
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#export_table_to_point_in_time)
|
|
498
541
|
"""
|
|
542
|
+
|
|
499
543
|
def generate_presigned_url(
|
|
500
544
|
self,
|
|
501
545
|
ClientMethod: str,
|
|
@@ -509,6 +553,7 @@ class DynamoDBClient(BaseClient):
|
|
|
509
553
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.generate_presigned_url)
|
|
510
554
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#generate_presigned_url)
|
|
511
555
|
"""
|
|
556
|
+
|
|
512
557
|
def get_item(
|
|
513
558
|
self,
|
|
514
559
|
*,
|
|
@@ -522,11 +567,13 @@ class DynamoDBClient(BaseClient):
|
|
|
522
567
|
) -> GetItemOutputTypeDef:
|
|
523
568
|
"""
|
|
524
569
|
The `GetItem` operation returns a set of attributes for the item with the given
|
|
525
|
-
primary
|
|
570
|
+
primary
|
|
571
|
+
key.
|
|
526
572
|
|
|
527
573
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.get_item)
|
|
528
574
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_item)
|
|
529
575
|
"""
|
|
576
|
+
|
|
530
577
|
def import_table(
|
|
531
578
|
self,
|
|
532
579
|
*,
|
|
@@ -543,6 +590,7 @@ class DynamoDBClient(BaseClient):
|
|
|
543
590
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.import_table)
|
|
544
591
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#import_table)
|
|
545
592
|
"""
|
|
593
|
+
|
|
546
594
|
def list_backups(
|
|
547
595
|
self,
|
|
548
596
|
*,
|
|
@@ -554,21 +602,26 @@ class DynamoDBClient(BaseClient):
|
|
|
554
602
|
BackupType: BackupTypeFilterType = ...
|
|
555
603
|
) -> ListBackupsOutputTypeDef:
|
|
556
604
|
"""
|
|
557
|
-
List backups associated with an Amazon Web Services account
|
|
605
|
+
List DynamoDB backups that are associated with an Amazon Web Services account
|
|
606
|
+
and weren't made with Amazon Web Services
|
|
607
|
+
Backup.
|
|
558
608
|
|
|
559
609
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.list_backups)
|
|
560
610
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#list_backups)
|
|
561
611
|
"""
|
|
612
|
+
|
|
562
613
|
def list_contributor_insights(
|
|
563
614
|
self, *, TableName: str = ..., NextToken: str = ..., MaxResults: int = ...
|
|
564
615
|
) -> ListContributorInsightsOutputTypeDef:
|
|
565
616
|
"""
|
|
566
617
|
Returns a list of ContributorInsightsSummary for a table and all its global
|
|
567
|
-
secondary
|
|
618
|
+
secondary
|
|
619
|
+
indexes.
|
|
568
620
|
|
|
569
621
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.list_contributor_insights)
|
|
570
622
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#list_contributor_insights)
|
|
571
623
|
"""
|
|
624
|
+
|
|
572
625
|
def list_exports(
|
|
573
626
|
self, *, TableArn: str = ..., MaxResults: int = ..., NextToken: str = ...
|
|
574
627
|
) -> ListExportsOutputTypeDef:
|
|
@@ -578,6 +631,7 @@ class DynamoDBClient(BaseClient):
|
|
|
578
631
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.list_exports)
|
|
579
632
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#list_exports)
|
|
580
633
|
"""
|
|
634
|
+
|
|
581
635
|
def list_global_tables(
|
|
582
636
|
self, *, ExclusiveStartGlobalTableName: str = ..., Limit: int = ..., RegionName: str = ...
|
|
583
637
|
) -> ListGlobalTablesOutputTypeDef:
|
|
@@ -587,6 +641,7 @@ class DynamoDBClient(BaseClient):
|
|
|
587
641
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.list_global_tables)
|
|
588
642
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#list_global_tables)
|
|
589
643
|
"""
|
|
644
|
+
|
|
590
645
|
def list_imports(
|
|
591
646
|
self, *, TableArn: str = ..., PageSize: int = ..., NextToken: str = ...
|
|
592
647
|
) -> ListImportsOutputTypeDef:
|
|
@@ -596,6 +651,7 @@ class DynamoDBClient(BaseClient):
|
|
|
596
651
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.list_imports)
|
|
597
652
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#list_imports)
|
|
598
653
|
"""
|
|
654
|
+
|
|
599
655
|
def list_tables(
|
|
600
656
|
self, *, ExclusiveStartTableName: str = ..., Limit: int = ...
|
|
601
657
|
) -> ListTablesOutputTypeDef:
|
|
@@ -606,6 +662,7 @@ class DynamoDBClient(BaseClient):
|
|
|
606
662
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.list_tables)
|
|
607
663
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#list_tables)
|
|
608
664
|
"""
|
|
665
|
+
|
|
609
666
|
def list_tags_of_resource(
|
|
610
667
|
self, *, ResourceArn: str, NextToken: str = ...
|
|
611
668
|
) -> ListTagsOfResourceOutputTypeDef:
|
|
@@ -615,6 +672,7 @@ class DynamoDBClient(BaseClient):
|
|
|
615
672
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.list_tags_of_resource)
|
|
616
673
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#list_tags_of_resource)
|
|
617
674
|
"""
|
|
675
|
+
|
|
618
676
|
def put_item(
|
|
619
677
|
self,
|
|
620
678
|
*,
|
|
@@ -636,6 +694,7 @@ class DynamoDBClient(BaseClient):
|
|
|
636
694
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.put_item)
|
|
637
695
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#put_item)
|
|
638
696
|
"""
|
|
697
|
+
|
|
639
698
|
def query(
|
|
640
699
|
self,
|
|
641
700
|
*,
|
|
@@ -659,11 +718,13 @@ class DynamoDBClient(BaseClient):
|
|
|
659
718
|
) -> QueryOutputTypeDef:
|
|
660
719
|
"""
|
|
661
720
|
You must provide the name of the partition key attribute and a single value for
|
|
662
|
-
that
|
|
721
|
+
that
|
|
722
|
+
attribute.
|
|
663
723
|
|
|
664
724
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.query)
|
|
665
725
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#query)
|
|
666
726
|
"""
|
|
727
|
+
|
|
667
728
|
def restore_table_from_backup(
|
|
668
729
|
self,
|
|
669
730
|
*,
|
|
@@ -681,6 +742,7 @@ class DynamoDBClient(BaseClient):
|
|
|
681
742
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.restore_table_from_backup)
|
|
682
743
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#restore_table_from_backup)
|
|
683
744
|
"""
|
|
745
|
+
|
|
684
746
|
def restore_table_to_point_in_time(
|
|
685
747
|
self,
|
|
686
748
|
*,
|
|
@@ -697,11 +759,13 @@ class DynamoDBClient(BaseClient):
|
|
|
697
759
|
) -> RestoreTableToPointInTimeOutputTypeDef:
|
|
698
760
|
"""
|
|
699
761
|
Restores the specified table to the specified point in time within
|
|
700
|
-
`EarliestRestorableDateTime` and
|
|
762
|
+
`EarliestRestorableDateTime` and
|
|
763
|
+
`LatestRestorableDateTime`.
|
|
701
764
|
|
|
702
765
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.restore_table_to_point_in_time)
|
|
703
766
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#restore_table_to_point_in_time)
|
|
704
767
|
"""
|
|
768
|
+
|
|
705
769
|
def scan(
|
|
706
770
|
self,
|
|
707
771
|
*,
|
|
@@ -724,11 +788,13 @@ class DynamoDBClient(BaseClient):
|
|
|
724
788
|
) -> ScanOutputTypeDef:
|
|
725
789
|
"""
|
|
726
790
|
The `Scan` operation returns one or more items and item attributes by accessing
|
|
727
|
-
every item in a table or a secondary
|
|
791
|
+
every item in a table or a secondary
|
|
792
|
+
index.
|
|
728
793
|
|
|
729
794
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.scan)
|
|
730
795
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#scan)
|
|
731
796
|
"""
|
|
797
|
+
|
|
732
798
|
def tag_resource(
|
|
733
799
|
self, *, ResourceArn: str, Tags: Sequence[TagTypeDef]
|
|
734
800
|
) -> EmptyResponseMetadataTypeDef:
|
|
@@ -738,6 +804,7 @@ class DynamoDBClient(BaseClient):
|
|
|
738
804
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.tag_resource)
|
|
739
805
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#tag_resource)
|
|
740
806
|
"""
|
|
807
|
+
|
|
741
808
|
def transact_get_items(
|
|
742
809
|
self,
|
|
743
810
|
*,
|
|
@@ -745,13 +812,15 @@ class DynamoDBClient(BaseClient):
|
|
|
745
812
|
ReturnConsumedCapacity: ReturnConsumedCapacityType = ...
|
|
746
813
|
) -> TransactGetItemsOutputTypeDef:
|
|
747
814
|
"""
|
|
748
|
-
`TransactGetItems` is a synchronous operation that atomically retrieves
|
|
749
|
-
items from one or more tables (but not from indexes) in a single
|
|
815
|
+
`TransactGetItems` is a synchronous operation that atomically retrieves
|
|
816
|
+
multiple items from one or more tables (but not from indexes) in a single
|
|
817
|
+
account and
|
|
750
818
|
Region.
|
|
751
819
|
|
|
752
820
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.transact_get_items)
|
|
753
821
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#transact_get_items)
|
|
754
822
|
"""
|
|
823
|
+
|
|
755
824
|
def transact_write_items(
|
|
756
825
|
self,
|
|
757
826
|
*,
|
|
@@ -762,11 +831,13 @@ class DynamoDBClient(BaseClient):
|
|
|
762
831
|
) -> TransactWriteItemsOutputTypeDef:
|
|
763
832
|
"""
|
|
764
833
|
`TransactWriteItems` is a synchronous write operation that groups up to 100
|
|
765
|
-
action
|
|
834
|
+
action
|
|
835
|
+
requests.
|
|
766
836
|
|
|
767
837
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.transact_write_items)
|
|
768
838
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#transact_write_items)
|
|
769
839
|
"""
|
|
840
|
+
|
|
770
841
|
def untag_resource(
|
|
771
842
|
self, *, ResourceArn: str, TagKeys: Sequence[str]
|
|
772
843
|
) -> EmptyResponseMetadataTypeDef:
|
|
@@ -776,6 +847,7 @@ class DynamoDBClient(BaseClient):
|
|
|
776
847
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.untag_resource)
|
|
777
848
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#untag_resource)
|
|
778
849
|
"""
|
|
850
|
+
|
|
779
851
|
def update_continuous_backups(
|
|
780
852
|
self,
|
|
781
853
|
*,
|
|
@@ -784,11 +856,13 @@ class DynamoDBClient(BaseClient):
|
|
|
784
856
|
) -> UpdateContinuousBackupsOutputTypeDef:
|
|
785
857
|
"""
|
|
786
858
|
`UpdateContinuousBackups` enables or disables point in time recovery for the
|
|
787
|
-
specified
|
|
859
|
+
specified
|
|
860
|
+
table.
|
|
788
861
|
|
|
789
862
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.update_continuous_backups)
|
|
790
863
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_continuous_backups)
|
|
791
864
|
"""
|
|
865
|
+
|
|
792
866
|
def update_contributor_insights(
|
|
793
867
|
self,
|
|
794
868
|
*,
|
|
@@ -802,6 +876,7 @@ class DynamoDBClient(BaseClient):
|
|
|
802
876
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.update_contributor_insights)
|
|
803
877
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_contributor_insights)
|
|
804
878
|
"""
|
|
879
|
+
|
|
805
880
|
def update_global_table(
|
|
806
881
|
self, *, GlobalTableName: str, ReplicaUpdates: Sequence[ReplicaUpdateTypeDef]
|
|
807
882
|
) -> UpdateGlobalTableOutputTypeDef:
|
|
@@ -811,6 +886,7 @@ class DynamoDBClient(BaseClient):
|
|
|
811
886
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.update_global_table)
|
|
812
887
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_global_table)
|
|
813
888
|
"""
|
|
889
|
+
|
|
814
890
|
def update_global_table_settings(
|
|
815
891
|
self,
|
|
816
892
|
*,
|
|
@@ -829,6 +905,7 @@ class DynamoDBClient(BaseClient):
|
|
|
829
905
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.update_global_table_settings)
|
|
830
906
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_global_table_settings)
|
|
831
907
|
"""
|
|
908
|
+
|
|
832
909
|
def update_item(
|
|
833
910
|
self,
|
|
834
911
|
*,
|
|
@@ -848,11 +925,13 @@ class DynamoDBClient(BaseClient):
|
|
|
848
925
|
) -> UpdateItemOutputTypeDef:
|
|
849
926
|
"""
|
|
850
927
|
Edits an existing item's attributes, or adds a new item to the table if it does
|
|
851
|
-
not already
|
|
928
|
+
not already
|
|
929
|
+
exist.
|
|
852
930
|
|
|
853
931
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.update_item)
|
|
854
932
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_item)
|
|
855
933
|
"""
|
|
934
|
+
|
|
856
935
|
def update_table(
|
|
857
936
|
self,
|
|
858
937
|
*,
|
|
@@ -869,11 +948,13 @@ class DynamoDBClient(BaseClient):
|
|
|
869
948
|
) -> UpdateTableOutputTypeDef:
|
|
870
949
|
"""
|
|
871
950
|
Modifies the provisioned throughput settings, global secondary indexes, or
|
|
872
|
-
DynamoDB Streams settings for a given
|
|
951
|
+
DynamoDB Streams settings for a given
|
|
952
|
+
table.
|
|
873
953
|
|
|
874
954
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.update_table)
|
|
875
955
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_table)
|
|
876
956
|
"""
|
|
957
|
+
|
|
877
958
|
def update_table_replica_auto_scaling(
|
|
878
959
|
self,
|
|
879
960
|
*,
|
|
@@ -888,28 +969,33 @@ class DynamoDBClient(BaseClient):
|
|
|
888
969
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.update_table_replica_auto_scaling)
|
|
889
970
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_table_replica_auto_scaling)
|
|
890
971
|
"""
|
|
972
|
+
|
|
891
973
|
def update_time_to_live(
|
|
892
974
|
self, *, TableName: str, TimeToLiveSpecification: TimeToLiveSpecificationTypeDef
|
|
893
975
|
) -> UpdateTimeToLiveOutputTypeDef:
|
|
894
976
|
"""
|
|
895
977
|
The `UpdateTimeToLive` method enables or disables Time to Live (TTL) for the
|
|
896
|
-
specified
|
|
978
|
+
specified
|
|
979
|
+
table.
|
|
897
980
|
|
|
898
981
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.update_time_to_live)
|
|
899
982
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_time_to_live)
|
|
900
983
|
"""
|
|
984
|
+
|
|
901
985
|
@overload
|
|
902
986
|
def get_paginator(self, operation_name: Literal["list_backups"]) -> ListBackupsPaginator:
|
|
903
987
|
"""
|
|
904
988
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.get_paginator)
|
|
905
989
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_paginator)
|
|
906
990
|
"""
|
|
991
|
+
|
|
907
992
|
@overload
|
|
908
993
|
def get_paginator(self, operation_name: Literal["list_tables"]) -> ListTablesPaginator:
|
|
909
994
|
"""
|
|
910
995
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.get_paginator)
|
|
911
996
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_paginator)
|
|
912
997
|
"""
|
|
998
|
+
|
|
913
999
|
@overload
|
|
914
1000
|
def get_paginator(
|
|
915
1001
|
self, operation_name: Literal["list_tags_of_resource"]
|
|
@@ -918,24 +1004,28 @@ class DynamoDBClient(BaseClient):
|
|
|
918
1004
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.get_paginator)
|
|
919
1005
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_paginator)
|
|
920
1006
|
"""
|
|
1007
|
+
|
|
921
1008
|
@overload
|
|
922
1009
|
def get_paginator(self, operation_name: Literal["query"]) -> QueryPaginator:
|
|
923
1010
|
"""
|
|
924
1011
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.get_paginator)
|
|
925
1012
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_paginator)
|
|
926
1013
|
"""
|
|
1014
|
+
|
|
927
1015
|
@overload
|
|
928
1016
|
def get_paginator(self, operation_name: Literal["scan"]) -> ScanPaginator:
|
|
929
1017
|
"""
|
|
930
1018
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.get_paginator)
|
|
931
1019
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_paginator)
|
|
932
1020
|
"""
|
|
1021
|
+
|
|
933
1022
|
@overload
|
|
934
1023
|
def get_waiter(self, waiter_name: Literal["table_exists"]) -> TableExistsWaiter:
|
|
935
1024
|
"""
|
|
936
1025
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.get_waiter)
|
|
937
1026
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_waiter)
|
|
938
1027
|
"""
|
|
1028
|
+
|
|
939
1029
|
@overload
|
|
940
1030
|
def get_waiter(self, waiter_name: Literal["table_not_exists"]) -> TableNotExistsWaiter:
|
|
941
1031
|
"""
|