types-boto3-dynamodb 1.36.0__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 +2 -3
- types_boto3_dynamodb/literals.pyi +2 -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.0.dist-info}/METADATA +12 -8
- types_boto3_dynamodb-1.37.0.dist-info/RECORD +22 -0
- types_boto3_dynamodb-1.36.0.dist-info/RECORD +0 -22
- {types_boto3_dynamodb-1.36.0.dist-info → types_boto3_dynamodb-1.37.0.dist-info}/LICENSE +0 -0
- {types_boto3_dynamodb-1.36.0.dist-info → types_boto3_dynamodb-1.37.0.dist-info}/WHEEL +0 -0
- {types_boto3_dynamodb-1.36.0.dist-info → types_boto3_dynamodb-1.37.0.dist-info}/top_level.txt +0 -0
types_boto3_dynamodb/literals.py
CHANGED
|
@@ -3,6 +3,8 @@ 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
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -10,8 +12,6 @@ Usage::
|
|
|
10
12
|
|
|
11
13
|
data: ApproximateCreationDateTimePrecisionType = "MICROSECOND"
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -304,7 +304,6 @@ ServiceName = Literal[
|
|
|
304
304
|
"efs",
|
|
305
305
|
"eks",
|
|
306
306
|
"eks-auth",
|
|
307
|
-
"elastic-inference",
|
|
308
307
|
"elasticache",
|
|
309
308
|
"elasticbeanstalk",
|
|
310
309
|
"elastictranscoder",
|
|
@@ -3,6 +3,8 @@ 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
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -10,8 +12,6 @@ Usage::
|
|
|
10
12
|
|
|
11
13
|
data: ApproximateCreationDateTimePrecisionType = "MICROSECOND"
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -302,7 +302,6 @@ ServiceName = Literal[
|
|
|
302
302
|
"efs",
|
|
303
303
|
"eks",
|
|
304
304
|
"eks-auth",
|
|
305
|
-
"elastic-inference",
|
|
306
305
|
"elasticache",
|
|
307
306
|
"elasticbeanstalk",
|
|
308
307
|
"elastictranscoder",
|
|
@@ -3,6 +3,8 @@ Type annotations for dynamodb service client paginators.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/paginators/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -26,8 +28,6 @@ Usage::
|
|
|
26
28
|
query_paginator: QueryPaginator = client.get_paginator("query")
|
|
27
29
|
scan_paginator: ScanPaginator = client.get_paginator("scan")
|
|
28
30
|
```
|
|
29
|
-
|
|
30
|
-
Copyright 2025 Vlad Emelianov
|
|
31
31
|
"""
|
|
32
32
|
|
|
33
33
|
from __future__ import annotations
|
|
@@ -3,6 +3,8 @@ Type annotations for dynamodb service client paginators.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/paginators/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -26,8 +28,6 @@ Usage::
|
|
|
26
28
|
query_paginator: QueryPaginator = client.get_paginator("query")
|
|
27
29
|
scan_paginator: ScanPaginator = client.get_paginator("scan")
|
|
28
30
|
```
|
|
29
|
-
|
|
30
|
-
Copyright 2025 Vlad Emelianov
|
|
31
31
|
"""
|
|
32
32
|
|
|
33
33
|
from __future__ import annotations
|
|
@@ -3,6 +3,8 @@ Type annotations for dynamodb service ServiceResource.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/service_resource/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -16,8 +18,6 @@ Usage::
|
|
|
16
18
|
|
|
17
19
|
my_table: dynamodb_resources.Table = resource.Table(...)
|
|
18
20
|
```
|
|
19
|
-
|
|
20
|
-
Copyright 2025 Vlad Emelianov
|
|
21
21
|
"""
|
|
22
22
|
|
|
23
23
|
from __future__ import annotations
|
|
@@ -3,6 +3,8 @@ Type annotations for dynamodb service ServiceResource.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/service_resource/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -16,8 +18,6 @@ Usage::
|
|
|
16
18
|
|
|
17
19
|
my_table: dynamodb_resources.Table = resource.Table(...)
|
|
18
20
|
```
|
|
19
|
-
|
|
20
|
-
Copyright 2025 Vlad Emelianov
|
|
21
21
|
"""
|
|
22
22
|
|
|
23
23
|
from __future__ import annotations
|