types-boto3-dynamodb 1.35.71__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.
@@ -0,0 +1,884 @@
1
+ """
2
+ Type annotations for dynamodb service client.
3
+
4
+ [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from boto3.session import Session
10
+ from types_boto3_dynamodb.client import DynamoDBClient
11
+
12
+ session = Session()
13
+ client: DynamoDBClient = session.client("dynamodb")
14
+ ```
15
+
16
+ Copyright 2024 Vlad Emelianov
17
+ """
18
+
19
+ import sys
20
+ from typing import Any, Dict, Mapping, Type, overload
21
+
22
+ from botocore.client import BaseClient, ClientMeta
23
+
24
+ from .paginator import (
25
+ ListBackupsPaginator,
26
+ ListTablesPaginator,
27
+ ListTagsOfResourcePaginator,
28
+ QueryPaginator,
29
+ ScanPaginator,
30
+ )
31
+ from .type_defs import (
32
+ BatchExecuteStatementInputRequestTypeDef,
33
+ BatchExecuteStatementOutputTypeDef,
34
+ BatchGetItemInputRequestTypeDef,
35
+ BatchGetItemOutputTypeDef,
36
+ BatchWriteItemInputRequestTypeDef,
37
+ BatchWriteItemOutputTypeDef,
38
+ CreateBackupInputRequestTypeDef,
39
+ CreateBackupOutputTypeDef,
40
+ CreateGlobalTableInputRequestTypeDef,
41
+ CreateGlobalTableOutputTypeDef,
42
+ CreateTableInputRequestTypeDef,
43
+ CreateTableOutputTypeDef,
44
+ DeleteBackupInputRequestTypeDef,
45
+ DeleteBackupOutputTypeDef,
46
+ DeleteItemInputRequestTypeDef,
47
+ DeleteItemOutputTypeDef,
48
+ DeleteResourcePolicyInputRequestTypeDef,
49
+ DeleteResourcePolicyOutputTypeDef,
50
+ DeleteTableInputRequestTypeDef,
51
+ DeleteTableOutputTypeDef,
52
+ DescribeBackupInputRequestTypeDef,
53
+ DescribeBackupOutputTypeDef,
54
+ DescribeContinuousBackupsInputRequestTypeDef,
55
+ DescribeContinuousBackupsOutputTypeDef,
56
+ DescribeContributorInsightsInputRequestTypeDef,
57
+ DescribeContributorInsightsOutputTypeDef,
58
+ DescribeEndpointsResponseTypeDef,
59
+ DescribeExportInputRequestTypeDef,
60
+ DescribeExportOutputTypeDef,
61
+ DescribeGlobalTableInputRequestTypeDef,
62
+ DescribeGlobalTableOutputTypeDef,
63
+ DescribeGlobalTableSettingsInputRequestTypeDef,
64
+ DescribeGlobalTableSettingsOutputTypeDef,
65
+ DescribeImportInputRequestTypeDef,
66
+ DescribeImportOutputTypeDef,
67
+ DescribeKinesisStreamingDestinationInputRequestTypeDef,
68
+ DescribeKinesisStreamingDestinationOutputTypeDef,
69
+ DescribeLimitsOutputTypeDef,
70
+ DescribeTableInputRequestTypeDef,
71
+ DescribeTableOutputTypeDef,
72
+ DescribeTableReplicaAutoScalingInputRequestTypeDef,
73
+ DescribeTableReplicaAutoScalingOutputTypeDef,
74
+ DescribeTimeToLiveInputRequestTypeDef,
75
+ DescribeTimeToLiveOutputTypeDef,
76
+ EmptyResponseMetadataTypeDef,
77
+ ExecuteStatementInputRequestTypeDef,
78
+ ExecuteStatementOutputTypeDef,
79
+ ExecuteTransactionInputRequestTypeDef,
80
+ ExecuteTransactionOutputTypeDef,
81
+ ExportTableToPointInTimeInputRequestTypeDef,
82
+ ExportTableToPointInTimeOutputTypeDef,
83
+ GetItemInputRequestTypeDef,
84
+ GetItemOutputTypeDef,
85
+ GetResourcePolicyInputRequestTypeDef,
86
+ GetResourcePolicyOutputTypeDef,
87
+ ImportTableInputRequestTypeDef,
88
+ ImportTableOutputTypeDef,
89
+ KinesisStreamingDestinationInputRequestTypeDef,
90
+ KinesisStreamingDestinationOutputTypeDef,
91
+ ListBackupsInputRequestTypeDef,
92
+ ListBackupsOutputTypeDef,
93
+ ListContributorInsightsInputRequestTypeDef,
94
+ ListContributorInsightsOutputTypeDef,
95
+ ListExportsInputRequestTypeDef,
96
+ ListExportsOutputTypeDef,
97
+ ListGlobalTablesInputRequestTypeDef,
98
+ ListGlobalTablesOutputTypeDef,
99
+ ListImportsInputRequestTypeDef,
100
+ ListImportsOutputTypeDef,
101
+ ListTablesInputRequestTypeDef,
102
+ ListTablesOutputTypeDef,
103
+ ListTagsOfResourceInputRequestTypeDef,
104
+ ListTagsOfResourceOutputTypeDef,
105
+ PutItemInputRequestTypeDef,
106
+ PutItemOutputTypeDef,
107
+ PutResourcePolicyInputRequestTypeDef,
108
+ PutResourcePolicyOutputTypeDef,
109
+ QueryInputRequestTypeDef,
110
+ QueryOutputTypeDef,
111
+ RestoreTableFromBackupInputRequestTypeDef,
112
+ RestoreTableFromBackupOutputTypeDef,
113
+ RestoreTableToPointInTimeInputRequestTypeDef,
114
+ RestoreTableToPointInTimeOutputTypeDef,
115
+ ScanInputRequestTypeDef,
116
+ ScanOutputTypeDef,
117
+ TagResourceInputRequestTypeDef,
118
+ TransactGetItemsInputRequestTypeDef,
119
+ TransactGetItemsOutputTypeDef,
120
+ TransactWriteItemsInputRequestTypeDef,
121
+ TransactWriteItemsOutputTypeDef,
122
+ UntagResourceInputRequestTypeDef,
123
+ UpdateContinuousBackupsInputRequestTypeDef,
124
+ UpdateContinuousBackupsOutputTypeDef,
125
+ UpdateContributorInsightsInputRequestTypeDef,
126
+ UpdateContributorInsightsOutputTypeDef,
127
+ UpdateGlobalTableInputRequestTypeDef,
128
+ UpdateGlobalTableOutputTypeDef,
129
+ UpdateGlobalTableSettingsInputRequestTypeDef,
130
+ UpdateGlobalTableSettingsOutputTypeDef,
131
+ UpdateItemInputRequestTypeDef,
132
+ UpdateItemOutputTypeDef,
133
+ UpdateKinesisStreamingDestinationInputRequestTypeDef,
134
+ UpdateKinesisStreamingDestinationOutputTypeDef,
135
+ UpdateTableInputRequestTypeDef,
136
+ UpdateTableOutputTypeDef,
137
+ UpdateTableReplicaAutoScalingInputRequestTypeDef,
138
+ UpdateTableReplicaAutoScalingOutputTypeDef,
139
+ UpdateTimeToLiveInputRequestTypeDef,
140
+ UpdateTimeToLiveOutputTypeDef,
141
+ )
142
+ from .waiter import TableExistsWaiter, TableNotExistsWaiter
143
+
144
+ if sys.version_info >= (3, 12):
145
+ from typing import Literal, Unpack
146
+ else:
147
+ from typing_extensions import Literal, Unpack
148
+
149
+ __all__ = ("DynamoDBClient",)
150
+
151
+ class BotocoreClientError(Exception):
152
+ MSG_TEMPLATE: str
153
+
154
+ def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
155
+ self.response: Dict[str, Any]
156
+ self.operation_name: str
157
+
158
+ class Exceptions:
159
+ BackupInUseException: Type[BotocoreClientError]
160
+ BackupNotFoundException: Type[BotocoreClientError]
161
+ ClientError: Type[BotocoreClientError]
162
+ ConditionalCheckFailedException: Type[BotocoreClientError]
163
+ ContinuousBackupsUnavailableException: Type[BotocoreClientError]
164
+ DuplicateItemException: Type[BotocoreClientError]
165
+ ExportConflictException: Type[BotocoreClientError]
166
+ ExportNotFoundException: Type[BotocoreClientError]
167
+ GlobalTableAlreadyExistsException: Type[BotocoreClientError]
168
+ GlobalTableNotFoundException: Type[BotocoreClientError]
169
+ IdempotentParameterMismatchException: Type[BotocoreClientError]
170
+ ImportConflictException: Type[BotocoreClientError]
171
+ ImportNotFoundException: Type[BotocoreClientError]
172
+ IndexNotFoundException: Type[BotocoreClientError]
173
+ InternalServerError: Type[BotocoreClientError]
174
+ InvalidExportTimeException: Type[BotocoreClientError]
175
+ InvalidRestoreTimeException: Type[BotocoreClientError]
176
+ ItemCollectionSizeLimitExceededException: Type[BotocoreClientError]
177
+ LimitExceededException: Type[BotocoreClientError]
178
+ PointInTimeRecoveryUnavailableException: Type[BotocoreClientError]
179
+ PolicyNotFoundException: Type[BotocoreClientError]
180
+ ProvisionedThroughputExceededException: Type[BotocoreClientError]
181
+ ReplicaAlreadyExistsException: Type[BotocoreClientError]
182
+ ReplicaNotFoundException: Type[BotocoreClientError]
183
+ RequestLimitExceeded: Type[BotocoreClientError]
184
+ ResourceInUseException: Type[BotocoreClientError]
185
+ ResourceNotFoundException: Type[BotocoreClientError]
186
+ TableAlreadyExistsException: Type[BotocoreClientError]
187
+ TableInUseException: Type[BotocoreClientError]
188
+ TableNotFoundException: Type[BotocoreClientError]
189
+ TransactionCanceledException: Type[BotocoreClientError]
190
+ TransactionConflictException: Type[BotocoreClientError]
191
+ TransactionInProgressException: Type[BotocoreClientError]
192
+
193
+ class DynamoDBClient(BaseClient):
194
+ """
195
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client)
196
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/)
197
+ """
198
+
199
+ meta: ClientMeta
200
+
201
+ @property
202
+ def exceptions(self) -> Exceptions:
203
+ """
204
+ DynamoDBClient exceptions.
205
+
206
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client)
207
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#exceptions)
208
+ """
209
+
210
+ def can_paginate(self, operation_name: str) -> bool:
211
+ """
212
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/can_paginate.html)
213
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#can_paginate)
214
+ """
215
+
216
+ def generate_presigned_url(
217
+ self,
218
+ ClientMethod: str,
219
+ Params: Mapping[str, Any] = ...,
220
+ ExpiresIn: int = 3600,
221
+ HttpMethod: str = ...,
222
+ ) -> str:
223
+ """
224
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/generate_presigned_url.html)
225
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#generate_presigned_url)
226
+ """
227
+
228
+ def close(self) -> None:
229
+ """
230
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/close.html)
231
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#close)
232
+ """
233
+
234
+ def batch_execute_statement(
235
+ self, **kwargs: Unpack[BatchExecuteStatementInputRequestTypeDef]
236
+ ) -> BatchExecuteStatementOutputTypeDef:
237
+ """
238
+ This operation allows you to perform batch reads or writes on data stored in
239
+ DynamoDB, using PartiQL.
240
+
241
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/batch_execute_statement.html)
242
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#batch_execute_statement)
243
+ """
244
+
245
+ def batch_get_item(
246
+ self, **kwargs: Unpack[BatchGetItemInputRequestTypeDef]
247
+ ) -> BatchGetItemOutputTypeDef:
248
+ """
249
+ The <code>BatchGetItem</code> operation returns the attributes of one or more
250
+ items from one or more tables.
251
+
252
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/batch_get_item.html)
253
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#batch_get_item)
254
+ """
255
+
256
+ def batch_write_item(
257
+ self, **kwargs: Unpack[BatchWriteItemInputRequestTypeDef]
258
+ ) -> BatchWriteItemOutputTypeDef:
259
+ """
260
+ The <code>BatchWriteItem</code> operation puts or deletes multiple items in one
261
+ or more tables.
262
+
263
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/batch_write_item.html)
264
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#batch_write_item)
265
+ """
266
+
267
+ def create_backup(
268
+ self, **kwargs: Unpack[CreateBackupInputRequestTypeDef]
269
+ ) -> CreateBackupOutputTypeDef:
270
+ """
271
+ Creates a backup for an existing table.
272
+
273
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/create_backup.html)
274
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#create_backup)
275
+ """
276
+
277
+ def create_global_table(
278
+ self, **kwargs: Unpack[CreateGlobalTableInputRequestTypeDef]
279
+ ) -> CreateGlobalTableOutputTypeDef:
280
+ """
281
+ Creates a global table from an existing table.
282
+
283
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/create_global_table.html)
284
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#create_global_table)
285
+ """
286
+
287
+ def create_table(
288
+ self, **kwargs: Unpack[CreateTableInputRequestTypeDef]
289
+ ) -> CreateTableOutputTypeDef:
290
+ """
291
+ The <code>CreateTable</code> operation adds a new table to your account.
292
+
293
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/create_table.html)
294
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#create_table)
295
+ """
296
+
297
+ def delete_backup(
298
+ self, **kwargs: Unpack[DeleteBackupInputRequestTypeDef]
299
+ ) -> DeleteBackupOutputTypeDef:
300
+ """
301
+ Deletes an existing backup of a table.
302
+
303
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/delete_backup.html)
304
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#delete_backup)
305
+ """
306
+
307
+ def delete_item(
308
+ self, **kwargs: Unpack[DeleteItemInputRequestTypeDef]
309
+ ) -> DeleteItemOutputTypeDef:
310
+ """
311
+ Deletes a single item in a table by primary key.
312
+
313
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/delete_item.html)
314
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#delete_item)
315
+ """
316
+
317
+ def delete_resource_policy(
318
+ self, **kwargs: Unpack[DeleteResourcePolicyInputRequestTypeDef]
319
+ ) -> DeleteResourcePolicyOutputTypeDef:
320
+ """
321
+ Deletes the resource-based policy attached to the resource, which can be a
322
+ table or stream.
323
+
324
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/delete_resource_policy.html)
325
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#delete_resource_policy)
326
+ """
327
+
328
+ def delete_table(
329
+ self, **kwargs: Unpack[DeleteTableInputRequestTypeDef]
330
+ ) -> DeleteTableOutputTypeDef:
331
+ """
332
+ The <code>DeleteTable</code> operation deletes a table and all of its items.
333
+
334
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/delete_table.html)
335
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#delete_table)
336
+ """
337
+
338
+ def describe_backup(
339
+ self, **kwargs: Unpack[DescribeBackupInputRequestTypeDef]
340
+ ) -> DescribeBackupOutputTypeDef:
341
+ """
342
+ Describes an existing backup of a table.
343
+
344
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_backup.html)
345
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#describe_backup)
346
+ """
347
+
348
+ def describe_continuous_backups(
349
+ self, **kwargs: Unpack[DescribeContinuousBackupsInputRequestTypeDef]
350
+ ) -> DescribeContinuousBackupsOutputTypeDef:
351
+ """
352
+ Checks the status of continuous backups and point in time recovery on the
353
+ specified table.
354
+
355
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_continuous_backups.html)
356
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#describe_continuous_backups)
357
+ """
358
+
359
+ def describe_contributor_insights(
360
+ self, **kwargs: Unpack[DescribeContributorInsightsInputRequestTypeDef]
361
+ ) -> DescribeContributorInsightsOutputTypeDef:
362
+ """
363
+ Returns information about contributor insights for a given table or global
364
+ secondary index.
365
+
366
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_contributor_insights.html)
367
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#describe_contributor_insights)
368
+ """
369
+
370
+ def describe_endpoints(self) -> DescribeEndpointsResponseTypeDef:
371
+ """
372
+ Returns the regional endpoint information.
373
+
374
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_endpoints.html)
375
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#describe_endpoints)
376
+ """
377
+
378
+ def describe_export(
379
+ self, **kwargs: Unpack[DescribeExportInputRequestTypeDef]
380
+ ) -> DescribeExportOutputTypeDef:
381
+ """
382
+ Describes an existing table export.
383
+
384
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_export.html)
385
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#describe_export)
386
+ """
387
+
388
+ def describe_global_table(
389
+ self, **kwargs: Unpack[DescribeGlobalTableInputRequestTypeDef]
390
+ ) -> DescribeGlobalTableOutputTypeDef:
391
+ """
392
+ Returns information about the specified global table.
393
+
394
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_global_table.html)
395
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#describe_global_table)
396
+ """
397
+
398
+ def describe_global_table_settings(
399
+ self, **kwargs: Unpack[DescribeGlobalTableSettingsInputRequestTypeDef]
400
+ ) -> DescribeGlobalTableSettingsOutputTypeDef:
401
+ """
402
+ Describes Region-specific settings for a global table.
403
+
404
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_global_table_settings.html)
405
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#describe_global_table_settings)
406
+ """
407
+
408
+ def describe_import(
409
+ self, **kwargs: Unpack[DescribeImportInputRequestTypeDef]
410
+ ) -> DescribeImportOutputTypeDef:
411
+ """
412
+ Represents the properties of the import.
413
+
414
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_import.html)
415
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#describe_import)
416
+ """
417
+
418
+ def describe_kinesis_streaming_destination(
419
+ self, **kwargs: Unpack[DescribeKinesisStreamingDestinationInputRequestTypeDef]
420
+ ) -> DescribeKinesisStreamingDestinationOutputTypeDef:
421
+ """
422
+ Returns information about the status of Kinesis streaming.
423
+
424
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_kinesis_streaming_destination.html)
425
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#describe_kinesis_streaming_destination)
426
+ """
427
+
428
+ def describe_limits(self) -> DescribeLimitsOutputTypeDef:
429
+ """
430
+ Returns the current provisioned-capacity quotas for your Amazon Web Services
431
+ account in a Region, both for the Region as a whole and for any one DynamoDB
432
+ table that you create there.
433
+
434
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_limits.html)
435
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#describe_limits)
436
+ """
437
+
438
+ def describe_table(
439
+ self, **kwargs: Unpack[DescribeTableInputRequestTypeDef]
440
+ ) -> DescribeTableOutputTypeDef:
441
+ """
442
+ Returns information about the table, including the current status of the table,
443
+ when it was created, the primary key schema, and any indexes on the table.
444
+
445
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_table.html)
446
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#describe_table)
447
+ """
448
+
449
+ def describe_table_replica_auto_scaling(
450
+ self, **kwargs: Unpack[DescribeTableReplicaAutoScalingInputRequestTypeDef]
451
+ ) -> DescribeTableReplicaAutoScalingOutputTypeDef:
452
+ """
453
+ Describes auto scaling settings across replicas of the global table at once.
454
+
455
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_table_replica_auto_scaling.html)
456
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#describe_table_replica_auto_scaling)
457
+ """
458
+
459
+ def describe_time_to_live(
460
+ self, **kwargs: Unpack[DescribeTimeToLiveInputRequestTypeDef]
461
+ ) -> DescribeTimeToLiveOutputTypeDef:
462
+ """
463
+ Gives a description of the Time to Live (TTL) status on the specified table.
464
+
465
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_time_to_live.html)
466
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#describe_time_to_live)
467
+ """
468
+
469
+ def disable_kinesis_streaming_destination(
470
+ self, **kwargs: Unpack[KinesisStreamingDestinationInputRequestTypeDef]
471
+ ) -> KinesisStreamingDestinationOutputTypeDef:
472
+ """
473
+ Stops replication from the DynamoDB table to the Kinesis data stream.
474
+
475
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/disable_kinesis_streaming_destination.html)
476
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#disable_kinesis_streaming_destination)
477
+ """
478
+
479
+ def enable_kinesis_streaming_destination(
480
+ self, **kwargs: Unpack[KinesisStreamingDestinationInputRequestTypeDef]
481
+ ) -> KinesisStreamingDestinationOutputTypeDef:
482
+ """
483
+ Starts table data replication to the specified Kinesis data stream at a
484
+ timestamp chosen during the enable workflow.
485
+
486
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/enable_kinesis_streaming_destination.html)
487
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#enable_kinesis_streaming_destination)
488
+ """
489
+
490
+ def execute_statement(
491
+ self, **kwargs: Unpack[ExecuteStatementInputRequestTypeDef]
492
+ ) -> ExecuteStatementOutputTypeDef:
493
+ """
494
+ This operation allows you to perform reads and singleton writes on data stored
495
+ in DynamoDB, using PartiQL.
496
+
497
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/execute_statement.html)
498
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#execute_statement)
499
+ """
500
+
501
+ def execute_transaction(
502
+ self, **kwargs: Unpack[ExecuteTransactionInputRequestTypeDef]
503
+ ) -> ExecuteTransactionOutputTypeDef:
504
+ """
505
+ This operation allows you to perform transactional reads or writes on data
506
+ stored in DynamoDB, using PartiQL.
507
+
508
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/execute_transaction.html)
509
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#execute_transaction)
510
+ """
511
+
512
+ def export_table_to_point_in_time(
513
+ self, **kwargs: Unpack[ExportTableToPointInTimeInputRequestTypeDef]
514
+ ) -> ExportTableToPointInTimeOutputTypeDef:
515
+ """
516
+ Exports table data to an S3 bucket.
517
+
518
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/export_table_to_point_in_time.html)
519
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#export_table_to_point_in_time)
520
+ """
521
+
522
+ def get_item(self, **kwargs: Unpack[GetItemInputRequestTypeDef]) -> GetItemOutputTypeDef:
523
+ """
524
+ The <code>GetItem</code> operation returns a set of attributes for the item
525
+ with the given primary key.
526
+
527
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_item.html)
528
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_item)
529
+ """
530
+
531
+ def get_resource_policy(
532
+ self, **kwargs: Unpack[GetResourcePolicyInputRequestTypeDef]
533
+ ) -> GetResourcePolicyOutputTypeDef:
534
+ """
535
+ Returns the resource-based policy document attached to the resource, which can
536
+ be a table or stream, in JSON format.
537
+
538
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_resource_policy.html)
539
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_resource_policy)
540
+ """
541
+
542
+ def import_table(
543
+ self, **kwargs: Unpack[ImportTableInputRequestTypeDef]
544
+ ) -> ImportTableOutputTypeDef:
545
+ """
546
+ Imports table data from an S3 bucket.
547
+
548
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/import_table.html)
549
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#import_table)
550
+ """
551
+
552
+ def list_backups(
553
+ self, **kwargs: Unpack[ListBackupsInputRequestTypeDef]
554
+ ) -> ListBackupsOutputTypeDef:
555
+ """
556
+ List DynamoDB backups that are associated with an Amazon Web Services account
557
+ and weren't made with Amazon Web Services Backup.
558
+
559
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/list_backups.html)
560
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#list_backups)
561
+ """
562
+
563
+ def list_contributor_insights(
564
+ self, **kwargs: Unpack[ListContributorInsightsInputRequestTypeDef]
565
+ ) -> ListContributorInsightsOutputTypeDef:
566
+ """
567
+ Returns a list of ContributorInsightsSummary for a table and all its global
568
+ secondary indexes.
569
+
570
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/list_contributor_insights.html)
571
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#list_contributor_insights)
572
+ """
573
+
574
+ def list_exports(
575
+ self, **kwargs: Unpack[ListExportsInputRequestTypeDef]
576
+ ) -> ListExportsOutputTypeDef:
577
+ """
578
+ Lists completed exports within the past 90 days.
579
+
580
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/list_exports.html)
581
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#list_exports)
582
+ """
583
+
584
+ def list_global_tables(
585
+ self, **kwargs: Unpack[ListGlobalTablesInputRequestTypeDef]
586
+ ) -> ListGlobalTablesOutputTypeDef:
587
+ """
588
+ Lists all global tables that have a replica in the specified Region.
589
+
590
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/list_global_tables.html)
591
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#list_global_tables)
592
+ """
593
+
594
+ def list_imports(
595
+ self, **kwargs: Unpack[ListImportsInputRequestTypeDef]
596
+ ) -> ListImportsOutputTypeDef:
597
+ """
598
+ Lists completed imports within the past 90 days.
599
+
600
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/list_imports.html)
601
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#list_imports)
602
+ """
603
+
604
+ def list_tables(
605
+ self, **kwargs: Unpack[ListTablesInputRequestTypeDef]
606
+ ) -> ListTablesOutputTypeDef:
607
+ """
608
+ Returns an array of table names associated with the current account and
609
+ endpoint.
610
+
611
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/list_tables.html)
612
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#list_tables)
613
+ """
614
+
615
+ def list_tags_of_resource(
616
+ self, **kwargs: Unpack[ListTagsOfResourceInputRequestTypeDef]
617
+ ) -> ListTagsOfResourceOutputTypeDef:
618
+ """
619
+ List all tags on an Amazon DynamoDB resource.
620
+
621
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/list_tags_of_resource.html)
622
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#list_tags_of_resource)
623
+ """
624
+
625
+ def put_item(self, **kwargs: Unpack[PutItemInputRequestTypeDef]) -> PutItemOutputTypeDef:
626
+ """
627
+ Creates a new item, or replaces an old item with a new item.
628
+
629
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/put_item.html)
630
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#put_item)
631
+ """
632
+
633
+ def put_resource_policy(
634
+ self, **kwargs: Unpack[PutResourcePolicyInputRequestTypeDef]
635
+ ) -> PutResourcePolicyOutputTypeDef:
636
+ """
637
+ Attaches a resource-based policy document to the resource, which can be a table
638
+ or stream.
639
+
640
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/put_resource_policy.html)
641
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#put_resource_policy)
642
+ """
643
+
644
+ def query(self, **kwargs: Unpack[QueryInputRequestTypeDef]) -> QueryOutputTypeDef:
645
+ """
646
+ You must provide the name of the partition key attribute and a single value for
647
+ that attribute.
648
+
649
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/query.html)
650
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#query)
651
+ """
652
+
653
+ def restore_table_from_backup(
654
+ self, **kwargs: Unpack[RestoreTableFromBackupInputRequestTypeDef]
655
+ ) -> RestoreTableFromBackupOutputTypeDef:
656
+ """
657
+ Creates a new table from an existing backup.
658
+
659
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/restore_table_from_backup.html)
660
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#restore_table_from_backup)
661
+ """
662
+
663
+ def restore_table_to_point_in_time(
664
+ self, **kwargs: Unpack[RestoreTableToPointInTimeInputRequestTypeDef]
665
+ ) -> RestoreTableToPointInTimeOutputTypeDef:
666
+ """
667
+ Restores the specified table to the specified point in time within
668
+ <code>EarliestRestorableDateTime</code> and
669
+ <code>LatestRestorableDateTime</code>.
670
+
671
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/restore_table_to_point_in_time.html)
672
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#restore_table_to_point_in_time)
673
+ """
674
+
675
+ def scan(self, **kwargs: Unpack[ScanInputRequestTypeDef]) -> ScanOutputTypeDef:
676
+ """
677
+ The <code>Scan</code> operation returns one or more items and item attributes
678
+ by accessing every item in a table or a secondary index.
679
+
680
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/scan.html)
681
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#scan)
682
+ """
683
+
684
+ def tag_resource(
685
+ self, **kwargs: Unpack[TagResourceInputRequestTypeDef]
686
+ ) -> EmptyResponseMetadataTypeDef:
687
+ """
688
+ Associate a set of tags with an Amazon DynamoDB resource.
689
+
690
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/tag_resource.html)
691
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#tag_resource)
692
+ """
693
+
694
+ def transact_get_items(
695
+ self, **kwargs: Unpack[TransactGetItemsInputRequestTypeDef]
696
+ ) -> TransactGetItemsOutputTypeDef:
697
+ """
698
+ <code>TransactGetItems</code> is a synchronous operation that atomically
699
+ retrieves multiple items from one or more tables (but not from indexes) in a
700
+ single account and Region.
701
+
702
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/transact_get_items.html)
703
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#transact_get_items)
704
+ """
705
+
706
+ def transact_write_items(
707
+ self, **kwargs: Unpack[TransactWriteItemsInputRequestTypeDef]
708
+ ) -> TransactWriteItemsOutputTypeDef:
709
+ """
710
+ <code>TransactWriteItems</code> is a synchronous write operation that groups up
711
+ to 100 action requests.
712
+
713
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/transact_write_items.html)
714
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#transact_write_items)
715
+ """
716
+
717
+ def untag_resource(
718
+ self, **kwargs: Unpack[UntagResourceInputRequestTypeDef]
719
+ ) -> EmptyResponseMetadataTypeDef:
720
+ """
721
+ Removes the association of tags from an Amazon DynamoDB resource.
722
+
723
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/untag_resource.html)
724
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#untag_resource)
725
+ """
726
+
727
+ def update_continuous_backups(
728
+ self, **kwargs: Unpack[UpdateContinuousBackupsInputRequestTypeDef]
729
+ ) -> UpdateContinuousBackupsOutputTypeDef:
730
+ """
731
+ <code>UpdateContinuousBackups</code> enables or disables point in time recovery
732
+ for the specified table.
733
+
734
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_continuous_backups.html)
735
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#update_continuous_backups)
736
+ """
737
+
738
+ def update_contributor_insights(
739
+ self, **kwargs: Unpack[UpdateContributorInsightsInputRequestTypeDef]
740
+ ) -> UpdateContributorInsightsOutputTypeDef:
741
+ """
742
+ Updates the status for contributor insights for a specific table or index.
743
+
744
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_contributor_insights.html)
745
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#update_contributor_insights)
746
+ """
747
+
748
+ def update_global_table(
749
+ self, **kwargs: Unpack[UpdateGlobalTableInputRequestTypeDef]
750
+ ) -> UpdateGlobalTableOutputTypeDef:
751
+ """
752
+ Adds or removes replicas in the specified global table.
753
+
754
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_global_table.html)
755
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#update_global_table)
756
+ """
757
+
758
+ def update_global_table_settings(
759
+ self, **kwargs: Unpack[UpdateGlobalTableSettingsInputRequestTypeDef]
760
+ ) -> UpdateGlobalTableSettingsOutputTypeDef:
761
+ """
762
+ Updates settings for a global table.
763
+
764
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_global_table_settings.html)
765
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#update_global_table_settings)
766
+ """
767
+
768
+ def update_item(
769
+ self, **kwargs: Unpack[UpdateItemInputRequestTypeDef]
770
+ ) -> UpdateItemOutputTypeDef:
771
+ """
772
+ Edits an existing item's attributes, or adds a new item to the table if it does
773
+ not already exist.
774
+
775
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_item.html)
776
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#update_item)
777
+ """
778
+
779
+ def update_kinesis_streaming_destination(
780
+ self, **kwargs: Unpack[UpdateKinesisStreamingDestinationInputRequestTypeDef]
781
+ ) -> UpdateKinesisStreamingDestinationOutputTypeDef:
782
+ """
783
+ The command to update the Kinesis stream destination.
784
+
785
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_kinesis_streaming_destination.html)
786
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#update_kinesis_streaming_destination)
787
+ """
788
+
789
+ def update_table(
790
+ self, **kwargs: Unpack[UpdateTableInputRequestTypeDef]
791
+ ) -> UpdateTableOutputTypeDef:
792
+ """
793
+ Modifies the provisioned throughput settings, global secondary indexes, or
794
+ DynamoDB Streams settings for a given table.
795
+
796
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_table.html)
797
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#update_table)
798
+ """
799
+
800
+ def update_table_replica_auto_scaling(
801
+ self, **kwargs: Unpack[UpdateTableReplicaAutoScalingInputRequestTypeDef]
802
+ ) -> UpdateTableReplicaAutoScalingOutputTypeDef:
803
+ """
804
+ Updates auto scaling settings on your global tables at once.
805
+
806
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_table_replica_auto_scaling.html)
807
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#update_table_replica_auto_scaling)
808
+ """
809
+
810
+ def update_time_to_live(
811
+ self, **kwargs: Unpack[UpdateTimeToLiveInputRequestTypeDef]
812
+ ) -> UpdateTimeToLiveOutputTypeDef:
813
+ """
814
+ The <code>UpdateTimeToLive</code> method enables or disables Time to Live (TTL)
815
+ for the specified table.
816
+
817
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/update_time_to_live.html)
818
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#update_time_to_live)
819
+ """
820
+
821
+ @overload
822
+ def get_paginator(self, operation_name: Literal["list_backups"]) -> ListBackupsPaginator:
823
+ """
824
+ Create a paginator for an operation.
825
+
826
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_paginator.html)
827
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_paginator)
828
+ """
829
+
830
+ @overload
831
+ def get_paginator(self, operation_name: Literal["list_tables"]) -> ListTablesPaginator:
832
+ """
833
+ Create a paginator for an operation.
834
+
835
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_paginator.html)
836
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_paginator)
837
+ """
838
+
839
+ @overload
840
+ def get_paginator(
841
+ self, operation_name: Literal["list_tags_of_resource"]
842
+ ) -> ListTagsOfResourcePaginator:
843
+ """
844
+ Create a paginator for an operation.
845
+
846
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_paginator.html)
847
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_paginator)
848
+ """
849
+
850
+ @overload
851
+ def get_paginator(self, operation_name: Literal["query"]) -> QueryPaginator:
852
+ """
853
+ Create a paginator for an operation.
854
+
855
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_paginator.html)
856
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_paginator)
857
+ """
858
+
859
+ @overload
860
+ def get_paginator(self, operation_name: Literal["scan"]) -> ScanPaginator:
861
+ """
862
+ Create a paginator for an operation.
863
+
864
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_paginator.html)
865
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_paginator)
866
+ """
867
+
868
+ @overload
869
+ def get_waiter(self, waiter_name: Literal["table_exists"]) -> TableExistsWaiter:
870
+ """
871
+ Returns an object that can wait for some condition.
872
+
873
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_waiter.html)
874
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_waiter)
875
+ """
876
+
877
+ @overload
878
+ def get_waiter(self, waiter_name: Literal["table_not_exists"]) -> TableNotExistsWaiter:
879
+ """
880
+ Returns an object that can wait for some condition.
881
+
882
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_waiter.html)
883
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_waiter)
884
+ """