types-boto3-dynamodb 1.35.71__py3-none-any.whl → 1.35.93__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- types_boto3_dynamodb/__init__.py +7 -2
- types_boto3_dynamodb/__init__.pyi +6 -2
- types_boto3_dynamodb/__main__.py +9 -8
- types_boto3_dynamodb/client.py +41 -33
- types_boto3_dynamodb/client.pyi +41 -32
- types_boto3_dynamodb/literals.py +12 -2
- types_boto3_dynamodb/literals.pyi +12 -2
- types_boto3_dynamodb/paginator.py +58 -36
- types_boto3_dynamodb/paginator.pyi +54 -35
- types_boto3_dynamodb/service_resource.py +25 -18
- types_boto3_dynamodb/service_resource.pyi +25 -18
- types_boto3_dynamodb/type_defs.py +69 -68
- types_boto3_dynamodb/type_defs.pyi +65 -62
- types_boto3_dynamodb/version.py +2 -2
- types_boto3_dynamodb/waiter.py +11 -8
- types_boto3_dynamodb/waiter.pyi +11 -8
- {types_boto3_dynamodb-1.35.71.dist-info → types_boto3_dynamodb-1.35.93.dist-info}/LICENSE +1 -1
- {types_boto3_dynamodb-1.35.71.dist-info → types_boto3_dynamodb-1.35.93.dist-info}/METADATA +50 -10
- types_boto3_dynamodb-1.35.93.dist-info/RECORD +22 -0
- {types_boto3_dynamodb-1.35.71.dist-info → types_boto3_dynamodb-1.35.93.dist-info}/WHEEL +1 -1
- types_boto3_dynamodb-1.35.71.dist-info/RECORD +0 -22
- {types_boto3_dynamodb-1.35.71.dist-info → types_boto3_dynamodb-1.35.93.dist-info}/top_level.txt +0 -0
types_boto3_dynamodb/__init__.py
CHANGED
|
@@ -34,7 +34,7 @@ Usage::
|
|
|
34
34
|
scan_paginator: ScanPaginator = client.get_paginator("scan")
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
-
Copyright
|
|
37
|
+
Copyright 2025 Vlad Emelianov
|
|
38
38
|
"""
|
|
39
39
|
|
|
40
40
|
from .client import DynamoDBClient
|
|
@@ -45,9 +45,14 @@ from .paginator import (
|
|
|
45
45
|
QueryPaginator,
|
|
46
46
|
ScanPaginator,
|
|
47
47
|
)
|
|
48
|
-
from .service_resource import DynamoDBServiceResource
|
|
49
48
|
from .waiter import TableExistsWaiter, TableNotExistsWaiter
|
|
50
49
|
|
|
50
|
+
try:
|
|
51
|
+
from .service_resource import DynamoDBServiceResource
|
|
52
|
+
except ImportError:
|
|
53
|
+
from builtins import object as DynamoDBServiceResource # type: ignore[assignment]
|
|
54
|
+
|
|
55
|
+
|
|
51
56
|
Client = DynamoDBClient
|
|
52
57
|
|
|
53
58
|
|
|
@@ -34,7 +34,7 @@ Usage::
|
|
|
34
34
|
scan_paginator: ScanPaginator = client.get_paginator("scan")
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
-
Copyright
|
|
37
|
+
Copyright 2025 Vlad Emelianov
|
|
38
38
|
"""
|
|
39
39
|
|
|
40
40
|
from .client import DynamoDBClient
|
|
@@ -45,9 +45,13 @@ from .paginator import (
|
|
|
45
45
|
QueryPaginator,
|
|
46
46
|
ScanPaginator,
|
|
47
47
|
)
|
|
48
|
-
from .service_resource import DynamoDBServiceResource
|
|
49
48
|
from .waiter import TableExistsWaiter, TableNotExistsWaiter
|
|
50
49
|
|
|
50
|
+
try:
|
|
51
|
+
from .service_resource import DynamoDBServiceResource
|
|
52
|
+
except ImportError:
|
|
53
|
+
from builtins import object as DynamoDBServiceResource # type: ignore[assignment]
|
|
54
|
+
|
|
51
55
|
Client = DynamoDBClient
|
|
52
56
|
|
|
53
57
|
ServiceResource = DynamoDBServiceResource
|
types_boto3_dynamodb/__main__.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
3
|
|
|
4
|
-
Copyright
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import sys
|
|
@@ -11,14 +11,14 @@ def print_info() -> None:
|
|
|
11
11
|
"""
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
|
-
|
|
15
|
-
"Type annotations for boto3 DynamoDB 1.35.
|
|
16
|
-
"Version: 1.35.
|
|
17
|
-
"Builder version: 8.
|
|
14
|
+
sys.stdout.write(
|
|
15
|
+
"Type annotations for boto3 DynamoDB 1.35.93\n"
|
|
16
|
+
"Version: 1.35.93\n"
|
|
17
|
+
"Builder version: 8.8.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#dynamodb\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
21
|
-
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
|
22
22
|
)
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
|
|
29
|
+
sys.stdout.write("1.35.93\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -34,7 +34,8 @@ def main() -> None:
|
|
|
34
34
|
Main CLI entrypoint.
|
|
35
35
|
"""
|
|
36
36
|
if "--version" in sys.argv:
|
|
37
|
-
|
|
37
|
+
print_version()
|
|
38
|
+
return
|
|
38
39
|
print_info()
|
|
39
40
|
|
|
40
41
|
|
types_boto3_dynamodb/client.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for dynamodb service
|
|
2
|
+
Type annotations for dynamodb service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -13,13 +13,17 @@ Usage::
|
|
|
13
13
|
client: DynamoDBClient = session.client("dynamodb")
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
Copyright
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .paginator import (
|
|
25
29
|
ListBackupsPaginator,
|
|
@@ -141,6 +145,11 @@ from .type_defs import (
|
|
|
141
145
|
)
|
|
142
146
|
from .waiter import TableExistsWaiter, TableNotExistsWaiter
|
|
143
147
|
|
|
148
|
+
if sys.version_info >= (3, 9):
|
|
149
|
+
from builtins import type as Type
|
|
150
|
+
from collections.abc import Mapping
|
|
151
|
+
else:
|
|
152
|
+
from typing import Mapping, Type
|
|
144
153
|
if sys.version_info >= (3, 12):
|
|
145
154
|
from typing import Literal, Unpack
|
|
146
155
|
else:
|
|
@@ -150,15 +159,7 @@ else:
|
|
|
150
159
|
__all__ = ("DynamoDBClient",)
|
|
151
160
|
|
|
152
161
|
|
|
153
|
-
class
|
|
154
|
-
MSG_TEMPLATE: str
|
|
155
|
-
|
|
156
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
157
|
-
self.response: Dict[str, Any]
|
|
158
|
-
self.operation_name: str
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
class Exceptions:
|
|
162
|
+
class Exceptions(BaseClientExceptions):
|
|
162
163
|
BackupInUseException: Type[BotocoreClientError]
|
|
163
164
|
BackupNotFoundException: Type[BotocoreClientError]
|
|
164
165
|
ClientError: Type[BotocoreClientError]
|
|
@@ -183,6 +184,7 @@ class Exceptions:
|
|
|
183
184
|
ProvisionedThroughputExceededException: Type[BotocoreClientError]
|
|
184
185
|
ReplicaAlreadyExistsException: Type[BotocoreClientError]
|
|
185
186
|
ReplicaNotFoundException: Type[BotocoreClientError]
|
|
187
|
+
ReplicatedWriteConflictException: Type[BotocoreClientError]
|
|
186
188
|
RequestLimitExceeded: Type[BotocoreClientError]
|
|
187
189
|
ResourceInUseException: Type[BotocoreClientError]
|
|
188
190
|
ResourceNotFoundException: Type[BotocoreClientError]
|
|
@@ -229,12 +231,6 @@ class DynamoDBClient(BaseClient):
|
|
|
229
231
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#generate_presigned_url)
|
|
230
232
|
"""
|
|
231
233
|
|
|
232
|
-
def close(self) -> None:
|
|
233
|
-
"""
|
|
234
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/close.html)
|
|
235
|
-
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#close)
|
|
236
|
-
"""
|
|
237
|
-
|
|
238
234
|
def batch_execute_statement(
|
|
239
235
|
self, **kwargs: Unpack[BatchExecuteStatementInputRequestTypeDef]
|
|
240
236
|
) -> BatchExecuteStatementOutputTypeDef:
|
|
@@ -822,8 +818,10 @@ class DynamoDBClient(BaseClient):
|
|
|
822
818
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#update_time_to_live)
|
|
823
819
|
"""
|
|
824
820
|
|
|
825
|
-
@overload
|
|
826
|
-
def get_paginator(
|
|
821
|
+
@overload # type: ignore[override]
|
|
822
|
+
def get_paginator( # type: ignore[override]
|
|
823
|
+
self, operation_name: Literal["list_backups"]
|
|
824
|
+
) -> ListBackupsPaginator:
|
|
827
825
|
"""
|
|
828
826
|
Create a paginator for an operation.
|
|
829
827
|
|
|
@@ -831,8 +829,10 @@ class DynamoDBClient(BaseClient):
|
|
|
831
829
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_paginator)
|
|
832
830
|
"""
|
|
833
831
|
|
|
834
|
-
@overload
|
|
835
|
-
def get_paginator(
|
|
832
|
+
@overload # type: ignore[override]
|
|
833
|
+
def get_paginator( # type: ignore[override]
|
|
834
|
+
self, operation_name: Literal["list_tables"]
|
|
835
|
+
) -> ListTablesPaginator:
|
|
836
836
|
"""
|
|
837
837
|
Create a paginator for an operation.
|
|
838
838
|
|
|
@@ -840,8 +840,8 @@ class DynamoDBClient(BaseClient):
|
|
|
840
840
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_paginator)
|
|
841
841
|
"""
|
|
842
842
|
|
|
843
|
-
@overload
|
|
844
|
-
def get_paginator(
|
|
843
|
+
@overload # type: ignore[override]
|
|
844
|
+
def get_paginator( # type: ignore[override]
|
|
845
845
|
self, operation_name: Literal["list_tags_of_resource"]
|
|
846
846
|
) -> ListTagsOfResourcePaginator:
|
|
847
847
|
"""
|
|
@@ -851,8 +851,10 @@ class DynamoDBClient(BaseClient):
|
|
|
851
851
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_paginator)
|
|
852
852
|
"""
|
|
853
853
|
|
|
854
|
-
@overload
|
|
855
|
-
def get_paginator(
|
|
854
|
+
@overload # type: ignore[override]
|
|
855
|
+
def get_paginator( # type: ignore[override]
|
|
856
|
+
self, operation_name: Literal["query"]
|
|
857
|
+
) -> QueryPaginator:
|
|
856
858
|
"""
|
|
857
859
|
Create a paginator for an operation.
|
|
858
860
|
|
|
@@ -860,8 +862,10 @@ class DynamoDBClient(BaseClient):
|
|
|
860
862
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_paginator)
|
|
861
863
|
"""
|
|
862
864
|
|
|
863
|
-
@overload
|
|
864
|
-
def get_paginator(
|
|
865
|
+
@overload # type: ignore[override]
|
|
866
|
+
def get_paginator( # type: ignore[override]
|
|
867
|
+
self, operation_name: Literal["scan"]
|
|
868
|
+
) -> ScanPaginator:
|
|
865
869
|
"""
|
|
866
870
|
Create a paginator for an operation.
|
|
867
871
|
|
|
@@ -869,8 +873,10 @@ class DynamoDBClient(BaseClient):
|
|
|
869
873
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_paginator)
|
|
870
874
|
"""
|
|
871
875
|
|
|
872
|
-
@overload
|
|
873
|
-
def get_waiter(
|
|
876
|
+
@overload # type: ignore[override]
|
|
877
|
+
def get_waiter( # type: ignore[override]
|
|
878
|
+
self, waiter_name: Literal["table_exists"]
|
|
879
|
+
) -> TableExistsWaiter:
|
|
874
880
|
"""
|
|
875
881
|
Returns an object that can wait for some condition.
|
|
876
882
|
|
|
@@ -878,8 +884,10 @@ class DynamoDBClient(BaseClient):
|
|
|
878
884
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_waiter)
|
|
879
885
|
"""
|
|
880
886
|
|
|
881
|
-
@overload
|
|
882
|
-
def get_waiter(
|
|
887
|
+
@overload # type: ignore[override]
|
|
888
|
+
def get_waiter( # type: ignore[override]
|
|
889
|
+
self, waiter_name: Literal["table_not_exists"]
|
|
890
|
+
) -> TableNotExistsWaiter:
|
|
883
891
|
"""
|
|
884
892
|
Returns an object that can wait for some condition.
|
|
885
893
|
|
types_boto3_dynamodb/client.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for dynamodb service
|
|
2
|
+
Type annotations for dynamodb service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -13,13 +13,17 @@ Usage::
|
|
|
13
13
|
client: DynamoDBClient = session.client("dynamodb")
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
Copyright
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .paginator import (
|
|
25
29
|
ListBackupsPaginator,
|
|
@@ -141,6 +145,11 @@ from .type_defs import (
|
|
|
141
145
|
)
|
|
142
146
|
from .waiter import TableExistsWaiter, TableNotExistsWaiter
|
|
143
147
|
|
|
148
|
+
if sys.version_info >= (3, 9):
|
|
149
|
+
from builtins import type as Type
|
|
150
|
+
from collections.abc import Mapping
|
|
151
|
+
else:
|
|
152
|
+
from typing import Mapping, Type
|
|
144
153
|
if sys.version_info >= (3, 12):
|
|
145
154
|
from typing import Literal, Unpack
|
|
146
155
|
else:
|
|
@@ -148,14 +157,7 @@ else:
|
|
|
148
157
|
|
|
149
158
|
__all__ = ("DynamoDBClient",)
|
|
150
159
|
|
|
151
|
-
class
|
|
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:
|
|
160
|
+
class Exceptions(BaseClientExceptions):
|
|
159
161
|
BackupInUseException: Type[BotocoreClientError]
|
|
160
162
|
BackupNotFoundException: Type[BotocoreClientError]
|
|
161
163
|
ClientError: Type[BotocoreClientError]
|
|
@@ -180,6 +182,7 @@ class Exceptions:
|
|
|
180
182
|
ProvisionedThroughputExceededException: Type[BotocoreClientError]
|
|
181
183
|
ReplicaAlreadyExistsException: Type[BotocoreClientError]
|
|
182
184
|
ReplicaNotFoundException: Type[BotocoreClientError]
|
|
185
|
+
ReplicatedWriteConflictException: Type[BotocoreClientError]
|
|
183
186
|
RequestLimitExceeded: Type[BotocoreClientError]
|
|
184
187
|
ResourceInUseException: Type[BotocoreClientError]
|
|
185
188
|
ResourceNotFoundException: Type[BotocoreClientError]
|
|
@@ -225,12 +228,6 @@ class DynamoDBClient(BaseClient):
|
|
|
225
228
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#generate_presigned_url)
|
|
226
229
|
"""
|
|
227
230
|
|
|
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
231
|
def batch_execute_statement(
|
|
235
232
|
self, **kwargs: Unpack[BatchExecuteStatementInputRequestTypeDef]
|
|
236
233
|
) -> BatchExecuteStatementOutputTypeDef:
|
|
@@ -818,8 +815,10 @@ class DynamoDBClient(BaseClient):
|
|
|
818
815
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#update_time_to_live)
|
|
819
816
|
"""
|
|
820
817
|
|
|
821
|
-
@overload
|
|
822
|
-
def get_paginator(
|
|
818
|
+
@overload # type: ignore[override]
|
|
819
|
+
def get_paginator( # type: ignore[override]
|
|
820
|
+
self, operation_name: Literal["list_backups"]
|
|
821
|
+
) -> ListBackupsPaginator:
|
|
823
822
|
"""
|
|
824
823
|
Create a paginator for an operation.
|
|
825
824
|
|
|
@@ -827,8 +826,10 @@ class DynamoDBClient(BaseClient):
|
|
|
827
826
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_paginator)
|
|
828
827
|
"""
|
|
829
828
|
|
|
830
|
-
@overload
|
|
831
|
-
def get_paginator(
|
|
829
|
+
@overload # type: ignore[override]
|
|
830
|
+
def get_paginator( # type: ignore[override]
|
|
831
|
+
self, operation_name: Literal["list_tables"]
|
|
832
|
+
) -> ListTablesPaginator:
|
|
832
833
|
"""
|
|
833
834
|
Create a paginator for an operation.
|
|
834
835
|
|
|
@@ -836,8 +837,8 @@ class DynamoDBClient(BaseClient):
|
|
|
836
837
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_paginator)
|
|
837
838
|
"""
|
|
838
839
|
|
|
839
|
-
@overload
|
|
840
|
-
def get_paginator(
|
|
840
|
+
@overload # type: ignore[override]
|
|
841
|
+
def get_paginator( # type: ignore[override]
|
|
841
842
|
self, operation_name: Literal["list_tags_of_resource"]
|
|
842
843
|
) -> ListTagsOfResourcePaginator:
|
|
843
844
|
"""
|
|
@@ -847,8 +848,10 @@ class DynamoDBClient(BaseClient):
|
|
|
847
848
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_paginator)
|
|
848
849
|
"""
|
|
849
850
|
|
|
850
|
-
@overload
|
|
851
|
-
def get_paginator(
|
|
851
|
+
@overload # type: ignore[override]
|
|
852
|
+
def get_paginator( # type: ignore[override]
|
|
853
|
+
self, operation_name: Literal["query"]
|
|
854
|
+
) -> QueryPaginator:
|
|
852
855
|
"""
|
|
853
856
|
Create a paginator for an operation.
|
|
854
857
|
|
|
@@ -856,8 +859,10 @@ class DynamoDBClient(BaseClient):
|
|
|
856
859
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_paginator)
|
|
857
860
|
"""
|
|
858
861
|
|
|
859
|
-
@overload
|
|
860
|
-
def get_paginator(
|
|
862
|
+
@overload # type: ignore[override]
|
|
863
|
+
def get_paginator( # type: ignore[override]
|
|
864
|
+
self, operation_name: Literal["scan"]
|
|
865
|
+
) -> ScanPaginator:
|
|
861
866
|
"""
|
|
862
867
|
Create a paginator for an operation.
|
|
863
868
|
|
|
@@ -865,8 +870,10 @@ class DynamoDBClient(BaseClient):
|
|
|
865
870
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_paginator)
|
|
866
871
|
"""
|
|
867
872
|
|
|
868
|
-
@overload
|
|
869
|
-
def get_waiter(
|
|
873
|
+
@overload # type: ignore[override]
|
|
874
|
+
def get_waiter( # type: ignore[override]
|
|
875
|
+
self, waiter_name: Literal["table_exists"]
|
|
876
|
+
) -> TableExistsWaiter:
|
|
870
877
|
"""
|
|
871
878
|
Returns an object that can wait for some condition.
|
|
872
879
|
|
|
@@ -874,8 +881,10 @@ class DynamoDBClient(BaseClient):
|
|
|
874
881
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/#get_waiter)
|
|
875
882
|
"""
|
|
876
883
|
|
|
877
|
-
@overload
|
|
878
|
-
def get_waiter(
|
|
884
|
+
@overload # type: ignore[override]
|
|
885
|
+
def get_waiter( # type: ignore[override]
|
|
886
|
+
self, waiter_name: Literal["table_not_exists"]
|
|
887
|
+
) -> TableNotExistsWaiter:
|
|
879
888
|
"""
|
|
880
889
|
Returns an object that can wait for some condition.
|
|
881
890
|
|
types_boto3_dynamodb/literals.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for dynamodb service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
|
11
11
|
data: ApproximateCreationDateTimePrecisionType = "MICROSECOND"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -50,6 +50,7 @@ __all__ = (
|
|
|
50
50
|
"ListBackupsPaginatorName",
|
|
51
51
|
"ListTablesPaginatorName",
|
|
52
52
|
"ListTagsOfResourcePaginatorName",
|
|
53
|
+
"MultiRegionConsistencyType",
|
|
53
54
|
"PaginatorName",
|
|
54
55
|
"PointInTimeRecoveryStatusType",
|
|
55
56
|
"ProjectionTypeType",
|
|
@@ -132,6 +133,7 @@ KeyTypeType = Literal["HASH", "RANGE"]
|
|
|
132
133
|
ListBackupsPaginatorName = Literal["list_backups"]
|
|
133
134
|
ListTablesPaginatorName = Literal["list_tables"]
|
|
134
135
|
ListTagsOfResourcePaginatorName = Literal["list_tags_of_resource"]
|
|
136
|
+
MultiRegionConsistencyType = Literal["EVENTUAL", "STRONG"]
|
|
135
137
|
PointInTimeRecoveryStatusType = Literal["DISABLED", "ENABLED"]
|
|
136
138
|
ProjectionTypeType = Literal["ALL", "INCLUDE", "KEYS_ONLY"]
|
|
137
139
|
QueryPaginatorName = Literal["query"]
|
|
@@ -204,12 +206,15 @@ ServiceName = Literal[
|
|
|
204
206
|
"b2bi",
|
|
205
207
|
"backup",
|
|
206
208
|
"backup-gateway",
|
|
209
|
+
"backupsearch",
|
|
207
210
|
"batch",
|
|
208
211
|
"bcm-data-exports",
|
|
209
212
|
"bcm-pricing-calculator",
|
|
210
213
|
"bedrock",
|
|
211
214
|
"bedrock-agent",
|
|
212
215
|
"bedrock-agent-runtime",
|
|
216
|
+
"bedrock-data-automation",
|
|
217
|
+
"bedrock-data-automation-runtime",
|
|
213
218
|
"bedrock-runtime",
|
|
214
219
|
"billing",
|
|
215
220
|
"billingconductor",
|
|
@@ -287,6 +292,7 @@ ServiceName = Literal[
|
|
|
287
292
|
"drs",
|
|
288
293
|
"ds",
|
|
289
294
|
"ds-data",
|
|
295
|
+
"dsql",
|
|
290
296
|
"dynamodb",
|
|
291
297
|
"dynamodbstreams",
|
|
292
298
|
"ebs",
|
|
@@ -343,6 +349,7 @@ ServiceName = Literal[
|
|
|
343
349
|
"inspector-scan",
|
|
344
350
|
"inspector2",
|
|
345
351
|
"internetmonitor",
|
|
352
|
+
"invoicing",
|
|
346
353
|
"iot",
|
|
347
354
|
"iot-data",
|
|
348
355
|
"iot-jobs-data",
|
|
@@ -429,6 +436,7 @@ ServiceName = Literal[
|
|
|
429
436
|
"neptune-graph",
|
|
430
437
|
"neptunedata",
|
|
431
438
|
"network-firewall",
|
|
439
|
+
"networkflowmonitor",
|
|
432
440
|
"networkmanager",
|
|
433
441
|
"networkmonitor",
|
|
434
442
|
"notifications",
|
|
@@ -495,6 +503,7 @@ ServiceName = Literal[
|
|
|
495
503
|
"s3",
|
|
496
504
|
"s3control",
|
|
497
505
|
"s3outposts",
|
|
506
|
+
"s3tables",
|
|
498
507
|
"sagemaker",
|
|
499
508
|
"sagemaker-a2i-runtime",
|
|
500
509
|
"sagemaker-edge",
|
|
@@ -507,6 +516,7 @@ ServiceName = Literal[
|
|
|
507
516
|
"schemas",
|
|
508
517
|
"sdb",
|
|
509
518
|
"secretsmanager",
|
|
519
|
+
"security-ir",
|
|
510
520
|
"securityhub",
|
|
511
521
|
"securitylake",
|
|
512
522
|
"serverlessrepo",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for dynamodb service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
|
11
11
|
data: ApproximateCreationDateTimePrecisionType = "MICROSECOND"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -49,6 +49,7 @@ __all__ = (
|
|
|
49
49
|
"ListBackupsPaginatorName",
|
|
50
50
|
"ListTablesPaginatorName",
|
|
51
51
|
"ListTagsOfResourcePaginatorName",
|
|
52
|
+
"MultiRegionConsistencyType",
|
|
52
53
|
"PaginatorName",
|
|
53
54
|
"PointInTimeRecoveryStatusType",
|
|
54
55
|
"ProjectionTypeType",
|
|
@@ -130,6 +131,7 @@ KeyTypeType = Literal["HASH", "RANGE"]
|
|
|
130
131
|
ListBackupsPaginatorName = Literal["list_backups"]
|
|
131
132
|
ListTablesPaginatorName = Literal["list_tables"]
|
|
132
133
|
ListTagsOfResourcePaginatorName = Literal["list_tags_of_resource"]
|
|
134
|
+
MultiRegionConsistencyType = Literal["EVENTUAL", "STRONG"]
|
|
133
135
|
PointInTimeRecoveryStatusType = Literal["DISABLED", "ENABLED"]
|
|
134
136
|
ProjectionTypeType = Literal["ALL", "INCLUDE", "KEYS_ONLY"]
|
|
135
137
|
QueryPaginatorName = Literal["query"]
|
|
@@ -202,12 +204,15 @@ ServiceName = Literal[
|
|
|
202
204
|
"b2bi",
|
|
203
205
|
"backup",
|
|
204
206
|
"backup-gateway",
|
|
207
|
+
"backupsearch",
|
|
205
208
|
"batch",
|
|
206
209
|
"bcm-data-exports",
|
|
207
210
|
"bcm-pricing-calculator",
|
|
208
211
|
"bedrock",
|
|
209
212
|
"bedrock-agent",
|
|
210
213
|
"bedrock-agent-runtime",
|
|
214
|
+
"bedrock-data-automation",
|
|
215
|
+
"bedrock-data-automation-runtime",
|
|
211
216
|
"bedrock-runtime",
|
|
212
217
|
"billing",
|
|
213
218
|
"billingconductor",
|
|
@@ -285,6 +290,7 @@ ServiceName = Literal[
|
|
|
285
290
|
"drs",
|
|
286
291
|
"ds",
|
|
287
292
|
"ds-data",
|
|
293
|
+
"dsql",
|
|
288
294
|
"dynamodb",
|
|
289
295
|
"dynamodbstreams",
|
|
290
296
|
"ebs",
|
|
@@ -341,6 +347,7 @@ ServiceName = Literal[
|
|
|
341
347
|
"inspector-scan",
|
|
342
348
|
"inspector2",
|
|
343
349
|
"internetmonitor",
|
|
350
|
+
"invoicing",
|
|
344
351
|
"iot",
|
|
345
352
|
"iot-data",
|
|
346
353
|
"iot-jobs-data",
|
|
@@ -427,6 +434,7 @@ ServiceName = Literal[
|
|
|
427
434
|
"neptune-graph",
|
|
428
435
|
"neptunedata",
|
|
429
436
|
"network-firewall",
|
|
437
|
+
"networkflowmonitor",
|
|
430
438
|
"networkmanager",
|
|
431
439
|
"networkmonitor",
|
|
432
440
|
"notifications",
|
|
@@ -493,6 +501,7 @@ ServiceName = Literal[
|
|
|
493
501
|
"s3",
|
|
494
502
|
"s3control",
|
|
495
503
|
"s3outposts",
|
|
504
|
+
"s3tables",
|
|
496
505
|
"sagemaker",
|
|
497
506
|
"sagemaker-a2i-runtime",
|
|
498
507
|
"sagemaker-edge",
|
|
@@ -505,6 +514,7 @@ ServiceName = Literal[
|
|
|
505
514
|
"schemas",
|
|
506
515
|
"sdb",
|
|
507
516
|
"secretsmanager",
|
|
517
|
+
"security-ir",
|
|
508
518
|
"securityhub",
|
|
509
519
|
"securitylake",
|
|
510
520
|
"serverlessrepo",
|