mypy-boto3-dynamodb 1.42.3__py3-none-any.whl → 1.42.41__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.
- mypy_boto3_dynamodb/__init__.py +21 -2
- mypy_boto3_dynamodb/__init__.pyi +21 -2
- mypy_boto3_dynamodb/__main__.py +4 -4
- mypy_boto3_dynamodb/client.py +53 -2
- mypy_boto3_dynamodb/client.pyi +53 -2
- mypy_boto3_dynamodb/literals.py +20 -3
- mypy_boto3_dynamodb/literals.pyi +20 -3
- mypy_boto3_dynamodb/paginator.py +1 -1
- mypy_boto3_dynamodb/paginator.pyi +1 -1
- mypy_boto3_dynamodb/service_resource.py +7 -2
- mypy_boto3_dynamodb/service_resource.pyi +7 -2
- mypy_boto3_dynamodb/type_defs.py +52 -20
- mypy_boto3_dynamodb/type_defs.pyi +45 -17
- mypy_boto3_dynamodb/version.py +2 -2
- mypy_boto3_dynamodb/waiter.py +85 -3
- mypy_boto3_dynamodb/waiter.pyi +77 -3
- {mypy_boto3_dynamodb-1.42.3.dist-info → mypy_boto3_dynamodb-1.42.41.dist-info}/METADATA +20 -5
- mypy_boto3_dynamodb-1.42.41.dist-info/RECORD +22 -0
- {mypy_boto3_dynamodb-1.42.3.dist-info → mypy_boto3_dynamodb-1.42.41.dist-info}/WHEEL +1 -1
- {mypy_boto3_dynamodb-1.42.3.dist-info → mypy_boto3_dynamodb-1.42.41.dist-info}/licenses/LICENSE +1 -1
- mypy_boto3_dynamodb-1.42.3.dist-info/RECORD +0 -22
- {mypy_boto3_dynamodb-1.42.3.dist-info → mypy_boto3_dynamodb-1.42.41.dist-info}/top_level.txt +0 -0
mypy_boto3_dynamodb/__init__.py
CHANGED
|
@@ -3,7 +3,7 @@ Main interface for dynamodb service.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -11,8 +11,12 @@ Usage::
|
|
|
11
11
|
from boto3.session import Session
|
|
12
12
|
from mypy_boto3_dynamodb import (
|
|
13
13
|
Client,
|
|
14
|
+
ContributorInsightsEnabledWaiter,
|
|
14
15
|
DynamoDBClient,
|
|
15
16
|
DynamoDBServiceResource,
|
|
17
|
+
ExportCompletedWaiter,
|
|
18
|
+
ImportCompletedWaiter,
|
|
19
|
+
KinesisStreamingDestinationActiveWaiter,
|
|
16
20
|
ListBackupsPaginator,
|
|
17
21
|
ListTablesPaginator,
|
|
18
22
|
ListTagsOfResourcePaginator,
|
|
@@ -28,6 +32,10 @@ Usage::
|
|
|
28
32
|
|
|
29
33
|
resource: DynamoDBServiceResource = session.resource("dynamodb")
|
|
30
34
|
|
|
35
|
+
contributor_insights_enabled_waiter: ContributorInsightsEnabledWaiter = client.get_waiter("contributor_insights_enabled")
|
|
36
|
+
export_completed_waiter: ExportCompletedWaiter = client.get_waiter("export_completed")
|
|
37
|
+
import_completed_waiter: ImportCompletedWaiter = client.get_waiter("import_completed")
|
|
38
|
+
kinesis_streaming_destination_active_waiter: KinesisStreamingDestinationActiveWaiter = client.get_waiter("kinesis_streaming_destination_active")
|
|
31
39
|
table_exists_waiter: TableExistsWaiter = client.get_waiter("table_exists")
|
|
32
40
|
table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
|
|
33
41
|
|
|
@@ -47,7 +55,14 @@ from .paginator import (
|
|
|
47
55
|
QueryPaginator,
|
|
48
56
|
ScanPaginator,
|
|
49
57
|
)
|
|
50
|
-
from .waiter import
|
|
58
|
+
from .waiter import (
|
|
59
|
+
ContributorInsightsEnabledWaiter,
|
|
60
|
+
ExportCompletedWaiter,
|
|
61
|
+
ImportCompletedWaiter,
|
|
62
|
+
KinesisStreamingDestinationActiveWaiter,
|
|
63
|
+
TableExistsWaiter,
|
|
64
|
+
TableNotExistsWaiter,
|
|
65
|
+
)
|
|
51
66
|
|
|
52
67
|
try:
|
|
53
68
|
from .service_resource import DynamoDBServiceResource
|
|
@@ -63,8 +78,12 @@ ServiceResource = DynamoDBServiceResource
|
|
|
63
78
|
|
|
64
79
|
__all__ = (
|
|
65
80
|
"Client",
|
|
81
|
+
"ContributorInsightsEnabledWaiter",
|
|
66
82
|
"DynamoDBClient",
|
|
67
83
|
"DynamoDBServiceResource",
|
|
84
|
+
"ExportCompletedWaiter",
|
|
85
|
+
"ImportCompletedWaiter",
|
|
86
|
+
"KinesisStreamingDestinationActiveWaiter",
|
|
68
87
|
"ListBackupsPaginator",
|
|
69
88
|
"ListTablesPaginator",
|
|
70
89
|
"ListTagsOfResourcePaginator",
|
mypy_boto3_dynamodb/__init__.pyi
CHANGED
|
@@ -3,7 +3,7 @@ Main interface for dynamodb service.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -11,8 +11,12 @@ Usage::
|
|
|
11
11
|
from boto3.session import Session
|
|
12
12
|
from mypy_boto3_dynamodb import (
|
|
13
13
|
Client,
|
|
14
|
+
ContributorInsightsEnabledWaiter,
|
|
14
15
|
DynamoDBClient,
|
|
15
16
|
DynamoDBServiceResource,
|
|
17
|
+
ExportCompletedWaiter,
|
|
18
|
+
ImportCompletedWaiter,
|
|
19
|
+
KinesisStreamingDestinationActiveWaiter,
|
|
16
20
|
ListBackupsPaginator,
|
|
17
21
|
ListTablesPaginator,
|
|
18
22
|
ListTagsOfResourcePaginator,
|
|
@@ -28,6 +32,10 @@ Usage::
|
|
|
28
32
|
|
|
29
33
|
resource: DynamoDBServiceResource = session.resource("dynamodb")
|
|
30
34
|
|
|
35
|
+
contributor_insights_enabled_waiter: ContributorInsightsEnabledWaiter = client.get_waiter("contributor_insights_enabled")
|
|
36
|
+
export_completed_waiter: ExportCompletedWaiter = client.get_waiter("export_completed")
|
|
37
|
+
import_completed_waiter: ImportCompletedWaiter = client.get_waiter("import_completed")
|
|
38
|
+
kinesis_streaming_destination_active_waiter: KinesisStreamingDestinationActiveWaiter = client.get_waiter("kinesis_streaming_destination_active")
|
|
31
39
|
table_exists_waiter: TableExistsWaiter = client.get_waiter("table_exists")
|
|
32
40
|
table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
|
|
33
41
|
|
|
@@ -47,7 +55,14 @@ from .paginator import (
|
|
|
47
55
|
QueryPaginator,
|
|
48
56
|
ScanPaginator,
|
|
49
57
|
)
|
|
50
|
-
from .waiter import
|
|
58
|
+
from .waiter import (
|
|
59
|
+
ContributorInsightsEnabledWaiter,
|
|
60
|
+
ExportCompletedWaiter,
|
|
61
|
+
ImportCompletedWaiter,
|
|
62
|
+
KinesisStreamingDestinationActiveWaiter,
|
|
63
|
+
TableExistsWaiter,
|
|
64
|
+
TableNotExistsWaiter,
|
|
65
|
+
)
|
|
51
66
|
|
|
52
67
|
try:
|
|
53
68
|
from .service_resource import DynamoDBServiceResource
|
|
@@ -60,8 +75,12 @@ ServiceResource = DynamoDBServiceResource
|
|
|
60
75
|
|
|
61
76
|
__all__ = (
|
|
62
77
|
"Client",
|
|
78
|
+
"ContributorInsightsEnabledWaiter",
|
|
63
79
|
"DynamoDBClient",
|
|
64
80
|
"DynamoDBServiceResource",
|
|
81
|
+
"ExportCompletedWaiter",
|
|
82
|
+
"ImportCompletedWaiter",
|
|
83
|
+
"KinesisStreamingDestinationActiveWaiter",
|
|
65
84
|
"ListBackupsPaginator",
|
|
66
85
|
"ListTablesPaginator",
|
|
67
86
|
"ListTagsOfResourcePaginator",
|
mypy_boto3_dynamodb/__main__.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
3
|
|
|
4
|
-
Copyright
|
|
4
|
+
Copyright 2026 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import sys
|
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 DynamoDB 1.42.
|
|
16
|
-
"Version: 1.42.
|
|
15
|
+
"Type annotations for boto3 DynamoDB 1.42.41\n"
|
|
16
|
+
"Version: 1.42.41\n"
|
|
17
17
|
"Builder version: 8.12.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#dynamodb\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.42.
|
|
29
|
+
sys.stdout.write("1.42.41\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_dynamodb/client.py
CHANGED
|
@@ -3,7 +3,7 @@ Type annotations for dynamodb service Client.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -145,7 +145,14 @@ from .type_defs import (
|
|
|
145
145
|
UpdateTimeToLiveInputTypeDef,
|
|
146
146
|
UpdateTimeToLiveOutputTypeDef,
|
|
147
147
|
)
|
|
148
|
-
from .waiter import
|
|
148
|
+
from .waiter import (
|
|
149
|
+
ContributorInsightsEnabledWaiter,
|
|
150
|
+
ExportCompletedWaiter,
|
|
151
|
+
ImportCompletedWaiter,
|
|
152
|
+
KinesisStreamingDestinationActiveWaiter,
|
|
153
|
+
TableExistsWaiter,
|
|
154
|
+
TableNotExistsWaiter,
|
|
155
|
+
)
|
|
149
156
|
|
|
150
157
|
if sys.version_info >= (3, 12):
|
|
151
158
|
from typing import Literal, Unpack
|
|
@@ -851,6 +858,50 @@ class DynamoDBClient(BaseClient):
|
|
|
851
858
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_paginator)
|
|
852
859
|
"""
|
|
853
860
|
|
|
861
|
+
@overload # type: ignore[override]
|
|
862
|
+
def get_waiter( # type: ignore[override]
|
|
863
|
+
self, waiter_name: Literal["contributor_insights_enabled"]
|
|
864
|
+
) -> ContributorInsightsEnabledWaiter:
|
|
865
|
+
"""
|
|
866
|
+
Returns an object that can wait for some condition.
|
|
867
|
+
|
|
868
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_waiter.html)
|
|
869
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_waiter)
|
|
870
|
+
"""
|
|
871
|
+
|
|
872
|
+
@overload # type: ignore[override]
|
|
873
|
+
def get_waiter( # type: ignore[override]
|
|
874
|
+
self, waiter_name: Literal["export_completed"]
|
|
875
|
+
) -> ExportCompletedWaiter:
|
|
876
|
+
"""
|
|
877
|
+
Returns an object that can wait for some condition.
|
|
878
|
+
|
|
879
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_waiter.html)
|
|
880
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_waiter)
|
|
881
|
+
"""
|
|
882
|
+
|
|
883
|
+
@overload # type: ignore[override]
|
|
884
|
+
def get_waiter( # type: ignore[override]
|
|
885
|
+
self, waiter_name: Literal["import_completed"]
|
|
886
|
+
) -> ImportCompletedWaiter:
|
|
887
|
+
"""
|
|
888
|
+
Returns an object that can wait for some condition.
|
|
889
|
+
|
|
890
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_waiter.html)
|
|
891
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_waiter)
|
|
892
|
+
"""
|
|
893
|
+
|
|
894
|
+
@overload # type: ignore[override]
|
|
895
|
+
def get_waiter( # type: ignore[override]
|
|
896
|
+
self, waiter_name: Literal["kinesis_streaming_destination_active"]
|
|
897
|
+
) -> KinesisStreamingDestinationActiveWaiter:
|
|
898
|
+
"""
|
|
899
|
+
Returns an object that can wait for some condition.
|
|
900
|
+
|
|
901
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_waiter.html)
|
|
902
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_waiter)
|
|
903
|
+
"""
|
|
904
|
+
|
|
854
905
|
@overload # type: ignore[override]
|
|
855
906
|
def get_waiter( # type: ignore[override]
|
|
856
907
|
self, waiter_name: Literal["table_exists"]
|
mypy_boto3_dynamodb/client.pyi
CHANGED
|
@@ -3,7 +3,7 @@ Type annotations for dynamodb service Client.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -145,7 +145,14 @@ from .type_defs import (
|
|
|
145
145
|
UpdateTimeToLiveInputTypeDef,
|
|
146
146
|
UpdateTimeToLiveOutputTypeDef,
|
|
147
147
|
)
|
|
148
|
-
from .waiter import
|
|
148
|
+
from .waiter import (
|
|
149
|
+
ContributorInsightsEnabledWaiter,
|
|
150
|
+
ExportCompletedWaiter,
|
|
151
|
+
ImportCompletedWaiter,
|
|
152
|
+
KinesisStreamingDestinationActiveWaiter,
|
|
153
|
+
TableExistsWaiter,
|
|
154
|
+
TableNotExistsWaiter,
|
|
155
|
+
)
|
|
149
156
|
|
|
150
157
|
if sys.version_info >= (3, 12):
|
|
151
158
|
from typing import Literal, Unpack
|
|
@@ -848,6 +855,50 @@ class DynamoDBClient(BaseClient):
|
|
|
848
855
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_paginator)
|
|
849
856
|
"""
|
|
850
857
|
|
|
858
|
+
@overload # type: ignore[override]
|
|
859
|
+
def get_waiter( # type: ignore[override]
|
|
860
|
+
self, waiter_name: Literal["contributor_insights_enabled"]
|
|
861
|
+
) -> ContributorInsightsEnabledWaiter:
|
|
862
|
+
"""
|
|
863
|
+
Returns an object that can wait for some condition.
|
|
864
|
+
|
|
865
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_waiter.html)
|
|
866
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_waiter)
|
|
867
|
+
"""
|
|
868
|
+
|
|
869
|
+
@overload # type: ignore[override]
|
|
870
|
+
def get_waiter( # type: ignore[override]
|
|
871
|
+
self, waiter_name: Literal["export_completed"]
|
|
872
|
+
) -> ExportCompletedWaiter:
|
|
873
|
+
"""
|
|
874
|
+
Returns an object that can wait for some condition.
|
|
875
|
+
|
|
876
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_waiter.html)
|
|
877
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_waiter)
|
|
878
|
+
"""
|
|
879
|
+
|
|
880
|
+
@overload # type: ignore[override]
|
|
881
|
+
def get_waiter( # type: ignore[override]
|
|
882
|
+
self, waiter_name: Literal["import_completed"]
|
|
883
|
+
) -> ImportCompletedWaiter:
|
|
884
|
+
"""
|
|
885
|
+
Returns an object that can wait for some condition.
|
|
886
|
+
|
|
887
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_waiter.html)
|
|
888
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_waiter)
|
|
889
|
+
"""
|
|
890
|
+
|
|
891
|
+
@overload # type: ignore[override]
|
|
892
|
+
def get_waiter( # type: ignore[override]
|
|
893
|
+
self, waiter_name: Literal["kinesis_streaming_destination_active"]
|
|
894
|
+
) -> KinesisStreamingDestinationActiveWaiter:
|
|
895
|
+
"""
|
|
896
|
+
Returns an object that can wait for some condition.
|
|
897
|
+
|
|
898
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_waiter.html)
|
|
899
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_waiter)
|
|
900
|
+
"""
|
|
901
|
+
|
|
851
902
|
@overload # type: ignore[override]
|
|
852
903
|
def get_waiter( # type: ignore[override]
|
|
853
904
|
self, waiter_name: Literal["table_exists"]
|
mypy_boto3_dynamodb/literals.py
CHANGED
|
@@ -3,7 +3,7 @@ Type annotations for dynamodb service literal definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/literals/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -34,20 +34,25 @@ __all__ = (
|
|
|
34
34
|
"ConditionalOperatorType",
|
|
35
35
|
"ContinuousBackupsStatusType",
|
|
36
36
|
"ContributorInsightsActionType",
|
|
37
|
+
"ContributorInsightsEnabledWaiterName",
|
|
37
38
|
"ContributorInsightsModeType",
|
|
38
39
|
"ContributorInsightsStatusType",
|
|
39
40
|
"DestinationStatusType",
|
|
40
41
|
"DynamoDBServiceName",
|
|
42
|
+
"ExportCompletedWaiterName",
|
|
41
43
|
"ExportFormatType",
|
|
42
44
|
"ExportStatusType",
|
|
43
45
|
"ExportTypeType",
|
|
44
46
|
"ExportViewTypeType",
|
|
47
|
+
"GlobalTableSettingsReplicationModeType",
|
|
45
48
|
"GlobalTableStatusType",
|
|
49
|
+
"ImportCompletedWaiterName",
|
|
46
50
|
"ImportStatusType",
|
|
47
51
|
"IndexStatusType",
|
|
48
52
|
"InputCompressionTypeType",
|
|
49
53
|
"InputFormatType",
|
|
50
54
|
"KeyTypeType",
|
|
55
|
+
"KinesisStreamingDestinationActiveWaiterName",
|
|
51
56
|
"ListBackupsPaginatorName",
|
|
52
57
|
"ListTablesPaginatorName",
|
|
53
58
|
"ListTagsOfResourcePaginatorName",
|
|
@@ -118,21 +123,26 @@ ComparisonOperatorType = Literal[
|
|
|
118
123
|
ConditionalOperatorType = Literal["AND", "OR"]
|
|
119
124
|
ContinuousBackupsStatusType = Literal["DISABLED", "ENABLED"]
|
|
120
125
|
ContributorInsightsActionType = Literal["DISABLE", "ENABLE"]
|
|
126
|
+
ContributorInsightsEnabledWaiterName = Literal["contributor_insights_enabled"]
|
|
121
127
|
ContributorInsightsModeType = Literal["ACCESSED_AND_THROTTLED_KEYS", "THROTTLED_KEYS"]
|
|
122
128
|
ContributorInsightsStatusType = Literal["DISABLED", "DISABLING", "ENABLED", "ENABLING", "FAILED"]
|
|
123
129
|
DestinationStatusType = Literal[
|
|
124
130
|
"ACTIVE", "DISABLED", "DISABLING", "ENABLE_FAILED", "ENABLING", "UPDATING"
|
|
125
131
|
]
|
|
132
|
+
ExportCompletedWaiterName = Literal["export_completed"]
|
|
126
133
|
ExportFormatType = Literal["DYNAMODB_JSON", "ION"]
|
|
127
134
|
ExportStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS"]
|
|
128
135
|
ExportTypeType = Literal["FULL_EXPORT", "INCREMENTAL_EXPORT"]
|
|
129
136
|
ExportViewTypeType = Literal["NEW_AND_OLD_IMAGES", "NEW_IMAGE"]
|
|
137
|
+
GlobalTableSettingsReplicationModeType = Literal["DISABLED", "ENABLED", "ENABLED_WITH_OVERRIDES"]
|
|
130
138
|
GlobalTableStatusType = Literal["ACTIVE", "CREATING", "DELETING", "UPDATING"]
|
|
139
|
+
ImportCompletedWaiterName = Literal["import_completed"]
|
|
131
140
|
ImportStatusType = Literal["CANCELLED", "CANCELLING", "COMPLETED", "FAILED", "IN_PROGRESS"]
|
|
132
141
|
IndexStatusType = Literal["ACTIVE", "CREATING", "DELETING", "UPDATING"]
|
|
133
142
|
InputCompressionTypeType = Literal["GZIP", "NONE", "ZSTD"]
|
|
134
143
|
InputFormatType = Literal["CSV", "DYNAMODB_JSON", "ION"]
|
|
135
144
|
KeyTypeType = Literal["HASH", "RANGE"]
|
|
145
|
+
KinesisStreamingDestinationActiveWaiterName = Literal["kinesis_streaming_destination_active"]
|
|
136
146
|
ListBackupsPaginatorName = Literal["list_backups"]
|
|
137
147
|
ListTablesPaginatorName = Literal["list_tables"]
|
|
138
148
|
ListTagsOfResourcePaginatorName = Literal["list_tags_of_resource"]
|
|
@@ -320,7 +330,6 @@ ServiceName = Literal[
|
|
|
320
330
|
"eks-auth",
|
|
321
331
|
"elasticache",
|
|
322
332
|
"elasticbeanstalk",
|
|
323
|
-
"elastictranscoder",
|
|
324
333
|
"elb",
|
|
325
334
|
"elbv2",
|
|
326
335
|
"emr",
|
|
@@ -585,6 +594,7 @@ ServiceName = Literal[
|
|
|
585
594
|
"waf-regional",
|
|
586
595
|
"wafv2",
|
|
587
596
|
"wellarchitected",
|
|
597
|
+
"wickr",
|
|
588
598
|
"wisdom",
|
|
589
599
|
"workdocs",
|
|
590
600
|
"workmail",
|
|
@@ -599,7 +609,14 @@ ResourceServiceName = Literal[
|
|
|
599
609
|
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
600
610
|
]
|
|
601
611
|
PaginatorName = Literal["list_backups", "list_tables", "list_tags_of_resource", "query", "scan"]
|
|
602
|
-
WaiterName = Literal[
|
|
612
|
+
WaiterName = Literal[
|
|
613
|
+
"contributor_insights_enabled",
|
|
614
|
+
"export_completed",
|
|
615
|
+
"import_completed",
|
|
616
|
+
"kinesis_streaming_destination_active",
|
|
617
|
+
"table_exists",
|
|
618
|
+
"table_not_exists",
|
|
619
|
+
]
|
|
603
620
|
RegionName = Literal[
|
|
604
621
|
"af-south-1",
|
|
605
622
|
"ap-east-1",
|
mypy_boto3_dynamodb/literals.pyi
CHANGED
|
@@ -3,7 +3,7 @@ Type annotations for dynamodb service literal definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/literals/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -33,20 +33,25 @@ __all__ = (
|
|
|
33
33
|
"ConditionalOperatorType",
|
|
34
34
|
"ContinuousBackupsStatusType",
|
|
35
35
|
"ContributorInsightsActionType",
|
|
36
|
+
"ContributorInsightsEnabledWaiterName",
|
|
36
37
|
"ContributorInsightsModeType",
|
|
37
38
|
"ContributorInsightsStatusType",
|
|
38
39
|
"DestinationStatusType",
|
|
39
40
|
"DynamoDBServiceName",
|
|
41
|
+
"ExportCompletedWaiterName",
|
|
40
42
|
"ExportFormatType",
|
|
41
43
|
"ExportStatusType",
|
|
42
44
|
"ExportTypeType",
|
|
43
45
|
"ExportViewTypeType",
|
|
46
|
+
"GlobalTableSettingsReplicationModeType",
|
|
44
47
|
"GlobalTableStatusType",
|
|
48
|
+
"ImportCompletedWaiterName",
|
|
45
49
|
"ImportStatusType",
|
|
46
50
|
"IndexStatusType",
|
|
47
51
|
"InputCompressionTypeType",
|
|
48
52
|
"InputFormatType",
|
|
49
53
|
"KeyTypeType",
|
|
54
|
+
"KinesisStreamingDestinationActiveWaiterName",
|
|
50
55
|
"ListBackupsPaginatorName",
|
|
51
56
|
"ListTablesPaginatorName",
|
|
52
57
|
"ListTagsOfResourcePaginatorName",
|
|
@@ -116,21 +121,26 @@ ComparisonOperatorType = Literal[
|
|
|
116
121
|
ConditionalOperatorType = Literal["AND", "OR"]
|
|
117
122
|
ContinuousBackupsStatusType = Literal["DISABLED", "ENABLED"]
|
|
118
123
|
ContributorInsightsActionType = Literal["DISABLE", "ENABLE"]
|
|
124
|
+
ContributorInsightsEnabledWaiterName = Literal["contributor_insights_enabled"]
|
|
119
125
|
ContributorInsightsModeType = Literal["ACCESSED_AND_THROTTLED_KEYS", "THROTTLED_KEYS"]
|
|
120
126
|
ContributorInsightsStatusType = Literal["DISABLED", "DISABLING", "ENABLED", "ENABLING", "FAILED"]
|
|
121
127
|
DestinationStatusType = Literal[
|
|
122
128
|
"ACTIVE", "DISABLED", "DISABLING", "ENABLE_FAILED", "ENABLING", "UPDATING"
|
|
123
129
|
]
|
|
130
|
+
ExportCompletedWaiterName = Literal["export_completed"]
|
|
124
131
|
ExportFormatType = Literal["DYNAMODB_JSON", "ION"]
|
|
125
132
|
ExportStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS"]
|
|
126
133
|
ExportTypeType = Literal["FULL_EXPORT", "INCREMENTAL_EXPORT"]
|
|
127
134
|
ExportViewTypeType = Literal["NEW_AND_OLD_IMAGES", "NEW_IMAGE"]
|
|
135
|
+
GlobalTableSettingsReplicationModeType = Literal["DISABLED", "ENABLED", "ENABLED_WITH_OVERRIDES"]
|
|
128
136
|
GlobalTableStatusType = Literal["ACTIVE", "CREATING", "DELETING", "UPDATING"]
|
|
137
|
+
ImportCompletedWaiterName = Literal["import_completed"]
|
|
129
138
|
ImportStatusType = Literal["CANCELLED", "CANCELLING", "COMPLETED", "FAILED", "IN_PROGRESS"]
|
|
130
139
|
IndexStatusType = Literal["ACTIVE", "CREATING", "DELETING", "UPDATING"]
|
|
131
140
|
InputCompressionTypeType = Literal["GZIP", "NONE", "ZSTD"]
|
|
132
141
|
InputFormatType = Literal["CSV", "DYNAMODB_JSON", "ION"]
|
|
133
142
|
KeyTypeType = Literal["HASH", "RANGE"]
|
|
143
|
+
KinesisStreamingDestinationActiveWaiterName = Literal["kinesis_streaming_destination_active"]
|
|
134
144
|
ListBackupsPaginatorName = Literal["list_backups"]
|
|
135
145
|
ListTablesPaginatorName = Literal["list_tables"]
|
|
136
146
|
ListTagsOfResourcePaginatorName = Literal["list_tags_of_resource"]
|
|
@@ -318,7 +328,6 @@ ServiceName = Literal[
|
|
|
318
328
|
"eks-auth",
|
|
319
329
|
"elasticache",
|
|
320
330
|
"elasticbeanstalk",
|
|
321
|
-
"elastictranscoder",
|
|
322
331
|
"elb",
|
|
323
332
|
"elbv2",
|
|
324
333
|
"emr",
|
|
@@ -583,6 +592,7 @@ ServiceName = Literal[
|
|
|
583
592
|
"waf-regional",
|
|
584
593
|
"wafv2",
|
|
585
594
|
"wellarchitected",
|
|
595
|
+
"wickr",
|
|
586
596
|
"wisdom",
|
|
587
597
|
"workdocs",
|
|
588
598
|
"workmail",
|
|
@@ -597,7 +607,14 @@ ResourceServiceName = Literal[
|
|
|
597
607
|
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
598
608
|
]
|
|
599
609
|
PaginatorName = Literal["list_backups", "list_tables", "list_tags_of_resource", "query", "scan"]
|
|
600
|
-
WaiterName = Literal[
|
|
610
|
+
WaiterName = Literal[
|
|
611
|
+
"contributor_insights_enabled",
|
|
612
|
+
"export_completed",
|
|
613
|
+
"import_completed",
|
|
614
|
+
"kinesis_streaming_destination_active",
|
|
615
|
+
"table_exists",
|
|
616
|
+
"table_not_exists",
|
|
617
|
+
]
|
|
601
618
|
RegionName = Literal[
|
|
602
619
|
"af-south-1",
|
|
603
620
|
"ap-east-1",
|
mypy_boto3_dynamodb/paginator.py
CHANGED
|
@@ -3,7 +3,7 @@ Type annotations for dynamodb service ServiceResource.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/service_resource/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -31,7 +31,11 @@ from boto3.resources.base import ResourceMeta, ServiceResource
|
|
|
31
31
|
from boto3.resources.collection import ResourceCollection
|
|
32
32
|
|
|
33
33
|
from .client import DynamoDBClient
|
|
34
|
-
from .literals import
|
|
34
|
+
from .literals import (
|
|
35
|
+
GlobalTableSettingsReplicationModeType,
|
|
36
|
+
MultiRegionConsistencyType,
|
|
37
|
+
TableStatusType,
|
|
38
|
+
)
|
|
35
39
|
from .type_defs import (
|
|
36
40
|
ArchivalSummaryTypeDef,
|
|
37
41
|
AttributeDefinitionTypeDef,
|
|
@@ -164,6 +168,7 @@ class Table(ServiceResource):
|
|
|
164
168
|
global_table_version: str
|
|
165
169
|
replicas: list[ReplicaDescriptionTypeDef]
|
|
166
170
|
global_table_witnesses: list[GlobalTableWitnessDescriptionTypeDef]
|
|
171
|
+
global_table_settings_replication_mode: GlobalTableSettingsReplicationModeType
|
|
167
172
|
restore_summary: RestoreSummaryTypeDef
|
|
168
173
|
sse_description: SSEDescriptionTypeDef
|
|
169
174
|
archival_summary: ArchivalSummaryTypeDef
|
|
@@ -3,7 +3,7 @@ Type annotations for dynamodb service ServiceResource.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/service_resource/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -31,7 +31,11 @@ from boto3.resources.base import ResourceMeta, ServiceResource
|
|
|
31
31
|
from boto3.resources.collection import ResourceCollection
|
|
32
32
|
|
|
33
33
|
from .client import DynamoDBClient
|
|
34
|
-
from .literals import
|
|
34
|
+
from .literals import (
|
|
35
|
+
GlobalTableSettingsReplicationModeType,
|
|
36
|
+
MultiRegionConsistencyType,
|
|
37
|
+
TableStatusType,
|
|
38
|
+
)
|
|
35
39
|
from .type_defs import (
|
|
36
40
|
ArchivalSummaryTypeDef,
|
|
37
41
|
AttributeDefinitionTypeDef,
|
|
@@ -160,6 +164,7 @@ class Table(ServiceResource):
|
|
|
160
164
|
global_table_version: str
|
|
161
165
|
replicas: list[ReplicaDescriptionTypeDef]
|
|
162
166
|
global_table_witnesses: list[GlobalTableWitnessDescriptionTypeDef]
|
|
167
|
+
global_table_settings_replication_mode: GlobalTableSettingsReplicationModeType
|
|
163
168
|
restore_summary: RestoreSummaryTypeDef
|
|
164
169
|
sse_description: SSEDescriptionTypeDef
|
|
165
170
|
archival_summary: ArchivalSummaryTypeDef
|
mypy_boto3_dynamodb/type_defs.py
CHANGED
|
@@ -3,7 +3,7 @@ Type annotations for dynamodb service type definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/type_defs/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -43,6 +43,7 @@ from .literals import (
|
|
|
43
43
|
ExportStatusType,
|
|
44
44
|
ExportTypeType,
|
|
45
45
|
ExportViewTypeType,
|
|
46
|
+
GlobalTableSettingsReplicationModeType,
|
|
46
47
|
GlobalTableStatusType,
|
|
47
48
|
ImportStatusType,
|
|
48
49
|
IndexStatusType,
|
|
@@ -151,17 +152,21 @@ __all__ = (
|
|
|
151
152
|
"DescribeContinuousBackupsInputTypeDef",
|
|
152
153
|
"DescribeContinuousBackupsOutputTypeDef",
|
|
153
154
|
"DescribeContributorInsightsInputTypeDef",
|
|
155
|
+
"DescribeContributorInsightsInputWaitTypeDef",
|
|
154
156
|
"DescribeContributorInsightsOutputTypeDef",
|
|
155
157
|
"DescribeEndpointsResponseTypeDef",
|
|
156
158
|
"DescribeExportInputTypeDef",
|
|
159
|
+
"DescribeExportInputWaitTypeDef",
|
|
157
160
|
"DescribeExportOutputTypeDef",
|
|
158
161
|
"DescribeGlobalTableInputTypeDef",
|
|
159
162
|
"DescribeGlobalTableOutputTypeDef",
|
|
160
163
|
"DescribeGlobalTableSettingsInputTypeDef",
|
|
161
164
|
"DescribeGlobalTableSettingsOutputTypeDef",
|
|
162
165
|
"DescribeImportInputTypeDef",
|
|
166
|
+
"DescribeImportInputWaitTypeDef",
|
|
163
167
|
"DescribeImportOutputTypeDef",
|
|
164
168
|
"DescribeKinesisStreamingDestinationInputTypeDef",
|
|
169
|
+
"DescribeKinesisStreamingDestinationInputWaitTypeDef",
|
|
165
170
|
"DescribeKinesisStreamingDestinationOutputTypeDef",
|
|
166
171
|
"DescribeLimitsOutputTypeDef",
|
|
167
172
|
"DescribeTableInputTypeDef",
|
|
@@ -614,6 +619,11 @@ class DescribeContributorInsightsInputTypeDef(TypedDict):
|
|
|
614
619
|
IndexName: NotRequired[str]
|
|
615
620
|
|
|
616
621
|
|
|
622
|
+
class WaiterConfigTypeDef(TypedDict):
|
|
623
|
+
Delay: NotRequired[int]
|
|
624
|
+
MaxAttempts: NotRequired[int]
|
|
625
|
+
|
|
626
|
+
|
|
617
627
|
class FailureExceptionTypeDef(TypedDict):
|
|
618
628
|
ExceptionName: NotRequired[str]
|
|
619
629
|
ExceptionDescription: NotRequired[str]
|
|
@@ -655,11 +665,6 @@ class DescribeTableInputTypeDef(TypedDict):
|
|
|
655
665
|
TableName: str
|
|
656
666
|
|
|
657
667
|
|
|
658
|
-
class WaiterConfigTypeDef(TypedDict):
|
|
659
|
-
Delay: NotRequired[int]
|
|
660
|
-
MaxAttempts: NotRequired[int]
|
|
661
|
-
|
|
662
|
-
|
|
663
668
|
class DescribeTableReplicaAutoScalingInputTypeDef(TypedDict):
|
|
664
669
|
TableName: str
|
|
665
670
|
|
|
@@ -1112,6 +1117,37 @@ class ReplicaUpdateTypeDef(TypedDict):
|
|
|
1112
1117
|
Delete: NotRequired[DeleteReplicaActionTypeDef]
|
|
1113
1118
|
|
|
1114
1119
|
|
|
1120
|
+
class DescribeContributorInsightsInputWaitTypeDef(TypedDict):
|
|
1121
|
+
TableName: str
|
|
1122
|
+
IndexName: NotRequired[str]
|
|
1123
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1124
|
+
|
|
1125
|
+
|
|
1126
|
+
class DescribeExportInputWaitTypeDef(TypedDict):
|
|
1127
|
+
ExportArn: str
|
|
1128
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1129
|
+
|
|
1130
|
+
|
|
1131
|
+
class DescribeImportInputWaitTypeDef(TypedDict):
|
|
1132
|
+
ImportArn: str
|
|
1133
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1134
|
+
|
|
1135
|
+
|
|
1136
|
+
class DescribeKinesisStreamingDestinationInputWaitTypeDef(TypedDict):
|
|
1137
|
+
TableName: str
|
|
1138
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1139
|
+
|
|
1140
|
+
|
|
1141
|
+
class DescribeTableInputWaitExtraTypeDef(TypedDict):
|
|
1142
|
+
TableName: str
|
|
1143
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
class DescribeTableInputWaitTypeDef(TypedDict):
|
|
1147
|
+
TableName: str
|
|
1148
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1149
|
+
|
|
1150
|
+
|
|
1115
1151
|
class DescribeContributorInsightsOutputTypeDef(TypedDict):
|
|
1116
1152
|
TableName: str
|
|
1117
1153
|
IndexName: str
|
|
@@ -1134,16 +1170,6 @@ class DescribeKinesisStreamingDestinationOutputTypeDef(TypedDict):
|
|
|
1134
1170
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1135
1171
|
|
|
1136
1172
|
|
|
1137
|
-
class DescribeTableInputWaitExtraTypeDef(TypedDict):
|
|
1138
|
-
TableName: str
|
|
1139
|
-
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
class DescribeTableInputWaitTypeDef(TypedDict):
|
|
1143
|
-
TableName: str
|
|
1144
|
-
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
1173
|
class DescribeTimeToLiveOutputTypeDef(TypedDict):
|
|
1148
1174
|
TimeToLiveDescription: TimeToLiveDescriptionTypeDef
|
|
1149
1175
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1765,6 +1791,7 @@ ReplicaDescriptionTypeDef = TypedDict(
|
|
|
1765
1791
|
"GlobalSecondaryIndexes": NotRequired[list[ReplicaGlobalSecondaryIndexDescriptionTypeDef]],
|
|
1766
1792
|
"ReplicaInaccessibleDateTime": NotRequired[datetime],
|
|
1767
1793
|
"ReplicaTableClassSummary": NotRequired[TableClassSummaryTypeDef],
|
|
1794
|
+
"GlobalTableSettingsReplicationMode": NotRequired[GlobalTableSettingsReplicationModeType],
|
|
1768
1795
|
},
|
|
1769
1796
|
)
|
|
1770
1797
|
|
|
@@ -2085,6 +2112,7 @@ class TableDescriptionTypeDef(TypedDict):
|
|
|
2085
2112
|
GlobalTableVersion: NotRequired[str]
|
|
2086
2113
|
Replicas: NotRequired[list[ReplicaDescriptionTypeDef]]
|
|
2087
2114
|
GlobalTableWitnesses: NotRequired[list[GlobalTableWitnessDescriptionTypeDef]]
|
|
2115
|
+
GlobalTableSettingsReplicationMode: NotRequired[GlobalTableSettingsReplicationModeType]
|
|
2088
2116
|
RestoreSummary: NotRequired[RestoreSummaryTypeDef]
|
|
2089
2117
|
SSEDescription: NotRequired[SSEDescriptionTypeDef]
|
|
2090
2118
|
ArchivalSummary: NotRequired[ArchivalSummaryTypeDef]
|
|
@@ -2333,9 +2361,9 @@ class UpdateTableInputTypeDef(TypedDict):
|
|
|
2333
2361
|
|
|
2334
2362
|
|
|
2335
2363
|
class CreateTableInputServiceResourceCreateTableTypeDef(TypedDict):
|
|
2336
|
-
AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
|
|
2337
2364
|
TableName: str
|
|
2338
|
-
|
|
2365
|
+
AttributeDefinitions: NotRequired[Sequence[AttributeDefinitionTypeDef]]
|
|
2366
|
+
KeySchema: NotRequired[Sequence[KeySchemaElementTypeDef]]
|
|
2339
2367
|
LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
2340
2368
|
GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
|
|
2341
2369
|
BillingMode: NotRequired[BillingModeType]
|
|
@@ -2348,12 +2376,14 @@ class CreateTableInputServiceResourceCreateTableTypeDef(TypedDict):
|
|
|
2348
2376
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2349
2377
|
ResourcePolicy: NotRequired[str]
|
|
2350
2378
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2379
|
+
GlobalTableSourceArn: NotRequired[str]
|
|
2380
|
+
GlobalTableSettingsReplicationMode: NotRequired[GlobalTableSettingsReplicationModeType]
|
|
2351
2381
|
|
|
2352
2382
|
|
|
2353
2383
|
class CreateTableInputTypeDef(TypedDict):
|
|
2354
|
-
AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
|
|
2355
2384
|
TableName: str
|
|
2356
|
-
|
|
2385
|
+
AttributeDefinitions: NotRequired[Sequence[AttributeDefinitionTypeDef]]
|
|
2386
|
+
KeySchema: NotRequired[Sequence[KeySchemaElementTypeDef]]
|
|
2357
2387
|
LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
2358
2388
|
GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
|
|
2359
2389
|
BillingMode: NotRequired[BillingModeType]
|
|
@@ -2366,6 +2396,8 @@ class CreateTableInputTypeDef(TypedDict):
|
|
|
2366
2396
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2367
2397
|
ResourcePolicy: NotRequired[str]
|
|
2368
2398
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2399
|
+
GlobalTableSourceArn: NotRequired[str]
|
|
2400
|
+
GlobalTableSettingsReplicationMode: NotRequired[GlobalTableSettingsReplicationModeType]
|
|
2369
2401
|
|
|
2370
2402
|
|
|
2371
2403
|
class RestoreTableFromBackupInputTypeDef(TypedDict):
|
|
@@ -3,7 +3,7 @@ Type annotations for dynamodb service type definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/type_defs/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -43,6 +43,7 @@ from .literals import (
|
|
|
43
43
|
ExportStatusType,
|
|
44
44
|
ExportTypeType,
|
|
45
45
|
ExportViewTypeType,
|
|
46
|
+
GlobalTableSettingsReplicationModeType,
|
|
46
47
|
GlobalTableStatusType,
|
|
47
48
|
ImportStatusType,
|
|
48
49
|
IndexStatusType,
|
|
@@ -150,17 +151,21 @@ __all__ = (
|
|
|
150
151
|
"DescribeContinuousBackupsInputTypeDef",
|
|
151
152
|
"DescribeContinuousBackupsOutputTypeDef",
|
|
152
153
|
"DescribeContributorInsightsInputTypeDef",
|
|
154
|
+
"DescribeContributorInsightsInputWaitTypeDef",
|
|
153
155
|
"DescribeContributorInsightsOutputTypeDef",
|
|
154
156
|
"DescribeEndpointsResponseTypeDef",
|
|
155
157
|
"DescribeExportInputTypeDef",
|
|
158
|
+
"DescribeExportInputWaitTypeDef",
|
|
156
159
|
"DescribeExportOutputTypeDef",
|
|
157
160
|
"DescribeGlobalTableInputTypeDef",
|
|
158
161
|
"DescribeGlobalTableOutputTypeDef",
|
|
159
162
|
"DescribeGlobalTableSettingsInputTypeDef",
|
|
160
163
|
"DescribeGlobalTableSettingsOutputTypeDef",
|
|
161
164
|
"DescribeImportInputTypeDef",
|
|
165
|
+
"DescribeImportInputWaitTypeDef",
|
|
162
166
|
"DescribeImportOutputTypeDef",
|
|
163
167
|
"DescribeKinesisStreamingDestinationInputTypeDef",
|
|
168
|
+
"DescribeKinesisStreamingDestinationInputWaitTypeDef",
|
|
164
169
|
"DescribeKinesisStreamingDestinationOutputTypeDef",
|
|
165
170
|
"DescribeLimitsOutputTypeDef",
|
|
166
171
|
"DescribeTableInputTypeDef",
|
|
@@ -577,6 +582,10 @@ class DescribeContributorInsightsInputTypeDef(TypedDict):
|
|
|
577
582
|
TableName: str
|
|
578
583
|
IndexName: NotRequired[str]
|
|
579
584
|
|
|
585
|
+
class WaiterConfigTypeDef(TypedDict):
|
|
586
|
+
Delay: NotRequired[int]
|
|
587
|
+
MaxAttempts: NotRequired[int]
|
|
588
|
+
|
|
580
589
|
class FailureExceptionTypeDef(TypedDict):
|
|
581
590
|
ExceptionName: NotRequired[str]
|
|
582
591
|
ExceptionDescription: NotRequired[str]
|
|
@@ -609,10 +618,6 @@ class KinesisDataStreamDestinationTypeDef(TypedDict):
|
|
|
609
618
|
class DescribeTableInputTypeDef(TypedDict):
|
|
610
619
|
TableName: str
|
|
611
620
|
|
|
612
|
-
class WaiterConfigTypeDef(TypedDict):
|
|
613
|
-
Delay: NotRequired[int]
|
|
614
|
-
MaxAttempts: NotRequired[int]
|
|
615
|
-
|
|
616
621
|
class DescribeTableReplicaAutoScalingInputTypeDef(TypedDict):
|
|
617
622
|
TableName: str
|
|
618
623
|
|
|
@@ -989,6 +994,31 @@ class ReplicaUpdateTypeDef(TypedDict):
|
|
|
989
994
|
Create: NotRequired[CreateReplicaActionTypeDef]
|
|
990
995
|
Delete: NotRequired[DeleteReplicaActionTypeDef]
|
|
991
996
|
|
|
997
|
+
class DescribeContributorInsightsInputWaitTypeDef(TypedDict):
|
|
998
|
+
TableName: str
|
|
999
|
+
IndexName: NotRequired[str]
|
|
1000
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1001
|
+
|
|
1002
|
+
class DescribeExportInputWaitTypeDef(TypedDict):
|
|
1003
|
+
ExportArn: str
|
|
1004
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1005
|
+
|
|
1006
|
+
class DescribeImportInputWaitTypeDef(TypedDict):
|
|
1007
|
+
ImportArn: str
|
|
1008
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1009
|
+
|
|
1010
|
+
class DescribeKinesisStreamingDestinationInputWaitTypeDef(TypedDict):
|
|
1011
|
+
TableName: str
|
|
1012
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1013
|
+
|
|
1014
|
+
class DescribeTableInputWaitExtraTypeDef(TypedDict):
|
|
1015
|
+
TableName: str
|
|
1016
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1017
|
+
|
|
1018
|
+
class DescribeTableInputWaitTypeDef(TypedDict):
|
|
1019
|
+
TableName: str
|
|
1020
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1021
|
+
|
|
992
1022
|
class DescribeContributorInsightsOutputTypeDef(TypedDict):
|
|
993
1023
|
TableName: str
|
|
994
1024
|
IndexName: str
|
|
@@ -1008,14 +1038,6 @@ class DescribeKinesisStreamingDestinationOutputTypeDef(TypedDict):
|
|
|
1008
1038
|
KinesisDataStreamDestinations: list[KinesisDataStreamDestinationTypeDef]
|
|
1009
1039
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1010
1040
|
|
|
1011
|
-
class DescribeTableInputWaitExtraTypeDef(TypedDict):
|
|
1012
|
-
TableName: str
|
|
1013
|
-
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1014
|
-
|
|
1015
|
-
class DescribeTableInputWaitTypeDef(TypedDict):
|
|
1016
|
-
TableName: str
|
|
1017
|
-
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1018
|
-
|
|
1019
1041
|
class DescribeTimeToLiveOutputTypeDef(TypedDict):
|
|
1020
1042
|
TimeToLiveDescription: TimeToLiveDescriptionTypeDef
|
|
1021
1043
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1560,6 +1582,7 @@ ReplicaDescriptionTypeDef = TypedDict(
|
|
|
1560
1582
|
"GlobalSecondaryIndexes": NotRequired[list[ReplicaGlobalSecondaryIndexDescriptionTypeDef]],
|
|
1561
1583
|
"ReplicaInaccessibleDateTime": NotRequired[datetime],
|
|
1562
1584
|
"ReplicaTableClassSummary": NotRequired[TableClassSummaryTypeDef],
|
|
1585
|
+
"GlobalTableSettingsReplicationMode": NotRequired[GlobalTableSettingsReplicationModeType],
|
|
1563
1586
|
},
|
|
1564
1587
|
)
|
|
1565
1588
|
|
|
@@ -1845,6 +1868,7 @@ class TableDescriptionTypeDef(TypedDict):
|
|
|
1845
1868
|
GlobalTableVersion: NotRequired[str]
|
|
1846
1869
|
Replicas: NotRequired[list[ReplicaDescriptionTypeDef]]
|
|
1847
1870
|
GlobalTableWitnesses: NotRequired[list[GlobalTableWitnessDescriptionTypeDef]]
|
|
1871
|
+
GlobalTableSettingsReplicationMode: NotRequired[GlobalTableSettingsReplicationModeType]
|
|
1848
1872
|
RestoreSummary: NotRequired[RestoreSummaryTypeDef]
|
|
1849
1873
|
SSEDescription: NotRequired[SSEDescriptionTypeDef]
|
|
1850
1874
|
ArchivalSummary: NotRequired[ArchivalSummaryTypeDef]
|
|
@@ -2067,9 +2091,9 @@ class UpdateTableInputTypeDef(TypedDict):
|
|
|
2067
2091
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2068
2092
|
|
|
2069
2093
|
class CreateTableInputServiceResourceCreateTableTypeDef(TypedDict):
|
|
2070
|
-
AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
|
|
2071
2094
|
TableName: str
|
|
2072
|
-
|
|
2095
|
+
AttributeDefinitions: NotRequired[Sequence[AttributeDefinitionTypeDef]]
|
|
2096
|
+
KeySchema: NotRequired[Sequence[KeySchemaElementTypeDef]]
|
|
2073
2097
|
LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
2074
2098
|
GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
|
|
2075
2099
|
BillingMode: NotRequired[BillingModeType]
|
|
@@ -2082,11 +2106,13 @@ class CreateTableInputServiceResourceCreateTableTypeDef(TypedDict):
|
|
|
2082
2106
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2083
2107
|
ResourcePolicy: NotRequired[str]
|
|
2084
2108
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2109
|
+
GlobalTableSourceArn: NotRequired[str]
|
|
2110
|
+
GlobalTableSettingsReplicationMode: NotRequired[GlobalTableSettingsReplicationModeType]
|
|
2085
2111
|
|
|
2086
2112
|
class CreateTableInputTypeDef(TypedDict):
|
|
2087
|
-
AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
|
|
2088
2113
|
TableName: str
|
|
2089
|
-
|
|
2114
|
+
AttributeDefinitions: NotRequired[Sequence[AttributeDefinitionTypeDef]]
|
|
2115
|
+
KeySchema: NotRequired[Sequence[KeySchemaElementTypeDef]]
|
|
2090
2116
|
LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
|
|
2091
2117
|
GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
|
|
2092
2118
|
BillingMode: NotRequired[BillingModeType]
|
|
@@ -2099,6 +2125,8 @@ class CreateTableInputTypeDef(TypedDict):
|
|
|
2099
2125
|
WarmThroughput: NotRequired[WarmThroughputTypeDef]
|
|
2100
2126
|
ResourcePolicy: NotRequired[str]
|
|
2101
2127
|
OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
|
|
2128
|
+
GlobalTableSourceArn: NotRequired[str]
|
|
2129
|
+
GlobalTableSettingsReplicationMode: NotRequired[GlobalTableSettingsReplicationModeType]
|
|
2102
2130
|
|
|
2103
2131
|
class RestoreTableFromBackupInputTypeDef(TypedDict):
|
|
2104
2132
|
TargetTableName: str
|
mypy_boto3_dynamodb/version.py
CHANGED
mypy_boto3_dynamodb/waiter.py
CHANGED
|
@@ -3,7 +3,7 @@ Type annotations for dynamodb service client waiters.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -12,6 +12,10 @@ Usage::
|
|
|
12
12
|
|
|
13
13
|
from mypy_boto3_dynamodb.client import DynamoDBClient
|
|
14
14
|
from mypy_boto3_dynamodb.waiter import (
|
|
15
|
+
ContributorInsightsEnabledWaiter,
|
|
16
|
+
ExportCompletedWaiter,
|
|
17
|
+
ImportCompletedWaiter,
|
|
18
|
+
KinesisStreamingDestinationActiveWaiter,
|
|
15
19
|
TableExistsWaiter,
|
|
16
20
|
TableNotExistsWaiter,
|
|
17
21
|
)
|
|
@@ -19,6 +23,10 @@ Usage::
|
|
|
19
23
|
session = Session()
|
|
20
24
|
client: DynamoDBClient = session.client("dynamodb")
|
|
21
25
|
|
|
26
|
+
contributor_insights_enabled_waiter: ContributorInsightsEnabledWaiter = client.get_waiter("contributor_insights_enabled")
|
|
27
|
+
export_completed_waiter: ExportCompletedWaiter = client.get_waiter("export_completed")
|
|
28
|
+
import_completed_waiter: ImportCompletedWaiter = client.get_waiter("import_completed")
|
|
29
|
+
kinesis_streaming_destination_active_waiter: KinesisStreamingDestinationActiveWaiter = client.get_waiter("kinesis_streaming_destination_active")
|
|
22
30
|
table_exists_waiter: TableExistsWaiter = client.get_waiter("table_exists")
|
|
23
31
|
table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
|
|
24
32
|
```
|
|
@@ -30,7 +38,14 @@ import sys
|
|
|
30
38
|
|
|
31
39
|
from botocore.waiter import Waiter
|
|
32
40
|
|
|
33
|
-
from .type_defs import
|
|
41
|
+
from .type_defs import (
|
|
42
|
+
DescribeContributorInsightsInputWaitTypeDef,
|
|
43
|
+
DescribeExportInputWaitTypeDef,
|
|
44
|
+
DescribeImportInputWaitTypeDef,
|
|
45
|
+
DescribeKinesisStreamingDestinationInputWaitTypeDef,
|
|
46
|
+
DescribeTableInputWaitExtraTypeDef,
|
|
47
|
+
DescribeTableInputWaitTypeDef,
|
|
48
|
+
)
|
|
34
49
|
|
|
35
50
|
if sys.version_info >= (3, 12):
|
|
36
51
|
from typing import Unpack
|
|
@@ -38,7 +53,74 @@ else:
|
|
|
38
53
|
from typing_extensions import Unpack
|
|
39
54
|
|
|
40
55
|
|
|
41
|
-
__all__ = (
|
|
56
|
+
__all__ = (
|
|
57
|
+
"ContributorInsightsEnabledWaiter",
|
|
58
|
+
"ExportCompletedWaiter",
|
|
59
|
+
"ImportCompletedWaiter",
|
|
60
|
+
"KinesisStreamingDestinationActiveWaiter",
|
|
61
|
+
"TableExistsWaiter",
|
|
62
|
+
"TableNotExistsWaiter",
|
|
63
|
+
)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
class ContributorInsightsEnabledWaiter(Waiter):
|
|
67
|
+
"""
|
|
68
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/ContributorInsightsEnabled.html#DynamoDB.Waiter.ContributorInsightsEnabled)
|
|
69
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#contributorinsightsenabledwaiter)
|
|
70
|
+
"""
|
|
71
|
+
|
|
72
|
+
def wait( # type: ignore[override]
|
|
73
|
+
self, **kwargs: Unpack[DescribeContributorInsightsInputWaitTypeDef]
|
|
74
|
+
) -> None:
|
|
75
|
+
"""
|
|
76
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/ContributorInsightsEnabled.html#DynamoDB.Waiter.ContributorInsightsEnabled.wait)
|
|
77
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#contributorinsightsenabledwaiter)
|
|
78
|
+
"""
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
class ExportCompletedWaiter(Waiter):
|
|
82
|
+
"""
|
|
83
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/ExportCompleted.html#DynamoDB.Waiter.ExportCompleted)
|
|
84
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#exportcompletedwaiter)
|
|
85
|
+
"""
|
|
86
|
+
|
|
87
|
+
def wait( # type: ignore[override]
|
|
88
|
+
self, **kwargs: Unpack[DescribeExportInputWaitTypeDef]
|
|
89
|
+
) -> None:
|
|
90
|
+
"""
|
|
91
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/ExportCompleted.html#DynamoDB.Waiter.ExportCompleted.wait)
|
|
92
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#exportcompletedwaiter)
|
|
93
|
+
"""
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
class ImportCompletedWaiter(Waiter):
|
|
97
|
+
"""
|
|
98
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/ImportCompleted.html#DynamoDB.Waiter.ImportCompleted)
|
|
99
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#importcompletedwaiter)
|
|
100
|
+
"""
|
|
101
|
+
|
|
102
|
+
def wait( # type: ignore[override]
|
|
103
|
+
self, **kwargs: Unpack[DescribeImportInputWaitTypeDef]
|
|
104
|
+
) -> None:
|
|
105
|
+
"""
|
|
106
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/ImportCompleted.html#DynamoDB.Waiter.ImportCompleted.wait)
|
|
107
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#importcompletedwaiter)
|
|
108
|
+
"""
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
class KinesisStreamingDestinationActiveWaiter(Waiter):
|
|
112
|
+
"""
|
|
113
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/KinesisStreamingDestinationActive.html#DynamoDB.Waiter.KinesisStreamingDestinationActive)
|
|
114
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#kinesisstreamingdestinationactivewaiter)
|
|
115
|
+
"""
|
|
116
|
+
|
|
117
|
+
def wait( # type: ignore[override]
|
|
118
|
+
self, **kwargs: Unpack[DescribeKinesisStreamingDestinationInputWaitTypeDef]
|
|
119
|
+
) -> None:
|
|
120
|
+
"""
|
|
121
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/KinesisStreamingDestinationActive.html#DynamoDB.Waiter.KinesisStreamingDestinationActive.wait)
|
|
122
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#kinesisstreamingdestinationactivewaiter)
|
|
123
|
+
"""
|
|
42
124
|
|
|
43
125
|
|
|
44
126
|
class TableExistsWaiter(Waiter):
|
mypy_boto3_dynamodb/waiter.pyi
CHANGED
|
@@ -3,7 +3,7 @@ Type annotations for dynamodb service client waiters.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -12,6 +12,10 @@ Usage::
|
|
|
12
12
|
|
|
13
13
|
from mypy_boto3_dynamodb.client import DynamoDBClient
|
|
14
14
|
from mypy_boto3_dynamodb.waiter import (
|
|
15
|
+
ContributorInsightsEnabledWaiter,
|
|
16
|
+
ExportCompletedWaiter,
|
|
17
|
+
ImportCompletedWaiter,
|
|
18
|
+
KinesisStreamingDestinationActiveWaiter,
|
|
15
19
|
TableExistsWaiter,
|
|
16
20
|
TableNotExistsWaiter,
|
|
17
21
|
)
|
|
@@ -19,6 +23,10 @@ Usage::
|
|
|
19
23
|
session = Session()
|
|
20
24
|
client: DynamoDBClient = session.client("dynamodb")
|
|
21
25
|
|
|
26
|
+
contributor_insights_enabled_waiter: ContributorInsightsEnabledWaiter = client.get_waiter("contributor_insights_enabled")
|
|
27
|
+
export_completed_waiter: ExportCompletedWaiter = client.get_waiter("export_completed")
|
|
28
|
+
import_completed_waiter: ImportCompletedWaiter = client.get_waiter("import_completed")
|
|
29
|
+
kinesis_streaming_destination_active_waiter: KinesisStreamingDestinationActiveWaiter = client.get_waiter("kinesis_streaming_destination_active")
|
|
22
30
|
table_exists_waiter: TableExistsWaiter = client.get_waiter("table_exists")
|
|
23
31
|
table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
|
|
24
32
|
```
|
|
@@ -30,14 +38,80 @@ import sys
|
|
|
30
38
|
|
|
31
39
|
from botocore.waiter import Waiter
|
|
32
40
|
|
|
33
|
-
from .type_defs import
|
|
41
|
+
from .type_defs import (
|
|
42
|
+
DescribeContributorInsightsInputWaitTypeDef,
|
|
43
|
+
DescribeExportInputWaitTypeDef,
|
|
44
|
+
DescribeImportInputWaitTypeDef,
|
|
45
|
+
DescribeKinesisStreamingDestinationInputWaitTypeDef,
|
|
46
|
+
DescribeTableInputWaitExtraTypeDef,
|
|
47
|
+
DescribeTableInputWaitTypeDef,
|
|
48
|
+
)
|
|
34
49
|
|
|
35
50
|
if sys.version_info >= (3, 12):
|
|
36
51
|
from typing import Unpack
|
|
37
52
|
else:
|
|
38
53
|
from typing_extensions import Unpack
|
|
39
54
|
|
|
40
|
-
__all__ = (
|
|
55
|
+
__all__ = (
|
|
56
|
+
"ContributorInsightsEnabledWaiter",
|
|
57
|
+
"ExportCompletedWaiter",
|
|
58
|
+
"ImportCompletedWaiter",
|
|
59
|
+
"KinesisStreamingDestinationActiveWaiter",
|
|
60
|
+
"TableExistsWaiter",
|
|
61
|
+
"TableNotExistsWaiter",
|
|
62
|
+
)
|
|
63
|
+
|
|
64
|
+
class ContributorInsightsEnabledWaiter(Waiter):
|
|
65
|
+
"""
|
|
66
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/ContributorInsightsEnabled.html#DynamoDB.Waiter.ContributorInsightsEnabled)
|
|
67
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#contributorinsightsenabledwaiter)
|
|
68
|
+
"""
|
|
69
|
+
def wait( # type: ignore[override]
|
|
70
|
+
self, **kwargs: Unpack[DescribeContributorInsightsInputWaitTypeDef]
|
|
71
|
+
) -> None:
|
|
72
|
+
"""
|
|
73
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/ContributorInsightsEnabled.html#DynamoDB.Waiter.ContributorInsightsEnabled.wait)
|
|
74
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#contributorinsightsenabledwaiter)
|
|
75
|
+
"""
|
|
76
|
+
|
|
77
|
+
class ExportCompletedWaiter(Waiter):
|
|
78
|
+
"""
|
|
79
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/ExportCompleted.html#DynamoDB.Waiter.ExportCompleted)
|
|
80
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#exportcompletedwaiter)
|
|
81
|
+
"""
|
|
82
|
+
def wait( # type: ignore[override]
|
|
83
|
+
self, **kwargs: Unpack[DescribeExportInputWaitTypeDef]
|
|
84
|
+
) -> None:
|
|
85
|
+
"""
|
|
86
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/ExportCompleted.html#DynamoDB.Waiter.ExportCompleted.wait)
|
|
87
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#exportcompletedwaiter)
|
|
88
|
+
"""
|
|
89
|
+
|
|
90
|
+
class ImportCompletedWaiter(Waiter):
|
|
91
|
+
"""
|
|
92
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/ImportCompleted.html#DynamoDB.Waiter.ImportCompleted)
|
|
93
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#importcompletedwaiter)
|
|
94
|
+
"""
|
|
95
|
+
def wait( # type: ignore[override]
|
|
96
|
+
self, **kwargs: Unpack[DescribeImportInputWaitTypeDef]
|
|
97
|
+
) -> None:
|
|
98
|
+
"""
|
|
99
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/ImportCompleted.html#DynamoDB.Waiter.ImportCompleted.wait)
|
|
100
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#importcompletedwaiter)
|
|
101
|
+
"""
|
|
102
|
+
|
|
103
|
+
class KinesisStreamingDestinationActiveWaiter(Waiter):
|
|
104
|
+
"""
|
|
105
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/KinesisStreamingDestinationActive.html#DynamoDB.Waiter.KinesisStreamingDestinationActive)
|
|
106
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#kinesisstreamingdestinationactivewaiter)
|
|
107
|
+
"""
|
|
108
|
+
def wait( # type: ignore[override]
|
|
109
|
+
self, **kwargs: Unpack[DescribeKinesisStreamingDestinationInputWaitTypeDef]
|
|
110
|
+
) -> None:
|
|
111
|
+
"""
|
|
112
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/KinesisStreamingDestinationActive.html#DynamoDB.Waiter.KinesisStreamingDestinationActive.wait)
|
|
113
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/waiters/#kinesisstreamingdestinationactivewaiter)
|
|
114
|
+
"""
|
|
41
115
|
|
|
42
116
|
class TableExistsWaiter(Waiter):
|
|
43
117
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-dynamodb
|
|
3
|
-
Version: 1.42.
|
|
4
|
-
Summary: Type annotations for boto3 DynamoDB 1.42.
|
|
3
|
+
Version: 1.42.41
|
|
4
|
+
Summary: Type annotations for boto3 DynamoDB 1.42.41 service generated with mypy-boto3-builder 8.12.0
|
|
5
5
|
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
|
|
@@ -42,7 +42,7 @@ Dynamic: license-file
|
|
|
42
42
|
|
|
43
43
|

|
|
44
44
|
|
|
45
|
-
Type annotations for [boto3 DynamoDB 1.42.
|
|
45
|
+
Type annotations for [boto3 DynamoDB 1.42.41](https://pypi.org/project/boto3/)
|
|
46
46
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
47
47
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
48
48
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -109,7 +109,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
109
109
|
isolation.
|
|
110
110
|
|
|
111
111
|
1. Run mypy-boto3-builder in your package root directory:
|
|
112
|
-
`uvx --with 'boto3==1.42.
|
|
112
|
+
`uvx --with 'boto3==1.42.41' mypy-boto3-builder`
|
|
113
113
|
2. Select `boto3-stubs` AWS SDK.
|
|
114
114
|
3. Add `DynamoDB` service.
|
|
115
115
|
4. Use provided commands to install generated packages.
|
|
@@ -398,12 +398,27 @@ scan_paginator: ScanPaginator = client.get_paginator("scan")
|
|
|
398
398
|
from boto3.session import Session
|
|
399
399
|
|
|
400
400
|
from mypy_boto3_dynamodb import DynamoDBClient
|
|
401
|
-
from mypy_boto3_dynamodb.waiter import
|
|
401
|
+
from mypy_boto3_dynamodb.waiter import (
|
|
402
|
+
ContributorInsightsEnabledWaiter,
|
|
403
|
+
ExportCompletedWaiter,
|
|
404
|
+
ImportCompletedWaiter,
|
|
405
|
+
KinesisStreamingDestinationActiveWaiter,
|
|
406
|
+
TableExistsWaiter,
|
|
407
|
+
TableNotExistsWaiter,
|
|
408
|
+
)
|
|
402
409
|
|
|
403
410
|
client: DynamoDBClient = Session().client("dynamodb")
|
|
404
411
|
|
|
405
412
|
# Explicit type annotations are optional here
|
|
406
413
|
# Types should be correctly discovered by mypy and IDEs
|
|
414
|
+
contributor_insights_enabled_waiter: ContributorInsightsEnabledWaiter = client.get_waiter(
|
|
415
|
+
"contributor_insights_enabled"
|
|
416
|
+
)
|
|
417
|
+
export_completed_waiter: ExportCompletedWaiter = client.get_waiter("export_completed")
|
|
418
|
+
import_completed_waiter: ImportCompletedWaiter = client.get_waiter("import_completed")
|
|
419
|
+
kinesis_streaming_destination_active_waiter: KinesisStreamingDestinationActiveWaiter = (
|
|
420
|
+
client.get_waiter("kinesis_streaming_destination_active")
|
|
421
|
+
)
|
|
407
422
|
table_exists_waiter: TableExistsWaiter = client.get_waiter("table_exists")
|
|
408
423
|
table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
|
|
409
424
|
```
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
mypy_boto3_dynamodb/__init__.py,sha256=YekTcugWBRYqlTIlyZhjWX8A-uQTxnKM70egR8IZEzM,2995
|
|
2
|
+
mypy_boto3_dynamodb/__init__.pyi,sha256=koQ4pf2DZ4FgsUOPLic9KSN-T9CLKCkuogjoCiJ7Ffc,2992
|
|
3
|
+
mypy_boto3_dynamodb/__main__.py,sha256=C1Lp7thkA94iFh1R0xzqida4stD9trEwyrhX-CX4WFw,988
|
|
4
|
+
mypy_boto3_dynamodb/client.py,sha256=yuCU4KXb2tf49lHh-TaAj-S3Wu0SJmzXkgqhhqNIZ8E,44937
|
|
5
|
+
mypy_boto3_dynamodb/client.pyi,sha256=dgXeCV-A7X83kn0hOXOZlPrULU6E_JTuvicQbhFkdxo,44934
|
|
6
|
+
mypy_boto3_dynamodb/literals.py,sha256=3uqwGkQN_Hlqgn6u_qJY9TO47C6V994NWf9I3n-j9rs,15977
|
|
7
|
+
mypy_boto3_dynamodb/literals.pyi,sha256=KnpTmDboMwMcLrppCwE0z1kg1zr2nAF7zbsQeRG6cGg,15975
|
|
8
|
+
mypy_boto3_dynamodb/paginator.py,sha256=I76YQYXrJ52CL9zYGsbCI40Vh-1AbBQGSjpfZETWk88,6929
|
|
9
|
+
mypy_boto3_dynamodb/paginator.pyi,sha256=xEaGxrj1P-xBO9tElU8Q7qUUctCvtJ-wYCJb6z9zYXA,6913
|
|
10
|
+
mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_dynamodb/service_resource.py,sha256=Z9Xtf8n2PWeh78L01DfvKQTS1eYJ8o4wWahkn8Lelaw,17359
|
|
12
|
+
mypy_boto3_dynamodb/service_resource.pyi,sha256=OB12rGt-MckAnbIEw_07Vua4n8et61s5I2UjazSJq8U,17352
|
|
13
|
+
mypy_boto3_dynamodb/type_defs.py,sha256=pBRom5Fgj--Xr3FV2gcVzjLs3CxrEMjY77cy6EYH_4I,87716
|
|
14
|
+
mypy_boto3_dynamodb/type_defs.pyi,sha256=a-kHLxVRa3ERw42Z0Szt28BVyNDtMB2xWMyf-vIuYDw,87432
|
|
15
|
+
mypy_boto3_dynamodb/version.py,sha256=0Jo1Qn2U_oFgqL4nO3MxO2uNNRY6W5kOpGYz8AyqYcE,93
|
|
16
|
+
mypy_boto3_dynamodb/waiter.py,sha256=vq7ofNTM67Ht1LNf_QA-GGtXQ8ih66l1X045WgiXJ4I,7137
|
|
17
|
+
mypy_boto3_dynamodb/waiter.pyi,sha256=ksHjQxjBQNck94_SUijK6Q7nUvUaQb4FiBBe87V9Zp8,7124
|
|
18
|
+
mypy_boto3_dynamodb-1.42.41.dist-info/licenses/LICENSE,sha256=MdPBcMOA_mXHmAaBn41qTH8zP7qsdQfRAIxNJaCq-wE,1070
|
|
19
|
+
mypy_boto3_dynamodb-1.42.41.dist-info/METADATA,sha256=qnEkOAD_oJjAA0uZQ9u4RWugu6TuUNj4zZ3u87wju6g,18663
|
|
20
|
+
mypy_boto3_dynamodb-1.42.41.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
21
|
+
mypy_boto3_dynamodb-1.42.41.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
|
|
22
|
+
mypy_boto3_dynamodb-1.42.41.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
mypy_boto3_dynamodb/__init__.py,sha256=RtWLr5qHbk9BDBzkz4SQ4olA-twsDIcWdSPYar5JGCM,2090
|
|
2
|
-
mypy_boto3_dynamodb/__init__.pyi,sha256=g7AAZHZ2jejV34Cf-vht4Iz_YVHPjlQNfeiptjrAFB4,2087
|
|
3
|
-
mypy_boto3_dynamodb/__main__.py,sha256=pmDrG7ykMfnUIOXegpoGSVN2IX00pej2Z9ksq1Jo3z8,985
|
|
4
|
-
mypy_boto3_dynamodb/client.py,sha256=IqHzACmmWJ269gWO8g3P2kbp4L5oUVYaGD8OK7cgM70,42622
|
|
5
|
-
mypy_boto3_dynamodb/client.pyi,sha256=NbYD0CG4_zKZVKchCB7UqiA7pQcVGalGLm1JksJ1i1E,42619
|
|
6
|
-
mypy_boto3_dynamodb/literals.py,sha256=YSFX26ao1oWC2dYVDEnPGIK50w9zTPdwNduWR9G4Zj0,15260
|
|
7
|
-
mypy_boto3_dynamodb/literals.pyi,sha256=1qWx7AQKHD6KKL4mMvcXQEz-mxHehmcuVu4KiAYnpr0,15258
|
|
8
|
-
mypy_boto3_dynamodb/paginator.py,sha256=wuU1KYjaAximTUXHtfrHMKeVdgtC7Wuro8wmfUcWCrs,6929
|
|
9
|
-
mypy_boto3_dynamodb/paginator.pyi,sha256=eQf1IutnaUroIW-LxJYHKEc0sr8l7ulkXagsNGQMgh4,6913
|
|
10
|
-
mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_dynamodb/service_resource.py,sha256=M2jSnhIw2gNE7aQVpRDg0AbTkJVGW4wIc1XRckF8a7A,17219
|
|
12
|
-
mypy_boto3_dynamodb/service_resource.pyi,sha256=57QHpm-q3A3AZLgeE0uo4Te2O6nMEZu5m2UFkcS0Sz4,17212
|
|
13
|
-
mypy_boto3_dynamodb/type_defs.py,sha256=pThxVrWevI1NndF1WrUk_04EWuCYKpERTngrxb9JIxg,86423
|
|
14
|
-
mypy_boto3_dynamodb/type_defs.pyi,sha256=urRsUHBt9VtmlWAoYxpRiEhKfYOWDJPHEg25_KeISqw,86143
|
|
15
|
-
mypy_boto3_dynamodb/version.py,sha256=GG_me-VWxqUerVNqcPw9hL39jbKNBNmLknphxNF_WPw,92
|
|
16
|
-
mypy_boto3_dynamodb/waiter.py,sha256=7FIuQ_7AG60CPUrBwavSVzLkAEAvP4slPOOqVNmxIYE,2635
|
|
17
|
-
mypy_boto3_dynamodb/waiter.pyi,sha256=13JrmDc8WtWAQ1yOd82vd_nu4B2q6hRj1yex7Fiar1k,2630
|
|
18
|
-
mypy_boto3_dynamodb-1.42.3.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
19
|
-
mypy_boto3_dynamodb-1.42.3.dist-info/METADATA,sha256=FmpTWqxg9nA-WQgR08gfg-23CGiav4Im_jFXEcs8f1g,18054
|
|
20
|
-
mypy_boto3_dynamodb-1.42.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
21
|
-
mypy_boto3_dynamodb-1.42.3.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
|
|
22
|
-
mypy_boto3_dynamodb-1.42.3.dist-info/RECORD,,
|
{mypy_boto3_dynamodb-1.42.3.dist-info → mypy_boto3_dynamodb-1.42.41.dist-info}/top_level.txt
RENAMED
|
File without changes
|