types-boto3-dynamodb 1.35.94__py3-none-any.whl → 1.37.0__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.35.94.dist-info → types_boto3_dynamodb-1.37.0.dist-info}/METADATA +25 -9
- types_boto3_dynamodb-1.37.0.dist-info/RECORD +22 -0
- {types_boto3_dynamodb-1.35.94.dist-info → types_boto3_dynamodb-1.37.0.dist-info}/WHEEL +1 -1
- types_boto3_dynamodb-1.35.94.dist-info/RECORD +0 -22
- {types_boto3_dynamodb-1.35.94.dist-info → types_boto3_dynamodb-1.37.0.dist-info}/LICENSE +0 -0
- {types_boto3_dynamodb-1.35.94.dist-info → types_boto3_dynamodb-1.37.0.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
|
-
Metadata-Version: 2.
|
|
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.0
|
|
4
|
+
Summary: Type annotations for boto3 DynamoDB 1.37.0 service generated with mypy-boto3-builder 8.9.2
|
|
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
|
|
@@ -31,6 +31,18 @@ Requires-Python: >=3.8
|
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
License-File: LICENSE
|
|
33
33
|
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
34
|
+
Dynamic: author
|
|
35
|
+
Dynamic: author-email
|
|
36
|
+
Dynamic: classifier
|
|
37
|
+
Dynamic: description
|
|
38
|
+
Dynamic: description-content-type
|
|
39
|
+
Dynamic: home-page
|
|
40
|
+
Dynamic: keywords
|
|
41
|
+
Dynamic: license
|
|
42
|
+
Dynamic: project-url
|
|
43
|
+
Dynamic: requires-dist
|
|
44
|
+
Dynamic: requires-python
|
|
45
|
+
Dynamic: summary
|
|
34
46
|
|
|
35
47
|
<a id="types-boto3-dynamodb"></a>
|
|
36
48
|
|
|
@@ -43,7 +55,7 @@ Requires-Dist: typing-extensions; python_version < "3.12"
|
|
|
43
55
|
|
|
44
56
|

|
|
45
57
|
|
|
46
|
-
Type annotations for [boto3 DynamoDB 1.
|
|
58
|
+
Type annotations for [boto3 DynamoDB 1.37.0](https://pypi.org/project/boto3/)
|
|
47
59
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
60
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
61
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +64,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
64
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
65
|
|
|
54
66
|
Generated with
|
|
55
|
-
[mypy-boto3-builder 8.
|
|
67
|
+
[mypy-boto3-builder 8.9.2](https://github.com/youtype/mypy_boto3_builder).
|
|
56
68
|
|
|
57
69
|
More information can be found on
|
|
58
70
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -104,12 +116,12 @@ See how it helps you find and fix potential bugs:
|
|
|
104
116
|
### Generate locally (recommended)
|
|
105
117
|
|
|
106
118
|
You can generate type annotations for `boto3` package locally with
|
|
107
|
-
`
|
|
119
|
+
`mypy-boto3-builder`. Use
|
|
108
120
|
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
109
121
|
isolation.
|
|
110
122
|
|
|
111
123
|
1. Run mypy-boto3-builder in your package root directory:
|
|
112
|
-
`uvx --with 'boto3==1.
|
|
124
|
+
`uvx --with 'boto3==1.37.0' mypy-boto3-builder`
|
|
113
125
|
2. Select `boto3` AWS SDK.
|
|
114
126
|
3. Add `DynamoDB` service.
|
|
115
127
|
4. Use provided commands to install generated packages.
|
|
@@ -468,11 +480,14 @@ Full list of `DynamoDB` TypeDefs can be found in
|
|
|
468
480
|
[docs](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/type_defs/).
|
|
469
481
|
|
|
470
482
|
```python
|
|
483
|
+
# TypedDict usage example
|
|
471
484
|
from types_boto3_dynamodb.type_defs import ArchivalSummaryTypeDef
|
|
472
485
|
|
|
473
486
|
|
|
474
487
|
def get_value() -> ArchivalSummaryTypeDef:
|
|
475
|
-
return {
|
|
488
|
+
return {
|
|
489
|
+
"ArchivalDateTime": ...,
|
|
490
|
+
}
|
|
476
491
|
```
|
|
477
492
|
|
|
478
493
|
<a id="how-it-works"></a>
|
|
@@ -526,7 +541,8 @@ Builder changelog can be found in
|
|
|
526
541
|
## Versioning
|
|
527
542
|
|
|
528
543
|
`types-boto3-dynamodb` version is the same as related `boto3` version and
|
|
529
|
-
follows
|
|
544
|
+
follows
|
|
545
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
530
546
|
|
|
531
547
|
<a id="thank-you"></a>
|
|
532
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=Q4iWm_Y3TTYgOjmzh6wbrJ2TVh1_LFMxRG68mtaZhfI,985
|
|
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=8xlIBtF9ojJiVmWfw4-BieCy3bhLSw0vHdp5uU2Wonc,14619
|
|
7
|
+
types_boto3_dynamodb/literals.pyi,sha256=YRHDneHOcDie2-uEBEwVHqjYeIp-ww3Tve1-W5wrE50,14617
|
|
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=7dplwNyKC_M1NmYn8gNT0u-MAPuLyVgQc5Z98LiK1wM,92
|
|
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.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
19
|
+
types_boto3_dynamodb-1.37.0.dist-info/METADATA,sha256=dyPkaWrgCfmBw76nj-SSEyxkMBmzhpOg2Q2oICespnU,17866
|
|
20
|
+
types_boto3_dynamodb-1.37.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
21
|
+
types_boto3_dynamodb-1.37.0.dist-info/top_level.txt,sha256=qetKI9-H-rMGIOB1IBzTvryBK-GlE9YjkQQwaB1GpB8,21
|
|
22
|
+
types_boto3_dynamodb-1.37.0.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=eTJG-FwMdDd6HzNOKF7tmdkwcGQXXtThRTfuv2NY3rw,988
|
|
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=zFG_fs7uCv9TMDIBlHJELeKfwn6jr4D93Q385sTV5nI,14602
|
|
7
|
-
types_boto3_dynamodb/literals.pyi,sha256=XBfYSyEd7e-yGrceNYD292bwVGiUrM_cNzlAeND02N8,14600
|
|
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=51-Y0U0aeICuPF2V-J1NITWfvlVuMyomIJ2FNB4BS0c,93
|
|
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.35.94.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
19
|
-
types_boto3_dynamodb-1.35.94.dist-info/METADATA,sha256=9S6c5EkZ9xCCZ4aqRV0tfCyjlUf_Gd5vDrRQb2npAec,17503
|
|
20
|
-
types_boto3_dynamodb-1.35.94.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
21
|
-
types_boto3_dynamodb-1.35.94.dist-info/top_level.txt,sha256=qetKI9-H-rMGIOB1IBzTvryBK-GlE9YjkQQwaB1GpB8,21
|
|
22
|
-
types_boto3_dynamodb-1.35.94.dist-info/RECORD,,
|
|
File without changes
|
{types_boto3_dynamodb-1.35.94.dist-info → types_boto3_dynamodb-1.37.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|