types-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.
@@ -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 2025 Vlad Emelianov
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 TableExistsWaiter, TableNotExistsWaiter
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 2025 Vlad Emelianov
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 TableExistsWaiter, TableNotExistsWaiter
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",
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Main CLI entrypoint.
3
3
 
4
- Copyright 2025 Vlad Emelianov
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.3\n"
16
- "Version: 1.42.3\n"
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/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.3\n")
29
+ sys.stdout.write("1.42.41\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -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 2025 Vlad Emelianov
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 TableExistsWaiter, TableNotExistsWaiter
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"]
@@ -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 2025 Vlad Emelianov
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 TableExistsWaiter, TableNotExistsWaiter
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"]
@@ -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 2025 Vlad Emelianov
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["table_exists", "table_not_exists"]
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",
@@ -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 2025 Vlad Emelianov
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["table_exists", "table_not_exists"]
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",
@@ -3,7 +3,7 @@ Type annotations for dynamodb service client paginators.
3
3
 
4
4
  [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/paginators/)
5
5
 
6
- Copyright 2025 Vlad Emelianov
6
+ Copyright 2026 Vlad Emelianov
7
7
 
8
8
  Usage::
9
9
 
@@ -3,7 +3,7 @@ Type annotations for dynamodb service client paginators.
3
3
 
4
4
  [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/paginators/)
5
5
 
6
- Copyright 2025 Vlad Emelianov
6
+ Copyright 2026 Vlad Emelianov
7
7
 
8
8
  Usage::
9
9
 
@@ -3,7 +3,7 @@ Type annotations for dynamodb service ServiceResource.
3
3
 
4
4
  [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/service_resource/)
5
5
 
6
- Copyright 2025 Vlad Emelianov
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 MultiRegionConsistencyType, TableStatusType
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/types_boto3_docs/types_boto3_dynamodb/service_resource/)
5
5
 
6
- Copyright 2025 Vlad Emelianov
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 MultiRegionConsistencyType, TableStatusType
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
@@ -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 2025 Vlad Emelianov
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
- KeySchema: Sequence[KeySchemaElementTypeDef]
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
- KeySchema: Sequence[KeySchemaElementTypeDef]
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/types_boto3_docs/types_boto3_dynamodb/type_defs/)
5
5
 
6
- Copyright 2025 Vlad Emelianov
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
- KeySchema: Sequence[KeySchemaElementTypeDef]
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
- KeySchema: Sequence[KeySchemaElementTypeDef]
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
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Source of truth for version.
3
3
 
4
- Copyright 2025 Vlad Emelianov
4
+ Copyright 2026 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.42.3"
7
+ __version__ = "1.42.41"
@@ -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 2025 Vlad Emelianov
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 DescribeTableInputWaitExtraTypeDef, DescribeTableInputWaitTypeDef
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__ = ("TableExistsWaiter", "TableNotExistsWaiter")
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):
@@ -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 2025 Vlad Emelianov
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 DescribeTableInputWaitExtraTypeDef, DescribeTableInputWaitTypeDef
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__ = ("TableExistsWaiter", "TableNotExistsWaiter")
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.3
4
- Summary: Type annotations for boto3 DynamoDB 1.42.3 service generated with mypy-boto3-builder 8.12.0
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
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
44
44
 
45
- Type annotations for [boto3 DynamoDB 1.42.3](https://pypi.org/project/boto3/)
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/),
@@ -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.3' mypy-boto3-builder`
111
+ `uvx --with 'boto3==1.42.41' 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 TableExistsWaiter, TableNotExistsWaiter
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=xtL9XwdlDhTDc2mvTW4hOP17GRmlThHIbrBvTvkxPaE,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=4Vq_xZvzBDbh2EK3qORK8lBivdTk6kNkWrHftcZPfzQ,15979
7
+ types_boto3_dynamodb/literals.pyi,sha256=Lc6MpWJ--tOn1M4WqaK2y8_BiJXue7z_GQ5FAws4YfI,15977
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=k6erakHxp3b_y9XX2EYytyGr73_Arv0tSaX4gz_GgxU,17390
12
+ types_boto3_dynamodb/service_resource.pyi,sha256=IhJSemG7hYqi85UYgUysR1Lzulcei6n-863C5jaJJhA,17383
13
+ types_boto3_dynamodb/type_defs.py,sha256=pAf9C-9tGVqLJXglK5sUmfRCknRdSk48WXqKxUWOcSE,87718
14
+ types_boto3_dynamodb/type_defs.pyi,sha256=X8ktt6z72eh1zN_KjQY3vdyRh-bquq5tsAFNTBIAwbo,87434
15
+ types_boto3_dynamodb/version.py,sha256=0Jo1Qn2U_oFgqL4nO3MxO2uNNRY6W5kOpGYz8AyqYcE,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.41.dist-info/licenses/LICENSE,sha256=MdPBcMOA_mXHmAaBn41qTH8zP7qsdQfRAIxNJaCq-wE,1070
19
+ types_boto3_dynamodb-1.42.41.dist-info/METADATA,sha256=5BwyH6_eTf7waGOLbjXWb8zgG-3NFr1mU83AwmpfDC0,18168
20
+ types_boto3_dynamodb-1.42.41.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
21
+ types_boto3_dynamodb-1.42.41.dist-info/top_level.txt,sha256=qetKI9-H-rMGIOB1IBzTvryBK-GlE9YjkQQwaB1GpB8,21
22
+ types_boto3_dynamodb-1.42.41.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Vlad Emelianov
3
+ Copyright (c) 2026 Vlad Emelianov
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -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,,