types-boto3-dynamodb 1.36.0__py3-none-any.whl → 1.37.12__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- types_boto3_dynamodb/__init__.py +4 -2
- types_boto3_dynamodb/__init__.pyi +4 -2
- types_boto3_dynamodb/__main__.py +4 -4
- types_boto3_dynamodb/client.py +110 -129
- types_boto3_dynamodb/client.pyi +110 -129
- types_boto3_dynamodb/literals.py +4 -3
- types_boto3_dynamodb/literals.pyi +4 -3
- types_boto3_dynamodb/paginator.py +2 -2
- types_boto3_dynamodb/paginator.pyi +2 -2
- types_boto3_dynamodb/service_resource.py +2 -2
- types_boto3_dynamodb/service_resource.pyi +2 -2
- types_boto3_dynamodb/type_defs.py +219 -194
- types_boto3_dynamodb/type_defs.pyi +211 -188
- types_boto3_dynamodb/version.py +1 -1
- types_boto3_dynamodb/waiter.py +4 -4
- types_boto3_dynamodb/waiter.pyi +4 -4
- {types_boto3_dynamodb-1.36.0.dist-info → types_boto3_dynamodb-1.37.12.dist-info}/METADATA +12 -8
- types_boto3_dynamodb-1.37.12.dist-info/RECORD +22 -0
- {types_boto3_dynamodb-1.36.0.dist-info → types_boto3_dynamodb-1.37.12.dist-info}/WHEEL +1 -1
- types_boto3_dynamodb-1.36.0.dist-info/RECORD +0 -22
- {types_boto3_dynamodb-1.36.0.dist-info → types_boto3_dynamodb-1.37.12.dist-info}/LICENSE +0 -0
- {types_boto3_dynamodb-1.36.0.dist-info → types_boto3_dynamodb-1.37.12.dist-info}/top_level.txt +0 -0
types_boto3_dynamodb/version.py
CHANGED
types_boto3_dynamodb/waiter.py
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for dynamodb service client waiters.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -20,8 +22,6 @@ Usage::
|
|
|
20
22
|
table_exists_waiter: TableExistsWaiter = client.get_waiter("table_exists")
|
|
21
23
|
table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
|
|
22
24
|
```
|
|
23
|
-
|
|
24
|
-
Copyright 2025 Vlad Emelianov
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
from __future__ import annotations
|
|
@@ -30,7 +30,7 @@ import sys
|
|
|
30
30
|
|
|
31
31
|
from botocore.waiter import Waiter
|
|
32
32
|
|
|
33
|
-
from .type_defs import DescribeTableInputWaitTypeDef
|
|
33
|
+
from .type_defs import DescribeTableInputWaitExtraTypeDef, DescribeTableInputWaitTypeDef
|
|
34
34
|
|
|
35
35
|
if sys.version_info >= (3, 12):
|
|
36
36
|
from typing import Unpack
|
|
@@ -63,7 +63,7 @@ class TableNotExistsWaiter(Waiter):
|
|
|
63
63
|
"""
|
|
64
64
|
|
|
65
65
|
def wait( # type: ignore[override]
|
|
66
|
-
self, **kwargs: Unpack[
|
|
66
|
+
self, **kwargs: Unpack[DescribeTableInputWaitExtraTypeDef]
|
|
67
67
|
) -> None:
|
|
68
68
|
"""
|
|
69
69
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/TableNotExists.html#DynamoDB.Waiter.TableNotExists.wait)
|
types_boto3_dynamodb/waiter.pyi
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for dynamodb service client waiters.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -20,8 +22,6 @@ Usage::
|
|
|
20
22
|
table_exists_waiter: TableExistsWaiter = client.get_waiter("table_exists")
|
|
21
23
|
table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
|
|
22
24
|
```
|
|
23
|
-
|
|
24
|
-
Copyright 2025 Vlad Emelianov
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
from __future__ import annotations
|
|
@@ -30,7 +30,7 @@ import sys
|
|
|
30
30
|
|
|
31
31
|
from botocore.waiter import Waiter
|
|
32
32
|
|
|
33
|
-
from .type_defs import DescribeTableInputWaitTypeDef
|
|
33
|
+
from .type_defs import DescribeTableInputWaitExtraTypeDef, DescribeTableInputWaitTypeDef
|
|
34
34
|
|
|
35
35
|
if sys.version_info >= (3, 12):
|
|
36
36
|
from typing import Unpack
|
|
@@ -58,7 +58,7 @@ class TableNotExistsWaiter(Waiter):
|
|
|
58
58
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/#tablenotexistswaiter)
|
|
59
59
|
"""
|
|
60
60
|
def wait( # type: ignore[override]
|
|
61
|
-
self, **kwargs: Unpack[
|
|
61
|
+
self, **kwargs: Unpack[DescribeTableInputWaitExtraTypeDef]
|
|
62
62
|
) -> None:
|
|
63
63
|
"""
|
|
64
64
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/TableNotExists.html#DynamoDB.Waiter.TableNotExists.wait)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: types-boto3-dynamodb
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 DynamoDB 1.
|
|
3
|
+
Version: 1.37.12
|
|
4
|
+
Summary: Type annotations for boto3 DynamoDB 1.37.12 service generated with mypy-boto3-builder 8.10.0
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -55,7 +55,7 @@ Dynamic: summary
|
|
|
55
55
|
|
|
56
56
|

|
|
57
57
|
|
|
58
|
-
Type annotations for [boto3 DynamoDB 1.
|
|
58
|
+
Type annotations for [boto3 DynamoDB 1.37.12](https://pypi.org/project/boto3/)
|
|
59
59
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
60
60
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
61
61
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -64,7 +64,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
64
64
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
65
65
|
|
|
66
66
|
Generated with
|
|
67
|
-
[mypy-boto3-builder 8.
|
|
67
|
+
[mypy-boto3-builder 8.10.0](https://github.com/youtype/mypy_boto3_builder).
|
|
68
68
|
|
|
69
69
|
More information can be found on
|
|
70
70
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -116,12 +116,12 @@ See how it helps you find and fix potential bugs:
|
|
|
116
116
|
### Generate locally (recommended)
|
|
117
117
|
|
|
118
118
|
You can generate type annotations for `boto3` package locally with
|
|
119
|
-
`
|
|
119
|
+
`mypy-boto3-builder`. Use
|
|
120
120
|
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
121
121
|
isolation.
|
|
122
122
|
|
|
123
123
|
1. Run mypy-boto3-builder in your package root directory:
|
|
124
|
-
`uvx --with 'boto3==1.
|
|
124
|
+
`uvx --with 'boto3==1.37.12' mypy-boto3-builder`
|
|
125
125
|
2. Select `boto3` AWS SDK.
|
|
126
126
|
3. Add `DynamoDB` service.
|
|
127
127
|
4. Use provided commands to install generated packages.
|
|
@@ -480,11 +480,14 @@ Full list of `DynamoDB` TypeDefs can be found in
|
|
|
480
480
|
[docs](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/type_defs/).
|
|
481
481
|
|
|
482
482
|
```python
|
|
483
|
+
# TypedDict usage example
|
|
483
484
|
from types_boto3_dynamodb.type_defs import ArchivalSummaryTypeDef
|
|
484
485
|
|
|
485
486
|
|
|
486
487
|
def get_value() -> ArchivalSummaryTypeDef:
|
|
487
|
-
return {
|
|
488
|
+
return {
|
|
489
|
+
"ArchivalDateTime": ...,
|
|
490
|
+
}
|
|
488
491
|
```
|
|
489
492
|
|
|
490
493
|
<a id="how-it-works"></a>
|
|
@@ -538,7 +541,8 @@ Builder changelog can be found in
|
|
|
538
541
|
## Versioning
|
|
539
542
|
|
|
540
543
|
`types-boto3-dynamodb` version is the same as related `boto3` version and
|
|
541
|
-
follows
|
|
544
|
+
follows
|
|
545
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
542
546
|
|
|
543
547
|
<a id="thank-you"></a>
|
|
544
548
|
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
types_boto3_dynamodb/__init__.py,sha256=ZBO-3ULG66wH_yzzdXl422EifLzuATrq6kR6tDNnxQs,2092
|
|
2
|
+
types_boto3_dynamodb/__init__.pyi,sha256=XGRVsY9lNlWDBYxVOpvdLfoe1luub8AuBOiTwhM6bes,2089
|
|
3
|
+
types_boto3_dynamodb/__main__.py,sha256=4obl7qz7C1jGxMpI9gux9aPsh99NhuLTFeEOpojqFGI,989
|
|
4
|
+
types_boto3_dynamodb/client.py,sha256=jqmwLRi3Rk3rJZMKiGlL-_yxhgz12Qj7P4oykMG93BU,42757
|
|
5
|
+
types_boto3_dynamodb/client.pyi,sha256=qfUa6Ad6lgyXSASkhS-QpKM7C6DypYQ8QGOgIgRIlvQ,42754
|
|
6
|
+
types_boto3_dynamodb/literals.py,sha256=0LN4rpGymZebGnKNcGKcWYWI6iMM9ELCS7M0XDQw5_4,14674
|
|
7
|
+
types_boto3_dynamodb/literals.pyi,sha256=txekH-92_W9NZEHgU2gOvsRsJcz4Ae3WP8O3-lrJpKA,14672
|
|
8
|
+
types_boto3_dynamodb/paginator.py,sha256=oZ2wmLVV2seBjn_VO65rdSrb0CuTS8s_uZbr2-wH04Y,6942
|
|
9
|
+
types_boto3_dynamodb/paginator.pyi,sha256=aO4anFQGtr3QOlll-9MW7liKjxqfye4JMYOYVaV2T2g,6926
|
|
10
|
+
types_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_dynamodb/service_resource.py,sha256=pW0XWfa1QTcy-dkmFJYIclxT1Volqw14LARKg4tzDKM,17264
|
|
12
|
+
types_boto3_dynamodb/service_resource.pyi,sha256=991e4WreW6UvKcp-cTHWomBhmg2wAjvg-RD53AvyWEU,17257
|
|
13
|
+
types_boto3_dynamodb/type_defs.py,sha256=Gy07H02HLuXmq_VvgFFIit1PX7VN9VNAL_9Rw5z3aYk,85129
|
|
14
|
+
types_boto3_dynamodb/type_defs.pyi,sha256=CUB-7GuD0HB78AXUVZvx4OGgDfAiGciC-hE0arpnT98,84851
|
|
15
|
+
types_boto3_dynamodb/version.py,sha256=6kc9t1SfpimNpEEFWIEKce7mM0y75KTP5cXCotvr56s,93
|
|
16
|
+
types_boto3_dynamodb/waiter.py,sha256=fO1bs9OQZo1fE_rrJJL_APQKNhs09xy6MDjx0VpLA7c,2642
|
|
17
|
+
types_boto3_dynamodb/waiter.pyi,sha256=kiS4o4KdVkaorJjgmwWAruStbd2hTtTl7C9Q1uqfB3c,2637
|
|
18
|
+
types_boto3_dynamodb-1.37.12.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
19
|
+
types_boto3_dynamodb-1.37.12.dist-info/METADATA,sha256=QFtV_3ymA2VjBGUtMhTcT61rCc6IOrepKkzFwiRZosw,17872
|
|
20
|
+
types_boto3_dynamodb-1.37.12.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
|
21
|
+
types_boto3_dynamodb-1.37.12.dist-info/top_level.txt,sha256=qetKI9-H-rMGIOB1IBzTvryBK-GlE9YjkQQwaB1GpB8,21
|
|
22
|
+
types_boto3_dynamodb-1.37.12.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
types_boto3_dynamodb/__init__.py,sha256=0SRg0AlGCqbLn2XPRyU7PQ8xSRm_S4xdR-RF0YDw2v8,2009
|
|
2
|
-
types_boto3_dynamodb/__init__.pyi,sha256=yNdirDOtDdYpAQeT8MLF-7j9hnBdPO3pcwBuhz_3xCc,2006
|
|
3
|
-
types_boto3_dynamodb/__main__.py,sha256=WqBkvQFm6knKFXlmKv8yryHj-p_6Sv6lPGbc6oJD0QA,985
|
|
4
|
-
types_boto3_dynamodb/client.py,sha256=Ac6rm-XlGFO0Az1LDrwBAiT9R2C0N470H4NF2w6qu5I,43601
|
|
5
|
-
types_boto3_dynamodb/client.pyi,sha256=7DrstvdlU3MdSciXWNqUqun3zW0TvN7LvhbqgmHuCjA,43598
|
|
6
|
-
types_boto3_dynamodb/literals.py,sha256=1pRIPgJKGzJP36GKcsYQzEmm8XQ5tgPtmnwHX6NEfXc,14644
|
|
7
|
-
types_boto3_dynamodb/literals.pyi,sha256=5cfvD70UkOeOHUzDIUxvOi9FcKVswklackMM4awf7kQ,14642
|
|
8
|
-
types_boto3_dynamodb/paginator.py,sha256=uo4S2wUf5biMAkfacXgyBlCqh3lVahWKjZmBqJXxxmU,6942
|
|
9
|
-
types_boto3_dynamodb/paginator.pyi,sha256=D9-7m1bOKaWXTrO7V-Ewj2BHS1YQK61Vk3ReIV_Al5A,6926
|
|
10
|
-
types_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_dynamodb/service_resource.py,sha256=9MzV99fxbMB1rCmk1bLs_nei0M3IaYFDTwZdwWMgH-o,17264
|
|
12
|
-
types_boto3_dynamodb/service_resource.pyi,sha256=KsCHiUJAm4YKNsK0L4Qd8AUXv1jFbjCKwVtX8vH2lmA,17257
|
|
13
|
-
types_boto3_dynamodb/type_defs.py,sha256=YscXcZxhyCSkcH95K4RdaUiWw2HkxiJ4yuS2gtFN0bc,84902
|
|
14
|
-
types_boto3_dynamodb/type_defs.pyi,sha256=wSftHWmfP4XzSp-xEzQ9fA83f6LZZsXlJGIrjhdWAIo,84626
|
|
15
|
-
types_boto3_dynamodb/version.py,sha256=XqBLww9Ajk9GRr5oc1Ak2757Fsir4zxoRCWswSKh8Ro,92
|
|
16
|
-
types_boto3_dynamodb/waiter.py,sha256=WS11PiL2etpgGdN5ZUfNnZk9iBtYAYnsHUILwNoVsw0,2601
|
|
17
|
-
types_boto3_dynamodb/waiter.pyi,sha256=HFT58z4iZ4WC-Zh9k5Ez-oulcykQmn60K1cBNqG11kk,2596
|
|
18
|
-
types_boto3_dynamodb-1.36.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
19
|
-
types_boto3_dynamodb-1.36.0.dist-info/METADATA,sha256=KzO1uFyCp2l9rBy3ME5EzK8zHhMFSvdszMPEP9yw8qc,17752
|
|
20
|
-
types_boto3_dynamodb-1.36.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
21
|
-
types_boto3_dynamodb-1.36.0.dist-info/top_level.txt,sha256=qetKI9-H-rMGIOB1IBzTvryBK-GlE9YjkQQwaB1GpB8,21
|
|
22
|
-
types_boto3_dynamodb-1.36.0.dist-info/RECORD,,
|
|
File without changes
|
{types_boto3_dynamodb-1.36.0.dist-info → types_boto3_dynamodb-1.37.12.dist-info}/top_level.txt
RENAMED
|
File without changes
|