mypy-boto3-dynamodb 1.35.60__py3-none-any.whl → 1.35.74__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 +2 -0
- mypy_boto3_dynamodb/__init__.pyi +2 -0
- mypy_boto3_dynamodb/__main__.py +7 -5
- mypy_boto3_dynamodb/client.py +143 -155
- mypy_boto3_dynamodb/client.pyi +143 -155
- mypy_boto3_dynamodb/literals.py +15 -0
- mypy_boto3_dynamodb/literals.pyi +15 -0
- mypy_boto3_dynamodb/paginator.py +12 -10
- mypy_boto3_dynamodb/paginator.pyi +12 -10
- mypy_boto3_dynamodb/service_resource.py +79 -87
- mypy_boto3_dynamodb/service_resource.pyi +79 -87
- mypy_boto3_dynamodb/type_defs.py +6 -0
- mypy_boto3_dynamodb/type_defs.pyi +6 -0
- mypy_boto3_dynamodb/version.py +3 -1
- mypy_boto3_dynamodb/waiter.py +6 -4
- mypy_boto3_dynamodb/waiter.pyi +6 -4
- {mypy_boto3_dynamodb-1.35.60.dist-info → mypy_boto3_dynamodb-1.35.74.dist-info}/METADATA +58 -18
- mypy_boto3_dynamodb-1.35.74.dist-info/RECORD +22 -0
- {mypy_boto3_dynamodb-1.35.60.dist-info → mypy_boto3_dynamodb-1.35.74.dist-info}/WHEEL +1 -1
- mypy_boto3_dynamodb-1.35.60.dist-info/RECORD +0 -22
- {mypy_boto3_dynamodb-1.35.60.dist-info → mypy_boto3_dynamodb-1.35.74.dist-info}/LICENSE +0 -0
- {mypy_boto3_dynamodb-1.35.60.dist-info → mypy_boto3_dynamodb-1.35.74.dist-info}/top_level.txt +0 -0
mypy_boto3_dynamodb/client.pyi
CHANGED
|
@@ -12,6 +12,8 @@ Usage::
|
|
|
12
12
|
session = Session()
|
|
13
13
|
client: DynamoDBClient = session.client("dynamodb")
|
|
14
14
|
```
|
|
15
|
+
|
|
16
|
+
Copyright 2024 Vlad Emelianov
|
|
15
17
|
"""
|
|
16
18
|
|
|
17
19
|
import sys
|
|
@@ -178,6 +180,7 @@ class Exceptions:
|
|
|
178
180
|
ProvisionedThroughputExceededException: Type[BotocoreClientError]
|
|
179
181
|
ReplicaAlreadyExistsException: Type[BotocoreClientError]
|
|
180
182
|
ReplicaNotFoundException: Type[BotocoreClientError]
|
|
183
|
+
ReplicatedWriteConflictException: Type[BotocoreClientError]
|
|
181
184
|
RequestLimitExceeded: Type[BotocoreClientError]
|
|
182
185
|
ResourceInUseException: Type[BotocoreClientError]
|
|
183
186
|
ResourceNotFoundException: Type[BotocoreClientError]
|
|
@@ -201,19 +204,42 @@ class DynamoDBClient(BaseClient):
|
|
|
201
204
|
"""
|
|
202
205
|
DynamoDBClient exceptions.
|
|
203
206
|
|
|
204
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client
|
|
207
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client)
|
|
205
208
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#exceptions)
|
|
206
209
|
"""
|
|
207
210
|
|
|
211
|
+
def can_paginate(self, operation_name: str) -> bool:
|
|
212
|
+
"""
|
|
213
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/can_paginate.html)
|
|
214
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#can_paginate)
|
|
215
|
+
"""
|
|
216
|
+
|
|
217
|
+
def generate_presigned_url(
|
|
218
|
+
self,
|
|
219
|
+
ClientMethod: str,
|
|
220
|
+
Params: Mapping[str, Any] = ...,
|
|
221
|
+
ExpiresIn: int = 3600,
|
|
222
|
+
HttpMethod: str = ...,
|
|
223
|
+
) -> str:
|
|
224
|
+
"""
|
|
225
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/generate_presigned_url.html)
|
|
226
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#generate_presigned_url)
|
|
227
|
+
"""
|
|
228
|
+
|
|
229
|
+
def close(self) -> None:
|
|
230
|
+
"""
|
|
231
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/close.html)
|
|
232
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#close)
|
|
233
|
+
"""
|
|
234
|
+
|
|
208
235
|
def batch_execute_statement(
|
|
209
236
|
self, **kwargs: Unpack[BatchExecuteStatementInputRequestTypeDef]
|
|
210
237
|
) -> BatchExecuteStatementOutputTypeDef:
|
|
211
238
|
"""
|
|
212
239
|
This operation allows you to perform batch reads or writes on data stored in
|
|
213
|
-
DynamoDB, using
|
|
214
|
-
PartiQL.
|
|
240
|
+
DynamoDB, using PartiQL.
|
|
215
241
|
|
|
216
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
242
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/batch_execute_statement.html)
|
|
217
243
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#batch_execute_statement)
|
|
218
244
|
"""
|
|
219
245
|
|
|
@@ -221,11 +247,10 @@ class DynamoDBClient(BaseClient):
|
|
|
221
247
|
self, **kwargs: Unpack[BatchGetItemInputRequestTypeDef]
|
|
222
248
|
) -> BatchGetItemOutputTypeDef:
|
|
223
249
|
"""
|
|
224
|
-
The
|
|
225
|
-
one or more
|
|
226
|
-
tables.
|
|
250
|
+
The <code>BatchGetItem</code> operation returns the attributes of one or more
|
|
251
|
+
items from one or more tables.
|
|
227
252
|
|
|
228
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
253
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/batch_get_item.html)
|
|
229
254
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#batch_get_item)
|
|
230
255
|
"""
|
|
231
256
|
|
|
@@ -233,36 +258,20 @@ class DynamoDBClient(BaseClient):
|
|
|
233
258
|
self, **kwargs: Unpack[BatchWriteItemInputRequestTypeDef]
|
|
234
259
|
) -> BatchWriteItemOutputTypeDef:
|
|
235
260
|
"""
|
|
236
|
-
The
|
|
237
|
-
tables.
|
|
261
|
+
The <code>BatchWriteItem</code> operation puts or deletes multiple items in one
|
|
262
|
+
or more tables.
|
|
238
263
|
|
|
239
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
264
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/batch_write_item.html)
|
|
240
265
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#batch_write_item)
|
|
241
266
|
"""
|
|
242
267
|
|
|
243
|
-
def can_paginate(self, operation_name: str) -> bool:
|
|
244
|
-
"""
|
|
245
|
-
Check if an operation can be paginated.
|
|
246
|
-
|
|
247
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.can_paginate)
|
|
248
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#can_paginate)
|
|
249
|
-
"""
|
|
250
|
-
|
|
251
|
-
def close(self) -> None:
|
|
252
|
-
"""
|
|
253
|
-
Closes underlying endpoint connections.
|
|
254
|
-
|
|
255
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.close)
|
|
256
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#close)
|
|
257
|
-
"""
|
|
258
|
-
|
|
259
268
|
def create_backup(
|
|
260
269
|
self, **kwargs: Unpack[CreateBackupInputRequestTypeDef]
|
|
261
270
|
) -> CreateBackupOutputTypeDef:
|
|
262
271
|
"""
|
|
263
272
|
Creates a backup for an existing table.
|
|
264
273
|
|
|
265
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
274
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/create_backup.html)
|
|
266
275
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#create_backup)
|
|
267
276
|
"""
|
|
268
277
|
|
|
@@ -272,7 +281,7 @@ class DynamoDBClient(BaseClient):
|
|
|
272
281
|
"""
|
|
273
282
|
Creates a global table from an existing table.
|
|
274
283
|
|
|
275
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
284
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/create_global_table.html)
|
|
276
285
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#create_global_table)
|
|
277
286
|
"""
|
|
278
287
|
|
|
@@ -280,9 +289,9 @@ class DynamoDBClient(BaseClient):
|
|
|
280
289
|
self, **kwargs: Unpack[CreateTableInputRequestTypeDef]
|
|
281
290
|
) -> CreateTableOutputTypeDef:
|
|
282
291
|
"""
|
|
283
|
-
The
|
|
292
|
+
The <code>CreateTable</code> operation adds a new table to your account.
|
|
284
293
|
|
|
285
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
294
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/create_table.html)
|
|
286
295
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#create_table)
|
|
287
296
|
"""
|
|
288
297
|
|
|
@@ -292,7 +301,7 @@ class DynamoDBClient(BaseClient):
|
|
|
292
301
|
"""
|
|
293
302
|
Deletes an existing backup of a table.
|
|
294
303
|
|
|
295
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
304
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/delete_backup.html)
|
|
296
305
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#delete_backup)
|
|
297
306
|
"""
|
|
298
307
|
|
|
@@ -302,7 +311,7 @@ class DynamoDBClient(BaseClient):
|
|
|
302
311
|
"""
|
|
303
312
|
Deletes a single item in a table by primary key.
|
|
304
313
|
|
|
305
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
314
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/delete_item.html)
|
|
306
315
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#delete_item)
|
|
307
316
|
"""
|
|
308
317
|
|
|
@@ -311,10 +320,9 @@ class DynamoDBClient(BaseClient):
|
|
|
311
320
|
) -> DeleteResourcePolicyOutputTypeDef:
|
|
312
321
|
"""
|
|
313
322
|
Deletes the resource-based policy attached to the resource, which can be a
|
|
314
|
-
table or
|
|
315
|
-
stream.
|
|
323
|
+
table or stream.
|
|
316
324
|
|
|
317
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
325
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/delete_resource_policy.html)
|
|
318
326
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#delete_resource_policy)
|
|
319
327
|
"""
|
|
320
328
|
|
|
@@ -322,9 +330,9 @@ class DynamoDBClient(BaseClient):
|
|
|
322
330
|
self, **kwargs: Unpack[DeleteTableInputRequestTypeDef]
|
|
323
331
|
) -> DeleteTableOutputTypeDef:
|
|
324
332
|
"""
|
|
325
|
-
The
|
|
333
|
+
The <code>DeleteTable</code> operation deletes a table and all of its items.
|
|
326
334
|
|
|
327
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
335
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/delete_table.html)
|
|
328
336
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#delete_table)
|
|
329
337
|
"""
|
|
330
338
|
|
|
@@ -334,7 +342,7 @@ class DynamoDBClient(BaseClient):
|
|
|
334
342
|
"""
|
|
335
343
|
Describes an existing backup of a table.
|
|
336
344
|
|
|
337
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
345
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_backup.html)
|
|
338
346
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_backup)
|
|
339
347
|
"""
|
|
340
348
|
|
|
@@ -343,10 +351,9 @@ class DynamoDBClient(BaseClient):
|
|
|
343
351
|
) -> DescribeContinuousBackupsOutputTypeDef:
|
|
344
352
|
"""
|
|
345
353
|
Checks the status of continuous backups and point in time recovery on the
|
|
346
|
-
specified
|
|
347
|
-
table.
|
|
354
|
+
specified table.
|
|
348
355
|
|
|
349
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
356
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_continuous_backups.html)
|
|
350
357
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_continuous_backups)
|
|
351
358
|
"""
|
|
352
359
|
|
|
@@ -355,10 +362,9 @@ class DynamoDBClient(BaseClient):
|
|
|
355
362
|
) -> DescribeContributorInsightsOutputTypeDef:
|
|
356
363
|
"""
|
|
357
364
|
Returns information about contributor insights for a given table or global
|
|
358
|
-
secondary
|
|
359
|
-
index.
|
|
365
|
+
secondary index.
|
|
360
366
|
|
|
361
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
367
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_contributor_insights.html)
|
|
362
368
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_contributor_insights)
|
|
363
369
|
"""
|
|
364
370
|
|
|
@@ -366,7 +372,7 @@ class DynamoDBClient(BaseClient):
|
|
|
366
372
|
"""
|
|
367
373
|
Returns the regional endpoint information.
|
|
368
374
|
|
|
369
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
375
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_endpoints.html)
|
|
370
376
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_endpoints)
|
|
371
377
|
"""
|
|
372
378
|
|
|
@@ -376,7 +382,7 @@ class DynamoDBClient(BaseClient):
|
|
|
376
382
|
"""
|
|
377
383
|
Describes an existing table export.
|
|
378
384
|
|
|
379
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
385
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_export.html)
|
|
380
386
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_export)
|
|
381
387
|
"""
|
|
382
388
|
|
|
@@ -386,7 +392,7 @@ class DynamoDBClient(BaseClient):
|
|
|
386
392
|
"""
|
|
387
393
|
Returns information about the specified global table.
|
|
388
394
|
|
|
389
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
395
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_global_table.html)
|
|
390
396
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_global_table)
|
|
391
397
|
"""
|
|
392
398
|
|
|
@@ -396,7 +402,7 @@ class DynamoDBClient(BaseClient):
|
|
|
396
402
|
"""
|
|
397
403
|
Describes Region-specific settings for a global table.
|
|
398
404
|
|
|
399
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
405
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_global_table_settings.html)
|
|
400
406
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_global_table_settings)
|
|
401
407
|
"""
|
|
402
408
|
|
|
@@ -406,7 +412,7 @@ class DynamoDBClient(BaseClient):
|
|
|
406
412
|
"""
|
|
407
413
|
Represents the properties of the import.
|
|
408
414
|
|
|
409
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
415
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_import.html)
|
|
410
416
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_import)
|
|
411
417
|
"""
|
|
412
418
|
|
|
@@ -416,7 +422,7 @@ class DynamoDBClient(BaseClient):
|
|
|
416
422
|
"""
|
|
417
423
|
Returns information about the status of Kinesis streaming.
|
|
418
424
|
|
|
419
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
425
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_kinesis_streaming_destination.html)
|
|
420
426
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_kinesis_streaming_destination)
|
|
421
427
|
"""
|
|
422
428
|
|
|
@@ -424,10 +430,9 @@ class DynamoDBClient(BaseClient):
|
|
|
424
430
|
"""
|
|
425
431
|
Returns the current provisioned-capacity quotas for your Amazon Web Services
|
|
426
432
|
account in a Region, both for the Region as a whole and for any one DynamoDB
|
|
427
|
-
table that you create
|
|
428
|
-
there.
|
|
433
|
+
table that you create there.
|
|
429
434
|
|
|
430
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
435
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_limits.html)
|
|
431
436
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_limits)
|
|
432
437
|
"""
|
|
433
438
|
|
|
@@ -436,10 +441,9 @@ class DynamoDBClient(BaseClient):
|
|
|
436
441
|
) -> DescribeTableOutputTypeDef:
|
|
437
442
|
"""
|
|
438
443
|
Returns information about the table, including the current status of the table,
|
|
439
|
-
when it was created, the primary key schema, and any indexes on the
|
|
440
|
-
table.
|
|
444
|
+
when it was created, the primary key schema, and any indexes on the table.
|
|
441
445
|
|
|
442
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
446
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_table.html)
|
|
443
447
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_table)
|
|
444
448
|
"""
|
|
445
449
|
|
|
@@ -449,7 +453,7 @@ class DynamoDBClient(BaseClient):
|
|
|
449
453
|
"""
|
|
450
454
|
Describes auto scaling settings across replicas of the global table at once.
|
|
451
455
|
|
|
452
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
456
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_table_replica_auto_scaling.html)
|
|
453
457
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_table_replica_auto_scaling)
|
|
454
458
|
"""
|
|
455
459
|
|
|
@@ -459,7 +463,7 @@ class DynamoDBClient(BaseClient):
|
|
|
459
463
|
"""
|
|
460
464
|
Gives a description of the Time to Live (TTL) status on the specified table.
|
|
461
465
|
|
|
462
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
466
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_time_to_live.html)
|
|
463
467
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#describe_time_to_live)
|
|
464
468
|
"""
|
|
465
469
|
|
|
@@ -469,7 +473,7 @@ class DynamoDBClient(BaseClient):
|
|
|
469
473
|
"""
|
|
470
474
|
Stops replication from the DynamoDB table to the Kinesis data stream.
|
|
471
475
|
|
|
472
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
476
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/disable_kinesis_streaming_destination.html)
|
|
473
477
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#disable_kinesis_streaming_destination)
|
|
474
478
|
"""
|
|
475
479
|
|
|
@@ -478,10 +482,9 @@ class DynamoDBClient(BaseClient):
|
|
|
478
482
|
) -> KinesisStreamingDestinationOutputTypeDef:
|
|
479
483
|
"""
|
|
480
484
|
Starts table data replication to the specified Kinesis data stream at a
|
|
481
|
-
timestamp chosen during the enable
|
|
482
|
-
workflow.
|
|
485
|
+
timestamp chosen during the enable workflow.
|
|
483
486
|
|
|
484
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
487
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/enable_kinesis_streaming_destination.html)
|
|
485
488
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#enable_kinesis_streaming_destination)
|
|
486
489
|
"""
|
|
487
490
|
|
|
@@ -490,10 +493,9 @@ class DynamoDBClient(BaseClient):
|
|
|
490
493
|
) -> ExecuteStatementOutputTypeDef:
|
|
491
494
|
"""
|
|
492
495
|
This operation allows you to perform reads and singleton writes on data stored
|
|
493
|
-
in DynamoDB, using
|
|
494
|
-
PartiQL.
|
|
496
|
+
in DynamoDB, using PartiQL.
|
|
495
497
|
|
|
496
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
498
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/execute_statement.html)
|
|
497
499
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#execute_statement)
|
|
498
500
|
"""
|
|
499
501
|
|
|
@@ -502,10 +504,9 @@ class DynamoDBClient(BaseClient):
|
|
|
502
504
|
) -> ExecuteTransactionOutputTypeDef:
|
|
503
505
|
"""
|
|
504
506
|
This operation allows you to perform transactional reads or writes on data
|
|
505
|
-
stored in DynamoDB, using
|
|
506
|
-
PartiQL.
|
|
507
|
+
stored in DynamoDB, using PartiQL.
|
|
507
508
|
|
|
508
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
509
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/execute_transaction.html)
|
|
509
510
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#execute_transaction)
|
|
510
511
|
"""
|
|
511
512
|
|
|
@@ -515,31 +516,16 @@ class DynamoDBClient(BaseClient):
|
|
|
515
516
|
"""
|
|
516
517
|
Exports table data to an S3 bucket.
|
|
517
518
|
|
|
518
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
519
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/export_table_to_point_in_time.html)
|
|
519
520
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#export_table_to_point_in_time)
|
|
520
521
|
"""
|
|
521
522
|
|
|
522
|
-
def generate_presigned_url(
|
|
523
|
-
self,
|
|
524
|
-
ClientMethod: str,
|
|
525
|
-
Params: Mapping[str, Any] = ...,
|
|
526
|
-
ExpiresIn: int = 3600,
|
|
527
|
-
HttpMethod: str = ...,
|
|
528
|
-
) -> str:
|
|
529
|
-
"""
|
|
530
|
-
Generate a presigned url given a client, its method, and arguments.
|
|
531
|
-
|
|
532
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.generate_presigned_url)
|
|
533
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#generate_presigned_url)
|
|
534
|
-
"""
|
|
535
|
-
|
|
536
523
|
def get_item(self, **kwargs: Unpack[GetItemInputRequestTypeDef]) -> GetItemOutputTypeDef:
|
|
537
524
|
"""
|
|
538
|
-
The
|
|
539
|
-
primary
|
|
540
|
-
key.
|
|
525
|
+
The <code>GetItem</code> operation returns a set of attributes for the item
|
|
526
|
+
with the given primary key.
|
|
541
527
|
|
|
542
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
528
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_item.html)
|
|
543
529
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_item)
|
|
544
530
|
"""
|
|
545
531
|
|
|
@@ -548,10 +534,9 @@ class DynamoDBClient(BaseClient):
|
|
|
548
534
|
) -> GetResourcePolicyOutputTypeDef:
|
|
549
535
|
"""
|
|
550
536
|
Returns the resource-based policy document attached to the resource, which can
|
|
551
|
-
be a table or stream, in JSON
|
|
552
|
-
format.
|
|
537
|
+
be a table or stream, in JSON format.
|
|
553
538
|
|
|
554
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
539
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_resource_policy.html)
|
|
555
540
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_resource_policy)
|
|
556
541
|
"""
|
|
557
542
|
|
|
@@ -561,7 +546,7 @@ class DynamoDBClient(BaseClient):
|
|
|
561
546
|
"""
|
|
562
547
|
Imports table data from an S3 bucket.
|
|
563
548
|
|
|
564
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
549
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/import_table.html)
|
|
565
550
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#import_table)
|
|
566
551
|
"""
|
|
567
552
|
|
|
@@ -570,10 +555,9 @@ class DynamoDBClient(BaseClient):
|
|
|
570
555
|
) -> ListBackupsOutputTypeDef:
|
|
571
556
|
"""
|
|
572
557
|
List DynamoDB backups that are associated with an Amazon Web Services account
|
|
573
|
-
and weren't made with Amazon Web Services
|
|
574
|
-
Backup.
|
|
558
|
+
and weren't made with Amazon Web Services Backup.
|
|
575
559
|
|
|
576
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
560
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/list_backups.html)
|
|
577
561
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#list_backups)
|
|
578
562
|
"""
|
|
579
563
|
|
|
@@ -582,10 +566,9 @@ class DynamoDBClient(BaseClient):
|
|
|
582
566
|
) -> ListContributorInsightsOutputTypeDef:
|
|
583
567
|
"""
|
|
584
568
|
Returns a list of ContributorInsightsSummary for a table and all its global
|
|
585
|
-
secondary
|
|
586
|
-
indexes.
|
|
569
|
+
secondary indexes.
|
|
587
570
|
|
|
588
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
571
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/list_contributor_insights.html)
|
|
589
572
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#list_contributor_insights)
|
|
590
573
|
"""
|
|
591
574
|
|
|
@@ -595,7 +578,7 @@ class DynamoDBClient(BaseClient):
|
|
|
595
578
|
"""
|
|
596
579
|
Lists completed exports within the past 90 days.
|
|
597
580
|
|
|
598
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
581
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/list_exports.html)
|
|
599
582
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#list_exports)
|
|
600
583
|
"""
|
|
601
584
|
|
|
@@ -605,7 +588,7 @@ class DynamoDBClient(BaseClient):
|
|
|
605
588
|
"""
|
|
606
589
|
Lists all global tables that have a replica in the specified Region.
|
|
607
590
|
|
|
608
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
591
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/list_global_tables.html)
|
|
609
592
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#list_global_tables)
|
|
610
593
|
"""
|
|
611
594
|
|
|
@@ -615,7 +598,7 @@ class DynamoDBClient(BaseClient):
|
|
|
615
598
|
"""
|
|
616
599
|
Lists completed imports within the past 90 days.
|
|
617
600
|
|
|
618
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
601
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/list_imports.html)
|
|
619
602
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#list_imports)
|
|
620
603
|
"""
|
|
621
604
|
|
|
@@ -626,7 +609,7 @@ class DynamoDBClient(BaseClient):
|
|
|
626
609
|
Returns an array of table names associated with the current account and
|
|
627
610
|
endpoint.
|
|
628
611
|
|
|
629
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
612
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/list_tables.html)
|
|
630
613
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#list_tables)
|
|
631
614
|
"""
|
|
632
615
|
|
|
@@ -636,7 +619,7 @@ class DynamoDBClient(BaseClient):
|
|
|
636
619
|
"""
|
|
637
620
|
List all tags on an Amazon DynamoDB resource.
|
|
638
621
|
|
|
639
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
622
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/list_tags_of_resource.html)
|
|
640
623
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#list_tags_of_resource)
|
|
641
624
|
"""
|
|
642
625
|
|
|
@@ -644,7 +627,7 @@ class DynamoDBClient(BaseClient):
|
|
|
644
627
|
"""
|
|
645
628
|
Creates a new item, or replaces an old item with a new item.
|
|
646
629
|
|
|
647
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
630
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/put_item.html)
|
|
648
631
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#put_item)
|
|
649
632
|
"""
|
|
650
633
|
|
|
@@ -653,20 +636,18 @@ class DynamoDBClient(BaseClient):
|
|
|
653
636
|
) -> PutResourcePolicyOutputTypeDef:
|
|
654
637
|
"""
|
|
655
638
|
Attaches a resource-based policy document to the resource, which can be a table
|
|
656
|
-
or
|
|
657
|
-
stream.
|
|
639
|
+
or stream.
|
|
658
640
|
|
|
659
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
641
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/put_resource_policy.html)
|
|
660
642
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#put_resource_policy)
|
|
661
643
|
"""
|
|
662
644
|
|
|
663
645
|
def query(self, **kwargs: Unpack[QueryInputRequestTypeDef]) -> QueryOutputTypeDef:
|
|
664
646
|
"""
|
|
665
647
|
You must provide the name of the partition key attribute and a single value for
|
|
666
|
-
that
|
|
667
|
-
attribute.
|
|
648
|
+
that attribute.
|
|
668
649
|
|
|
669
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
650
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/query.html)
|
|
670
651
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#query)
|
|
671
652
|
"""
|
|
672
653
|
|
|
@@ -676,7 +657,7 @@ class DynamoDBClient(BaseClient):
|
|
|
676
657
|
"""
|
|
677
658
|
Creates a new table from an existing backup.
|
|
678
659
|
|
|
679
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
660
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/restore_table_from_backup.html)
|
|
680
661
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#restore_table_from_backup)
|
|
681
662
|
"""
|
|
682
663
|
|
|
@@ -685,20 +666,19 @@ class DynamoDBClient(BaseClient):
|
|
|
685
666
|
) -> RestoreTableToPointInTimeOutputTypeDef:
|
|
686
667
|
"""
|
|
687
668
|
Restores the specified table to the specified point in time within
|
|
688
|
-
|
|
689
|
-
|
|
669
|
+
<code>EarliestRestorableDateTime</code> and
|
|
670
|
+
<code>LatestRestorableDateTime</code>.
|
|
690
671
|
|
|
691
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
672
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/restore_table_to_point_in_time.html)
|
|
692
673
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#restore_table_to_point_in_time)
|
|
693
674
|
"""
|
|
694
675
|
|
|
695
676
|
def scan(self, **kwargs: Unpack[ScanInputRequestTypeDef]) -> ScanOutputTypeDef:
|
|
696
677
|
"""
|
|
697
|
-
The
|
|
698
|
-
every item in a table or a secondary
|
|
699
|
-
index.
|
|
678
|
+
The <code>Scan</code> operation returns one or more items and item attributes
|
|
679
|
+
by accessing every item in a table or a secondary index.
|
|
700
680
|
|
|
701
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
681
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/scan.html)
|
|
702
682
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#scan)
|
|
703
683
|
"""
|
|
704
684
|
|
|
@@ -708,7 +688,7 @@ class DynamoDBClient(BaseClient):
|
|
|
708
688
|
"""
|
|
709
689
|
Associate a set of tags with an Amazon DynamoDB resource.
|
|
710
690
|
|
|
711
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
691
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/tag_resource.html)
|
|
712
692
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#tag_resource)
|
|
713
693
|
"""
|
|
714
694
|
|
|
@@ -716,12 +696,11 @@ class DynamoDBClient(BaseClient):
|
|
|
716
696
|
self, **kwargs: Unpack[TransactGetItemsInputRequestTypeDef]
|
|
717
697
|
) -> TransactGetItemsOutputTypeDef:
|
|
718
698
|
"""
|
|
719
|
-
|
|
720
|
-
multiple items from one or more tables (but not from indexes) in a
|
|
721
|
-
account and
|
|
722
|
-
Region.
|
|
699
|
+
<code>TransactGetItems</code> is a synchronous operation that atomically
|
|
700
|
+
retrieves multiple items from one or more tables (but not from indexes) in a
|
|
701
|
+
single account and Region.
|
|
723
702
|
|
|
724
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
703
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/transact_get_items.html)
|
|
725
704
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#transact_get_items)
|
|
726
705
|
"""
|
|
727
706
|
|
|
@@ -729,11 +708,10 @@ class DynamoDBClient(BaseClient):
|
|
|
729
708
|
self, **kwargs: Unpack[TransactWriteItemsInputRequestTypeDef]
|
|
730
709
|
) -> TransactWriteItemsOutputTypeDef:
|
|
731
710
|
"""
|
|
732
|
-
|
|
733
|
-
action
|
|
734
|
-
requests.
|
|
711
|
+
<code>TransactWriteItems</code> is a synchronous write operation that groups up
|
|
712
|
+
to 100 action requests.
|
|
735
713
|
|
|
736
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
714
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/transact_write_items.html)
|
|
737
715
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#transact_write_items)
|
|
738
716
|
"""
|
|
739
717
|
|
|
@@ -743,7 +721,7 @@ class DynamoDBClient(BaseClient):
|
|
|
743
721
|
"""
|
|
744
722
|
Removes the association of tags from an Amazon DynamoDB resource.
|
|
745
723
|
|
|
746
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
724
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/untag_resource.html)
|
|
747
725
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#untag_resource)
|
|
748
726
|
"""
|
|
749
727
|
|
|
@@ -751,11 +729,10 @@ class DynamoDBClient(BaseClient):
|
|
|
751
729
|
self, **kwargs: Unpack[UpdateContinuousBackupsInputRequestTypeDef]
|
|
752
730
|
) -> UpdateContinuousBackupsOutputTypeDef:
|
|
753
731
|
"""
|
|
754
|
-
|
|
755
|
-
specified
|
|
756
|
-
table.
|
|
732
|
+
<code>UpdateContinuousBackups</code> enables or disables point in time recovery
|
|
733
|
+
for the specified table.
|
|
757
734
|
|
|
758
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
735
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_continuous_backups.html)
|
|
759
736
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_continuous_backups)
|
|
760
737
|
"""
|
|
761
738
|
|
|
@@ -765,7 +742,7 @@ class DynamoDBClient(BaseClient):
|
|
|
765
742
|
"""
|
|
766
743
|
Updates the status for contributor insights for a specific table or index.
|
|
767
744
|
|
|
768
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
745
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_contributor_insights.html)
|
|
769
746
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_contributor_insights)
|
|
770
747
|
"""
|
|
771
748
|
|
|
@@ -775,7 +752,7 @@ class DynamoDBClient(BaseClient):
|
|
|
775
752
|
"""
|
|
776
753
|
Adds or removes replicas in the specified global table.
|
|
777
754
|
|
|
778
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
755
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_global_table.html)
|
|
779
756
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_global_table)
|
|
780
757
|
"""
|
|
781
758
|
|
|
@@ -785,7 +762,7 @@ class DynamoDBClient(BaseClient):
|
|
|
785
762
|
"""
|
|
786
763
|
Updates settings for a global table.
|
|
787
764
|
|
|
788
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
765
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_global_table_settings.html)
|
|
789
766
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_global_table_settings)
|
|
790
767
|
"""
|
|
791
768
|
|
|
@@ -794,10 +771,9 @@ class DynamoDBClient(BaseClient):
|
|
|
794
771
|
) -> UpdateItemOutputTypeDef:
|
|
795
772
|
"""
|
|
796
773
|
Edits an existing item's attributes, or adds a new item to the table if it does
|
|
797
|
-
not already
|
|
798
|
-
exist.
|
|
774
|
+
not already exist.
|
|
799
775
|
|
|
800
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
776
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_item.html)
|
|
801
777
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_item)
|
|
802
778
|
"""
|
|
803
779
|
|
|
@@ -807,7 +783,7 @@ class DynamoDBClient(BaseClient):
|
|
|
807
783
|
"""
|
|
808
784
|
The command to update the Kinesis stream destination.
|
|
809
785
|
|
|
810
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
786
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_kinesis_streaming_destination.html)
|
|
811
787
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_kinesis_streaming_destination)
|
|
812
788
|
"""
|
|
813
789
|
|
|
@@ -816,10 +792,9 @@ class DynamoDBClient(BaseClient):
|
|
|
816
792
|
) -> UpdateTableOutputTypeDef:
|
|
817
793
|
"""
|
|
818
794
|
Modifies the provisioned throughput settings, global secondary indexes, or
|
|
819
|
-
DynamoDB Streams settings for a given
|
|
820
|
-
table.
|
|
795
|
+
DynamoDB Streams settings for a given table.
|
|
821
796
|
|
|
822
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
797
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_table.html)
|
|
823
798
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_table)
|
|
824
799
|
"""
|
|
825
800
|
|
|
@@ -829,7 +804,7 @@ class DynamoDBClient(BaseClient):
|
|
|
829
804
|
"""
|
|
830
805
|
Updates auto scaling settings on your global tables at once.
|
|
831
806
|
|
|
832
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
807
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_table_replica_auto_scaling.html)
|
|
833
808
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_table_replica_auto_scaling)
|
|
834
809
|
"""
|
|
835
810
|
|
|
@@ -837,25 +812,28 @@ class DynamoDBClient(BaseClient):
|
|
|
837
812
|
self, **kwargs: Unpack[UpdateTimeToLiveInputRequestTypeDef]
|
|
838
813
|
) -> UpdateTimeToLiveOutputTypeDef:
|
|
839
814
|
"""
|
|
840
|
-
The
|
|
841
|
-
specified
|
|
842
|
-
table.
|
|
815
|
+
The <code>UpdateTimeToLive</code> method enables or disables Time to Live (TTL)
|
|
816
|
+
for the specified table.
|
|
843
817
|
|
|
844
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html
|
|
818
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_time_to_live.html)
|
|
845
819
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#update_time_to_live)
|
|
846
820
|
"""
|
|
847
821
|
|
|
848
822
|
@overload
|
|
849
823
|
def get_paginator(self, operation_name: Literal["list_backups"]) -> ListBackupsPaginator:
|
|
850
824
|
"""
|
|
851
|
-
|
|
825
|
+
Create a paginator for an operation.
|
|
826
|
+
|
|
827
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_paginator.html)
|
|
852
828
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_paginator)
|
|
853
829
|
"""
|
|
854
830
|
|
|
855
831
|
@overload
|
|
856
832
|
def get_paginator(self, operation_name: Literal["list_tables"]) -> ListTablesPaginator:
|
|
857
833
|
"""
|
|
858
|
-
|
|
834
|
+
Create a paginator for an operation.
|
|
835
|
+
|
|
836
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_paginator.html)
|
|
859
837
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_paginator)
|
|
860
838
|
"""
|
|
861
839
|
|
|
@@ -864,34 +842,44 @@ class DynamoDBClient(BaseClient):
|
|
|
864
842
|
self, operation_name: Literal["list_tags_of_resource"]
|
|
865
843
|
) -> ListTagsOfResourcePaginator:
|
|
866
844
|
"""
|
|
867
|
-
|
|
845
|
+
Create a paginator for an operation.
|
|
846
|
+
|
|
847
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_paginator.html)
|
|
868
848
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_paginator)
|
|
869
849
|
"""
|
|
870
850
|
|
|
871
851
|
@overload
|
|
872
852
|
def get_paginator(self, operation_name: Literal["query"]) -> QueryPaginator:
|
|
873
853
|
"""
|
|
874
|
-
|
|
854
|
+
Create a paginator for an operation.
|
|
855
|
+
|
|
856
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_paginator.html)
|
|
875
857
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_paginator)
|
|
876
858
|
"""
|
|
877
859
|
|
|
878
860
|
@overload
|
|
879
861
|
def get_paginator(self, operation_name: Literal["scan"]) -> ScanPaginator:
|
|
880
862
|
"""
|
|
881
|
-
|
|
863
|
+
Create a paginator for an operation.
|
|
864
|
+
|
|
865
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_paginator.html)
|
|
882
866
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_paginator)
|
|
883
867
|
"""
|
|
884
868
|
|
|
885
869
|
@overload
|
|
886
870
|
def get_waiter(self, waiter_name: Literal["table_exists"]) -> TableExistsWaiter:
|
|
887
871
|
"""
|
|
888
|
-
|
|
872
|
+
Returns an object that can wait for some condition.
|
|
873
|
+
|
|
874
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_waiter.html)
|
|
889
875
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_waiter)
|
|
890
876
|
"""
|
|
891
877
|
|
|
892
878
|
@overload
|
|
893
879
|
def get_waiter(self, waiter_name: Literal["table_not_exists"]) -> TableNotExistsWaiter:
|
|
894
880
|
"""
|
|
895
|
-
|
|
881
|
+
Returns an object that can wait for some condition.
|
|
882
|
+
|
|
883
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_waiter.html)
|
|
896
884
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_waiter)
|
|
897
885
|
"""
|