types-boto3-dynamodb 1.42.3__py3-none-any.whl → 1.42.33__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 +21 -2
- types_boto3_dynamodb/__init__.pyi +21 -2
- types_boto3_dynamodb/__main__.py +4 -4
- types_boto3_dynamodb/client.py +53 -2
- types_boto3_dynamodb/client.pyi +53 -2
- types_boto3_dynamodb/literals.py +18 -3
- types_boto3_dynamodb/literals.pyi +18 -3
- types_boto3_dynamodb/paginator.py +1 -1
- types_boto3_dynamodb/paginator.pyi +1 -1
- types_boto3_dynamodb/service_resource.py +1 -1
- types_boto3_dynamodb/service_resource.pyi +1 -1
- types_boto3_dynamodb/type_defs.py +41 -16
- types_boto3_dynamodb/type_defs.pyi +34 -13
- types_boto3_dynamodb/version.py +2 -2
- types_boto3_dynamodb/waiter.py +85 -3
- types_boto3_dynamodb/waiter.pyi +77 -3
- {types_boto3_dynamodb-1.42.3.dist-info → types_boto3_dynamodb-1.42.33.dist-info}/METADATA +20 -5
- types_boto3_dynamodb-1.42.33.dist-info/RECORD +22 -0
- {types_boto3_dynamodb-1.42.3.dist-info → types_boto3_dynamodb-1.42.33.dist-info}/WHEEL +1 -1
- {types_boto3_dynamodb-1.42.3.dist-info → types_boto3_dynamodb-1.42.33.dist-info}/licenses/LICENSE +1 -1
- types_boto3_dynamodb-1.42.3.dist-info/RECORD +0 -22
- {types_boto3_dynamodb-1.42.3.dist-info → types_boto3_dynamodb-1.42.33.dist-info}/top_level.txt +0 -0
types_boto3_dynamodb/__init__.py
CHANGED
|
@@ -3,7 +3,7 @@ Main interface for dynamodb service.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_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 types_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",
|
|
@@ -3,7 +3,7 @@ Main interface for dynamodb service.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_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 types_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",
|
types_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.33\n"
|
|
16
|
+
"Version: 1.42.33\n"
|
|
17
17
|
"Builder version: 8.12.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#dynamodb\n"
|
|
@@ -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.33\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
types_boto3_dynamodb/client.py
CHANGED
|
@@ -3,7 +3,7 @@ Type annotations for dynamodb service Client.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/)
|
|
5
5
|
|
|
6
|
-
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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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"]
|
types_boto3_dynamodb/client.pyi
CHANGED
|
@@ -3,7 +3,7 @@ Type annotations for dynamodb service Client.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/client/)
|
|
5
5
|
|
|
6
|
-
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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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"]
|
types_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/types_boto3_docs/types_boto3_dynamodb/literals/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -34,20 +34,24 @@ __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",
|
|
45
47
|
"GlobalTableStatusType",
|
|
48
|
+
"ImportCompletedWaiterName",
|
|
46
49
|
"ImportStatusType",
|
|
47
50
|
"IndexStatusType",
|
|
48
51
|
"InputCompressionTypeType",
|
|
49
52
|
"InputFormatType",
|
|
50
53
|
"KeyTypeType",
|
|
54
|
+
"KinesisStreamingDestinationActiveWaiterName",
|
|
51
55
|
"ListBackupsPaginatorName",
|
|
52
56
|
"ListTablesPaginatorName",
|
|
53
57
|
"ListTagsOfResourcePaginatorName",
|
|
@@ -118,21 +122,25 @@ ComparisonOperatorType = Literal[
|
|
|
118
122
|
ConditionalOperatorType = Literal["AND", "OR"]
|
|
119
123
|
ContinuousBackupsStatusType = Literal["DISABLED", "ENABLED"]
|
|
120
124
|
ContributorInsightsActionType = Literal["DISABLE", "ENABLE"]
|
|
125
|
+
ContributorInsightsEnabledWaiterName = Literal["contributor_insights_enabled"]
|
|
121
126
|
ContributorInsightsModeType = Literal["ACCESSED_AND_THROTTLED_KEYS", "THROTTLED_KEYS"]
|
|
122
127
|
ContributorInsightsStatusType = Literal["DISABLED", "DISABLING", "ENABLED", "ENABLING", "FAILED"]
|
|
123
128
|
DestinationStatusType = Literal[
|
|
124
129
|
"ACTIVE", "DISABLED", "DISABLING", "ENABLE_FAILED", "ENABLING", "UPDATING"
|
|
125
130
|
]
|
|
131
|
+
ExportCompletedWaiterName = Literal["export_completed"]
|
|
126
132
|
ExportFormatType = Literal["DYNAMODB_JSON", "ION"]
|
|
127
133
|
ExportStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS"]
|
|
128
134
|
ExportTypeType = Literal["FULL_EXPORT", "INCREMENTAL_EXPORT"]
|
|
129
135
|
ExportViewTypeType = Literal["NEW_AND_OLD_IMAGES", "NEW_IMAGE"]
|
|
130
136
|
GlobalTableStatusType = Literal["ACTIVE", "CREATING", "DELETING", "UPDATING"]
|
|
137
|
+
ImportCompletedWaiterName = Literal["import_completed"]
|
|
131
138
|
ImportStatusType = Literal["CANCELLED", "CANCELLING", "COMPLETED", "FAILED", "IN_PROGRESS"]
|
|
132
139
|
IndexStatusType = Literal["ACTIVE", "CREATING", "DELETING", "UPDATING"]
|
|
133
140
|
InputCompressionTypeType = Literal["GZIP", "NONE", "ZSTD"]
|
|
134
141
|
InputFormatType = Literal["CSV", "DYNAMODB_JSON", "ION"]
|
|
135
142
|
KeyTypeType = Literal["HASH", "RANGE"]
|
|
143
|
+
KinesisStreamingDestinationActiveWaiterName = Literal["kinesis_streaming_destination_active"]
|
|
136
144
|
ListBackupsPaginatorName = Literal["list_backups"]
|
|
137
145
|
ListTablesPaginatorName = Literal["list_tables"]
|
|
138
146
|
ListTagsOfResourcePaginatorName = Literal["list_tags_of_resource"]
|
|
@@ -320,7 +328,6 @@ ServiceName = Literal[
|
|
|
320
328
|
"eks-auth",
|
|
321
329
|
"elasticache",
|
|
322
330
|
"elasticbeanstalk",
|
|
323
|
-
"elastictranscoder",
|
|
324
331
|
"elb",
|
|
325
332
|
"elbv2",
|
|
326
333
|
"emr",
|
|
@@ -585,6 +592,7 @@ ServiceName = Literal[
|
|
|
585
592
|
"waf-regional",
|
|
586
593
|
"wafv2",
|
|
587
594
|
"wellarchitected",
|
|
595
|
+
"wickr",
|
|
588
596
|
"wisdom",
|
|
589
597
|
"workdocs",
|
|
590
598
|
"workmail",
|
|
@@ -599,7 +607,14 @@ ResourceServiceName = Literal[
|
|
|
599
607
|
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
600
608
|
]
|
|
601
609
|
PaginatorName = Literal["list_backups", "list_tables", "list_tags_of_resource", "query", "scan"]
|
|
602
|
-
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
|
+
]
|
|
603
618
|
RegionName = Literal[
|
|
604
619
|
"af-south-1",
|
|
605
620
|
"ap-east-1",
|
|
@@ -3,7 +3,7 @@ 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
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -33,20 +33,24 @@ __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",
|
|
44
46
|
"GlobalTableStatusType",
|
|
47
|
+
"ImportCompletedWaiterName",
|
|
45
48
|
"ImportStatusType",
|
|
46
49
|
"IndexStatusType",
|
|
47
50
|
"InputCompressionTypeType",
|
|
48
51
|
"InputFormatType",
|
|
49
52
|
"KeyTypeType",
|
|
53
|
+
"KinesisStreamingDestinationActiveWaiterName",
|
|
50
54
|
"ListBackupsPaginatorName",
|
|
51
55
|
"ListTablesPaginatorName",
|
|
52
56
|
"ListTagsOfResourcePaginatorName",
|
|
@@ -116,21 +120,25 @@ ComparisonOperatorType = Literal[
|
|
|
116
120
|
ConditionalOperatorType = Literal["AND", "OR"]
|
|
117
121
|
ContinuousBackupsStatusType = Literal["DISABLED", "ENABLED"]
|
|
118
122
|
ContributorInsightsActionType = Literal["DISABLE", "ENABLE"]
|
|
123
|
+
ContributorInsightsEnabledWaiterName = Literal["contributor_insights_enabled"]
|
|
119
124
|
ContributorInsightsModeType = Literal["ACCESSED_AND_THROTTLED_KEYS", "THROTTLED_KEYS"]
|
|
120
125
|
ContributorInsightsStatusType = Literal["DISABLED", "DISABLING", "ENABLED", "ENABLING", "FAILED"]
|
|
121
126
|
DestinationStatusType = Literal[
|
|
122
127
|
"ACTIVE", "DISABLED", "DISABLING", "ENABLE_FAILED", "ENABLING", "UPDATING"
|
|
123
128
|
]
|
|
129
|
+
ExportCompletedWaiterName = Literal["export_completed"]
|
|
124
130
|
ExportFormatType = Literal["DYNAMODB_JSON", "ION"]
|
|
125
131
|
ExportStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS"]
|
|
126
132
|
ExportTypeType = Literal["FULL_EXPORT", "INCREMENTAL_EXPORT"]
|
|
127
133
|
ExportViewTypeType = Literal["NEW_AND_OLD_IMAGES", "NEW_IMAGE"]
|
|
128
134
|
GlobalTableStatusType = Literal["ACTIVE", "CREATING", "DELETING", "UPDATING"]
|
|
135
|
+
ImportCompletedWaiterName = Literal["import_completed"]
|
|
129
136
|
ImportStatusType = Literal["CANCELLED", "CANCELLING", "COMPLETED", "FAILED", "IN_PROGRESS"]
|
|
130
137
|
IndexStatusType = Literal["ACTIVE", "CREATING", "DELETING", "UPDATING"]
|
|
131
138
|
InputCompressionTypeType = Literal["GZIP", "NONE", "ZSTD"]
|
|
132
139
|
InputFormatType = Literal["CSV", "DYNAMODB_JSON", "ION"]
|
|
133
140
|
KeyTypeType = Literal["HASH", "RANGE"]
|
|
141
|
+
KinesisStreamingDestinationActiveWaiterName = Literal["kinesis_streaming_destination_active"]
|
|
134
142
|
ListBackupsPaginatorName = Literal["list_backups"]
|
|
135
143
|
ListTablesPaginatorName = Literal["list_tables"]
|
|
136
144
|
ListTagsOfResourcePaginatorName = Literal["list_tags_of_resource"]
|
|
@@ -318,7 +326,6 @@ ServiceName = Literal[
|
|
|
318
326
|
"eks-auth",
|
|
319
327
|
"elasticache",
|
|
320
328
|
"elasticbeanstalk",
|
|
321
|
-
"elastictranscoder",
|
|
322
329
|
"elb",
|
|
323
330
|
"elbv2",
|
|
324
331
|
"emr",
|
|
@@ -583,6 +590,7 @@ ServiceName = Literal[
|
|
|
583
590
|
"waf-regional",
|
|
584
591
|
"wafv2",
|
|
585
592
|
"wellarchitected",
|
|
593
|
+
"wickr",
|
|
586
594
|
"wisdom",
|
|
587
595
|
"workdocs",
|
|
588
596
|
"workmail",
|
|
@@ -597,7 +605,14 @@ ResourceServiceName = Literal[
|
|
|
597
605
|
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
598
606
|
]
|
|
599
607
|
PaginatorName = Literal["list_backups", "list_tables", "list_tags_of_resource", "query", "scan"]
|
|
600
|
-
WaiterName = Literal[
|
|
608
|
+
WaiterName = Literal[
|
|
609
|
+
"contributor_insights_enabled",
|
|
610
|
+
"export_completed",
|
|
611
|
+
"import_completed",
|
|
612
|
+
"kinesis_streaming_destination_active",
|
|
613
|
+
"table_exists",
|
|
614
|
+
"table_not_exists",
|
|
615
|
+
]
|
|
601
616
|
RegionName = Literal[
|
|
602
617
|
"af-south-1",
|
|
603
618
|
"ap-east-1",
|
|
@@ -3,7 +3,7 @@ Type annotations for dynamodb service type definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/type_defs/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -151,17 +151,21 @@ __all__ = (
|
|
|
151
151
|
"DescribeContinuousBackupsInputTypeDef",
|
|
152
152
|
"DescribeContinuousBackupsOutputTypeDef",
|
|
153
153
|
"DescribeContributorInsightsInputTypeDef",
|
|
154
|
+
"DescribeContributorInsightsInputWaitTypeDef",
|
|
154
155
|
"DescribeContributorInsightsOutputTypeDef",
|
|
155
156
|
"DescribeEndpointsResponseTypeDef",
|
|
156
157
|
"DescribeExportInputTypeDef",
|
|
158
|
+
"DescribeExportInputWaitTypeDef",
|
|
157
159
|
"DescribeExportOutputTypeDef",
|
|
158
160
|
"DescribeGlobalTableInputTypeDef",
|
|
159
161
|
"DescribeGlobalTableOutputTypeDef",
|
|
160
162
|
"DescribeGlobalTableSettingsInputTypeDef",
|
|
161
163
|
"DescribeGlobalTableSettingsOutputTypeDef",
|
|
162
164
|
"DescribeImportInputTypeDef",
|
|
165
|
+
"DescribeImportInputWaitTypeDef",
|
|
163
166
|
"DescribeImportOutputTypeDef",
|
|
164
167
|
"DescribeKinesisStreamingDestinationInputTypeDef",
|
|
168
|
+
"DescribeKinesisStreamingDestinationInputWaitTypeDef",
|
|
165
169
|
"DescribeKinesisStreamingDestinationOutputTypeDef",
|
|
166
170
|
"DescribeLimitsOutputTypeDef",
|
|
167
171
|
"DescribeTableInputTypeDef",
|
|
@@ -614,6 +618,11 @@ class DescribeContributorInsightsInputTypeDef(TypedDict):
|
|
|
614
618
|
IndexName: NotRequired[str]
|
|
615
619
|
|
|
616
620
|
|
|
621
|
+
class WaiterConfigTypeDef(TypedDict):
|
|
622
|
+
Delay: NotRequired[int]
|
|
623
|
+
MaxAttempts: NotRequired[int]
|
|
624
|
+
|
|
625
|
+
|
|
617
626
|
class FailureExceptionTypeDef(TypedDict):
|
|
618
627
|
ExceptionName: NotRequired[str]
|
|
619
628
|
ExceptionDescription: NotRequired[str]
|
|
@@ -655,11 +664,6 @@ class DescribeTableInputTypeDef(TypedDict):
|
|
|
655
664
|
TableName: str
|
|
656
665
|
|
|
657
666
|
|
|
658
|
-
class WaiterConfigTypeDef(TypedDict):
|
|
659
|
-
Delay: NotRequired[int]
|
|
660
|
-
MaxAttempts: NotRequired[int]
|
|
661
|
-
|
|
662
|
-
|
|
663
667
|
class DescribeTableReplicaAutoScalingInputTypeDef(TypedDict):
|
|
664
668
|
TableName: str
|
|
665
669
|
|
|
@@ -1112,6 +1116,37 @@ class ReplicaUpdateTypeDef(TypedDict):
|
|
|
1112
1116
|
Delete: NotRequired[DeleteReplicaActionTypeDef]
|
|
1113
1117
|
|
|
1114
1118
|
|
|
1119
|
+
class DescribeContributorInsightsInputWaitTypeDef(TypedDict):
|
|
1120
|
+
TableName: str
|
|
1121
|
+
IndexName: NotRequired[str]
|
|
1122
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1123
|
+
|
|
1124
|
+
|
|
1125
|
+
class DescribeExportInputWaitTypeDef(TypedDict):
|
|
1126
|
+
ExportArn: str
|
|
1127
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1128
|
+
|
|
1129
|
+
|
|
1130
|
+
class DescribeImportInputWaitTypeDef(TypedDict):
|
|
1131
|
+
ImportArn: str
|
|
1132
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1133
|
+
|
|
1134
|
+
|
|
1135
|
+
class DescribeKinesisStreamingDestinationInputWaitTypeDef(TypedDict):
|
|
1136
|
+
TableName: str
|
|
1137
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1138
|
+
|
|
1139
|
+
|
|
1140
|
+
class DescribeTableInputWaitExtraTypeDef(TypedDict):
|
|
1141
|
+
TableName: str
|
|
1142
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1143
|
+
|
|
1144
|
+
|
|
1145
|
+
class DescribeTableInputWaitTypeDef(TypedDict):
|
|
1146
|
+
TableName: str
|
|
1147
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1148
|
+
|
|
1149
|
+
|
|
1115
1150
|
class DescribeContributorInsightsOutputTypeDef(TypedDict):
|
|
1116
1151
|
TableName: str
|
|
1117
1152
|
IndexName: str
|
|
@@ -1134,16 +1169,6 @@ class DescribeKinesisStreamingDestinationOutputTypeDef(TypedDict):
|
|
|
1134
1169
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1135
1170
|
|
|
1136
1171
|
|
|
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
1172
|
class DescribeTimeToLiveOutputTypeDef(TypedDict):
|
|
1148
1173
|
TimeToLiveDescription: TimeToLiveDescriptionTypeDef
|
|
1149
1174
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -3,7 +3,7 @@ Type annotations for dynamodb service type definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/type_defs/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -150,17 +150,21 @@ __all__ = (
|
|
|
150
150
|
"DescribeContinuousBackupsInputTypeDef",
|
|
151
151
|
"DescribeContinuousBackupsOutputTypeDef",
|
|
152
152
|
"DescribeContributorInsightsInputTypeDef",
|
|
153
|
+
"DescribeContributorInsightsInputWaitTypeDef",
|
|
153
154
|
"DescribeContributorInsightsOutputTypeDef",
|
|
154
155
|
"DescribeEndpointsResponseTypeDef",
|
|
155
156
|
"DescribeExportInputTypeDef",
|
|
157
|
+
"DescribeExportInputWaitTypeDef",
|
|
156
158
|
"DescribeExportOutputTypeDef",
|
|
157
159
|
"DescribeGlobalTableInputTypeDef",
|
|
158
160
|
"DescribeGlobalTableOutputTypeDef",
|
|
159
161
|
"DescribeGlobalTableSettingsInputTypeDef",
|
|
160
162
|
"DescribeGlobalTableSettingsOutputTypeDef",
|
|
161
163
|
"DescribeImportInputTypeDef",
|
|
164
|
+
"DescribeImportInputWaitTypeDef",
|
|
162
165
|
"DescribeImportOutputTypeDef",
|
|
163
166
|
"DescribeKinesisStreamingDestinationInputTypeDef",
|
|
167
|
+
"DescribeKinesisStreamingDestinationInputWaitTypeDef",
|
|
164
168
|
"DescribeKinesisStreamingDestinationOutputTypeDef",
|
|
165
169
|
"DescribeLimitsOutputTypeDef",
|
|
166
170
|
"DescribeTableInputTypeDef",
|
|
@@ -577,6 +581,10 @@ class DescribeContributorInsightsInputTypeDef(TypedDict):
|
|
|
577
581
|
TableName: str
|
|
578
582
|
IndexName: NotRequired[str]
|
|
579
583
|
|
|
584
|
+
class WaiterConfigTypeDef(TypedDict):
|
|
585
|
+
Delay: NotRequired[int]
|
|
586
|
+
MaxAttempts: NotRequired[int]
|
|
587
|
+
|
|
580
588
|
class FailureExceptionTypeDef(TypedDict):
|
|
581
589
|
ExceptionName: NotRequired[str]
|
|
582
590
|
ExceptionDescription: NotRequired[str]
|
|
@@ -609,10 +617,6 @@ class KinesisDataStreamDestinationTypeDef(TypedDict):
|
|
|
609
617
|
class DescribeTableInputTypeDef(TypedDict):
|
|
610
618
|
TableName: str
|
|
611
619
|
|
|
612
|
-
class WaiterConfigTypeDef(TypedDict):
|
|
613
|
-
Delay: NotRequired[int]
|
|
614
|
-
MaxAttempts: NotRequired[int]
|
|
615
|
-
|
|
616
620
|
class DescribeTableReplicaAutoScalingInputTypeDef(TypedDict):
|
|
617
621
|
TableName: str
|
|
618
622
|
|
|
@@ -989,6 +993,31 @@ class ReplicaUpdateTypeDef(TypedDict):
|
|
|
989
993
|
Create: NotRequired[CreateReplicaActionTypeDef]
|
|
990
994
|
Delete: NotRequired[DeleteReplicaActionTypeDef]
|
|
991
995
|
|
|
996
|
+
class DescribeContributorInsightsInputWaitTypeDef(TypedDict):
|
|
997
|
+
TableName: str
|
|
998
|
+
IndexName: NotRequired[str]
|
|
999
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1000
|
+
|
|
1001
|
+
class DescribeExportInputWaitTypeDef(TypedDict):
|
|
1002
|
+
ExportArn: str
|
|
1003
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1004
|
+
|
|
1005
|
+
class DescribeImportInputWaitTypeDef(TypedDict):
|
|
1006
|
+
ImportArn: str
|
|
1007
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1008
|
+
|
|
1009
|
+
class DescribeKinesisStreamingDestinationInputWaitTypeDef(TypedDict):
|
|
1010
|
+
TableName: str
|
|
1011
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1012
|
+
|
|
1013
|
+
class DescribeTableInputWaitExtraTypeDef(TypedDict):
|
|
1014
|
+
TableName: str
|
|
1015
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1016
|
+
|
|
1017
|
+
class DescribeTableInputWaitTypeDef(TypedDict):
|
|
1018
|
+
TableName: str
|
|
1019
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1020
|
+
|
|
992
1021
|
class DescribeContributorInsightsOutputTypeDef(TypedDict):
|
|
993
1022
|
TableName: str
|
|
994
1023
|
IndexName: str
|
|
@@ -1008,14 +1037,6 @@ class DescribeKinesisStreamingDestinationOutputTypeDef(TypedDict):
|
|
|
1008
1037
|
KinesisDataStreamDestinations: list[KinesisDataStreamDestinationTypeDef]
|
|
1009
1038
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1010
1039
|
|
|
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
1040
|
class DescribeTimeToLiveOutputTypeDef(TypedDict):
|
|
1020
1041
|
TimeToLiveDescription: TimeToLiveDescriptionTypeDef
|
|
1021
1042
|
ResponseMetadata: ResponseMetadataTypeDef
|
types_boto3_dynamodb/version.py
CHANGED
types_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/types_boto3_docs/types_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 types_boto3_dynamodb.client import DynamoDBClient
|
|
14
14
|
from types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/#kinesisstreamingdestinationactivewaiter)
|
|
123
|
+
"""
|
|
42
124
|
|
|
43
125
|
|
|
44
126
|
class TableExistsWaiter(Waiter):
|
types_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/types_boto3_docs/types_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 types_boto3_dynamodb.client import DynamoDBClient
|
|
14
14
|
from types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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: types-boto3-dynamodb
|
|
3
|
-
Version: 1.42.
|
|
4
|
-
Summary: Type annotations for boto3 DynamoDB 1.42.
|
|
3
|
+
Version: 1.42.33
|
|
4
|
+
Summary: Type annotations for boto3 DynamoDB 1.42.33 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.33](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/),
|
|
@@ -108,7 +108,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
108
108
|
isolation.
|
|
109
109
|
|
|
110
110
|
1. Run mypy-boto3-builder in your package root directory:
|
|
111
|
-
`uvx --with 'boto3==1.42.
|
|
111
|
+
`uvx --with 'boto3==1.42.33' mypy-boto3-builder`
|
|
112
112
|
2. Select `boto3` AWS SDK.
|
|
113
113
|
3. Add `DynamoDB` service.
|
|
114
114
|
4. Use provided commands to install generated packages.
|
|
@@ -372,12 +372,27 @@ scan_paginator: ScanPaginator = client.get_paginator("scan")
|
|
|
372
372
|
from boto3.session import Session
|
|
373
373
|
|
|
374
374
|
from types_boto3_dynamodb import DynamoDBClient
|
|
375
|
-
from types_boto3_dynamodb.waiter import
|
|
375
|
+
from types_boto3_dynamodb.waiter import (
|
|
376
|
+
ContributorInsightsEnabledWaiter,
|
|
377
|
+
ExportCompletedWaiter,
|
|
378
|
+
ImportCompletedWaiter,
|
|
379
|
+
KinesisStreamingDestinationActiveWaiter,
|
|
380
|
+
TableExistsWaiter,
|
|
381
|
+
TableNotExistsWaiter,
|
|
382
|
+
)
|
|
376
383
|
|
|
377
384
|
client: DynamoDBClient = Session().client("dynamodb")
|
|
378
385
|
|
|
379
386
|
# Explicit type annotations are optional here
|
|
380
387
|
# Types should be correctly discovered by mypy and IDEs
|
|
388
|
+
contributor_insights_enabled_waiter: ContributorInsightsEnabledWaiter = client.get_waiter(
|
|
389
|
+
"contributor_insights_enabled"
|
|
390
|
+
)
|
|
391
|
+
export_completed_waiter: ExportCompletedWaiter = client.get_waiter("export_completed")
|
|
392
|
+
import_completed_waiter: ImportCompletedWaiter = client.get_waiter("import_completed")
|
|
393
|
+
kinesis_streaming_destination_active_waiter: KinesisStreamingDestinationActiveWaiter = (
|
|
394
|
+
client.get_waiter("kinesis_streaming_destination_active")
|
|
395
|
+
)
|
|
381
396
|
table_exists_waiter: TableExistsWaiter = client.get_waiter("table_exists")
|
|
382
397
|
table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
|
|
383
398
|
```
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
types_boto3_dynamodb/__init__.py,sha256=JBku7DojkTTM4mC2YZTFURUVaDvhP_Eezs9p2OXvlr0,2997
|
|
2
|
+
types_boto3_dynamodb/__init__.pyi,sha256=ZB3Nb9I_vGynX-PMep9yXV4_DP1e3qnsSKAf_Fi3JUc,2994
|
|
3
|
+
types_boto3_dynamodb/__main__.py,sha256=nKcx-nNQFVNZ7xWMgrTcAWRXaQNcjo0bWZ_PFcQQ6P0,989
|
|
4
|
+
types_boto3_dynamodb/client.py,sha256=UO5w7lmhJ3C5on0ruvEdwi0-JyCM2mSb7TXmHAS3BsY,45011
|
|
5
|
+
types_boto3_dynamodb/client.pyi,sha256=9gNfg9YJzMov6ZiAK0BvdPfRJANBiUzvPtZTeFdfk50,45008
|
|
6
|
+
types_boto3_dynamodb/literals.py,sha256=qX-ekoQWlqOvGMXEJs-pDpAgkGp5CdT2Yz3NYe6bhmo,15835
|
|
7
|
+
types_boto3_dynamodb/literals.pyi,sha256=GikBmima7dfcqXdi36T5mrdWlsZ22I5tIfjpgeqnWnk,15833
|
|
8
|
+
types_boto3_dynamodb/paginator.py,sha256=sB7Klc0Kh6JnX_ishnMabBNtVVXvHEUwpTTnjNW--qY,6942
|
|
9
|
+
types_boto3_dynamodb/paginator.pyi,sha256=BDSSN7QRVHvHSP53kjxa6ioWSDIxwpk2j0HNX19Znis,6926
|
|
10
|
+
types_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_dynamodb/service_resource.py,sha256=iHJEfC5BuodNGdecDX3K_tYNIkw0LtpNDhS6EMIoI6Y,17250
|
|
12
|
+
types_boto3_dynamodb/service_resource.pyi,sha256=gR7D5b1lwI2lQX4do387KjvJGfI7ziIgaS6axZeHN_A,17243
|
|
13
|
+
types_boto3_dynamodb/type_defs.py,sha256=1xCCN8I7nKGPVAt-WdQgfBcFv9oUx2bCCZJjfEBd8f8,87161
|
|
14
|
+
types_boto3_dynamodb/type_defs.pyi,sha256=Ku2OcwRgxJBvRCms9bmhhlhZfSb8NCAY68aUF1mzeAU,86877
|
|
15
|
+
types_boto3_dynamodb/version.py,sha256=zMKG9-4RqE4dykTblMwxtKDQB5PdmCGl7H__3iy2ECU,93
|
|
16
|
+
types_boto3_dynamodb/waiter.py,sha256=04trTY1Q2BieTcUpXWdolzDTfWpxPIBchqc20-2Kb1Q,7152
|
|
17
|
+
types_boto3_dynamodb/waiter.pyi,sha256=wMAIEgZ6uiMnff-GlOzj9vdqAJpsPUJldMnpO6xPoK8,7139
|
|
18
|
+
types_boto3_dynamodb-1.42.33.dist-info/licenses/LICENSE,sha256=MdPBcMOA_mXHmAaBn41qTH8zP7qsdQfRAIxNJaCq-wE,1070
|
|
19
|
+
types_boto3_dynamodb-1.42.33.dist-info/METADATA,sha256=SK715j1qze6OUV1SJhj-lLYcs4jH1HCwbtcNvyVpAD0,18168
|
|
20
|
+
types_boto3_dynamodb-1.42.33.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
|
|
21
|
+
types_boto3_dynamodb-1.42.33.dist-info/top_level.txt,sha256=qetKI9-H-rMGIOB1IBzTvryBK-GlE9YjkQQwaB1GpB8,21
|
|
22
|
+
types_boto3_dynamodb-1.42.33.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
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=GT_ea6gJomvVvSPZDP2NW8bHn2DydyewjIyr7sqLg_4,986
|
|
4
|
-
types_boto3_dynamodb/client.py,sha256=Dt5IcVIBlJgeOJcLYNgwa71saVPQtMh6wXQQkfY-d1M,42692
|
|
5
|
-
types_boto3_dynamodb/client.pyi,sha256=X9aLePvQ4f3vzNDYJvBQRsV-2IcVa0atyLn6ieODH0c,42689
|
|
6
|
-
types_boto3_dynamodb/literals.py,sha256=DRWqo9w7ziTAA7EI-8cl71-fwD6J7Dq-OG-7HUZDKIs,15262
|
|
7
|
-
types_boto3_dynamodb/literals.pyi,sha256=dqZ0UwXbOG7dd_yUNQzNCBaUAYS4Wa2Wk12jrlZYeLw,15260
|
|
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=7ZeBdLepGbWF5B7T1uykzOj44YQZIBAr8xTSPuv8IoE,17250
|
|
12
|
-
types_boto3_dynamodb/service_resource.pyi,sha256=0CtL_S0HLAHOWf2eH_Oc4vt5X38edqJJRqbhJwpNNbo,17243
|
|
13
|
-
types_boto3_dynamodb/type_defs.py,sha256=6N72ld0fG7310MgCv3TBN2lwusNWW5_DCBYVY7McoWo,86425
|
|
14
|
-
types_boto3_dynamodb/type_defs.pyi,sha256=bM28a7oIqrex5lKN3TUlvJDo2fAM_qcWbtFi414R568,86145
|
|
15
|
-
types_boto3_dynamodb/version.py,sha256=GG_me-VWxqUerVNqcPw9hL39jbKNBNmLknphxNF_WPw,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.42.3.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
19
|
-
types_boto3_dynamodb-1.42.3.dist-info/METADATA,sha256=2DoWfgoJmpDY93Yzt-66KhYkIIZHkbFz3sbg0FhmXmw,17559
|
|
20
|
-
types_boto3_dynamodb-1.42.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
21
|
-
types_boto3_dynamodb-1.42.3.dist-info/top_level.txt,sha256=qetKI9-H-rMGIOB1IBzTvryBK-GlE9YjkQQwaB1GpB8,21
|
|
22
|
-
types_boto3_dynamodb-1.42.3.dist-info/RECORD,,
|
{types_boto3_dynamodb-1.42.3.dist-info → types_boto3_dynamodb-1.42.33.dist-info}/top_level.txt
RENAMED
|
File without changes
|