types-boto3-dynamodb 1.35.71__py3-none-any.whl → 1.35.93__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.
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for dynamodb service type definitions.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/type_defs/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/type_defs/)
5
5
 
6
6
  Usage::
7
7
 
@@ -11,13 +11,15 @@ Usage::
11
11
  data: ArchivalSummaryTypeDef = ...
12
12
  ```
13
13
 
14
- Copyright 2024 Vlad Emelianov
14
+ Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
+ from __future__ import annotations
18
+
17
19
  import sys
18
20
  from datetime import datetime
19
21
  from decimal import Decimal
20
- from typing import Any, Dict, List, Mapping, Sequence, Set, Union
22
+ from typing import Any, Union
21
23
 
22
24
  from boto3.dynamodb.conditions import ConditionBase
23
25
 
@@ -45,6 +47,7 @@ from .literals import (
45
47
  InputCompressionTypeType,
46
48
  InputFormatType,
47
49
  KeyTypeType,
50
+ MultiRegionConsistencyType,
48
51
  PointInTimeRecoveryStatusType,
49
52
  ProjectionTypeType,
50
53
  ReplicaStatusType,
@@ -63,6 +66,13 @@ from .literals import (
63
66
  TimeToLiveStatusType,
64
67
  )
65
68
 
69
+ if sys.version_info >= (3, 9):
70
+ from builtins import dict as Dict
71
+ from builtins import list as List
72
+ from builtins import set as Set
73
+ from collections.abc import Mapping, Sequence
74
+ else:
75
+ from typing import Dict, List, Mapping, Sequence, Set
66
76
  if sys.version_info >= (3, 12):
67
77
  from typing import NotRequired, TypedDict
68
78
  else:
@@ -157,8 +167,7 @@ __all__ = (
157
167
  "DescribeKinesisStreamingDestinationOutputTypeDef",
158
168
  "DescribeLimitsOutputTypeDef",
159
169
  "DescribeTableInputRequestTypeDef",
160
- "DescribeTableInputTableExistsWaitTypeDef",
161
- "DescribeTableInputTableNotExistsWaitTypeDef",
170
+ "DescribeTableInputWaitTypeDef",
162
171
  "DescribeTableOutputTypeDef",
163
172
  "DescribeTableReplicaAutoScalingInputRequestTypeDef",
164
173
  "DescribeTableReplicaAutoScalingOutputTypeDef",
@@ -190,7 +199,6 @@ __all__ = (
190
199
  "GlobalSecondaryIndexInfoTypeDef",
191
200
  "GlobalSecondaryIndexOutputTypeDef",
192
201
  "GlobalSecondaryIndexTypeDef",
193
- "GlobalSecondaryIndexUnionTypeDef",
194
202
  "GlobalSecondaryIndexUpdateTypeDef",
195
203
  "GlobalSecondaryIndexWarmThroughputDescriptionTypeDef",
196
204
  "GlobalTableDescriptionTypeDef",
@@ -218,7 +226,7 @@ __all__ = (
218
226
  "KinesisDataStreamDestinationTypeDef",
219
227
  "KinesisStreamingDestinationInputRequestTypeDef",
220
228
  "KinesisStreamingDestinationOutputTypeDef",
221
- "ListBackupsInputListBackupsPaginateTypeDef",
229
+ "ListBackupsInputPaginateTypeDef",
222
230
  "ListBackupsInputRequestTypeDef",
223
231
  "ListBackupsOutputTypeDef",
224
232
  "ListContributorInsightsInputRequestTypeDef",
@@ -229,10 +237,10 @@ __all__ = (
229
237
  "ListGlobalTablesOutputTypeDef",
230
238
  "ListImportsInputRequestTypeDef",
231
239
  "ListImportsOutputTypeDef",
232
- "ListTablesInputListTablesPaginateTypeDef",
240
+ "ListTablesInputPaginateTypeDef",
233
241
  "ListTablesInputRequestTypeDef",
234
242
  "ListTablesOutputTypeDef",
235
- "ListTagsOfResourceInputListTagsOfResourcePaginateTypeDef",
243
+ "ListTagsOfResourceInputPaginateTypeDef",
236
244
  "ListTagsOfResourceInputRequestTypeDef",
237
245
  "ListTagsOfResourceOutputTypeDef",
238
246
  "LocalSecondaryIndexDescriptionTypeDef",
@@ -263,7 +271,7 @@ __all__ = (
263
271
  "PutResourcePolicyInputRequestTypeDef",
264
272
  "PutResourcePolicyOutputTypeDef",
265
273
  "PutTypeDef",
266
- "QueryInputQueryPaginateTypeDef",
274
+ "QueryInputPaginateTypeDef",
267
275
  "QueryInputRequestTypeDef",
268
276
  "QueryInputTableQueryTypeDef",
269
277
  "QueryOutputTableTypeDef",
@@ -291,8 +299,8 @@ __all__ = (
291
299
  "S3BucketSourceTypeDef",
292
300
  "SSEDescriptionTypeDef",
293
301
  "SSESpecificationTypeDef",
302
+ "ScanInputPaginateTypeDef",
294
303
  "ScanInputRequestTypeDef",
295
- "ScanInputScanPaginateTypeDef",
296
304
  "ScanInputTableScanTypeDef",
297
305
  "ScanOutputTableTypeDef",
298
306
  "ScanOutputTypeDef",
@@ -630,10 +638,6 @@ class ProvisionedThroughputDescriptionTypeDef(TypedDict):
630
638
  ReadCapacityUnits: NotRequired[int]
631
639
  WriteCapacityUnits: NotRequired[int]
632
640
 
633
- class ProjectionTypeDef(TypedDict):
634
- ProjectionType: NotRequired[ProjectionTypeType]
635
- NonKeyAttributes: NotRequired[Sequence[str]]
636
-
637
641
  class S3BucketSourceTypeDef(TypedDict):
638
642
  S3Bucket: str
639
643
  S3BucketOwner: NotRequired[str]
@@ -679,6 +683,10 @@ class ListTagsOfResourceInputRequestTypeDef(TypedDict):
679
683
  class PointInTimeRecoverySpecificationTypeDef(TypedDict):
680
684
  PointInTimeRecoveryEnabled: bool
681
685
 
686
+ class ProjectionTypeDef(TypedDict):
687
+ ProjectionType: NotRequired[ProjectionTypeType]
688
+ NonKeyAttributes: NotRequired[Sequence[str]]
689
+
682
690
  class PutResourcePolicyInputRequestTypeDef(TypedDict):
683
691
  ResourceArn: str
684
692
  Policy: str
@@ -964,11 +972,7 @@ class DescribeKinesisStreamingDestinationOutputTypeDef(TypedDict):
964
972
  KinesisDataStreamDestinations: List[KinesisDataStreamDestinationTypeDef]
965
973
  ResponseMetadata: ResponseMetadataTypeDef
966
974
 
967
- class DescribeTableInputTableExistsWaitTypeDef(TypedDict):
968
- TableName: str
969
- WaiterConfig: NotRequired[WaiterConfigTypeDef]
970
-
971
- class DescribeTableInputTableNotExistsWaitTypeDef(TypedDict):
975
+ class DescribeTableInputWaitTypeDef(TypedDict):
972
976
  TableName: str
973
977
  WaiterConfig: NotRequired[WaiterConfigTypeDef]
974
978
 
@@ -1076,16 +1080,6 @@ class GlobalSecondaryIndexDescriptionTypeDef(TypedDict):
1076
1080
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1077
1081
  WarmThroughput: NotRequired[GlobalSecondaryIndexWarmThroughputDescriptionTypeDef]
1078
1082
 
1079
- class GlobalSecondaryIndexTypeDef(TypedDict):
1080
- IndexName: str
1081
- KeySchema: Sequence[KeySchemaElementTypeDef]
1082
- Projection: ProjectionTypeDef
1083
- ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
1084
- OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1085
- WarmThroughput: NotRequired[WarmThroughputTypeDef]
1086
-
1087
- ProjectionUnionTypeDef = Union[ProjectionTypeDef, ProjectionOutputTypeDef]
1088
-
1089
1083
  class ImportSummaryTypeDef(TypedDict):
1090
1084
  ImportArn: NotRequired[str]
1091
1085
  ImportStatus: NotRequired[ImportStatusType]
@@ -1096,17 +1090,17 @@ class ImportSummaryTypeDef(TypedDict):
1096
1090
  StartTime: NotRequired[datetime]
1097
1091
  EndTime: NotRequired[datetime]
1098
1092
 
1099
- class ListBackupsInputListBackupsPaginateTypeDef(TypedDict):
1093
+ class ListBackupsInputPaginateTypeDef(TypedDict):
1100
1094
  TableName: NotRequired[str]
1101
1095
  TimeRangeLowerBound: NotRequired[TimestampTypeDef]
1102
1096
  TimeRangeUpperBound: NotRequired[TimestampTypeDef]
1103
1097
  BackupType: NotRequired[BackupTypeFilterType]
1104
1098
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1105
1099
 
1106
- class ListTablesInputListTablesPaginateTypeDef(TypedDict):
1100
+ class ListTablesInputPaginateTypeDef(TypedDict):
1107
1101
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1108
1102
 
1109
- class ListTagsOfResourceInputListTagsOfResourcePaginateTypeDef(TypedDict):
1103
+ class ListTagsOfResourceInputPaginateTypeDef(TypedDict):
1110
1104
  ResourceArn: str
1111
1105
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1112
1106
 
@@ -1114,6 +1108,8 @@ class UpdateContinuousBackupsInputRequestTypeDef(TypedDict):
1114
1108
  TableName: str
1115
1109
  PointInTimeRecoverySpecification: PointInTimeRecoverySpecificationTypeDef
1116
1110
 
1111
+ ProjectionUnionTypeDef = Union[ProjectionTypeDef, ProjectionOutputTypeDef]
1112
+
1117
1113
  class UpdateTimeToLiveInputRequestTypeDef(TypedDict):
1118
1114
  TableName: str
1119
1115
  TimeToLiveSpecification: TimeToLiveSpecificationTypeDef
@@ -1551,9 +1547,10 @@ class SourceTableFeatureDetailsTypeDef(TypedDict):
1551
1547
  TimeToLiveDescription: NotRequired[TimeToLiveDescriptionTypeDef]
1552
1548
  SSEDescription: NotRequired[SSEDescriptionTypeDef]
1553
1549
 
1554
- GlobalSecondaryIndexUnionTypeDef = Union[
1555
- GlobalSecondaryIndexTypeDef, GlobalSecondaryIndexOutputTypeDef
1556
- ]
1550
+ class ListImportsOutputTypeDef(TypedDict):
1551
+ ImportSummaryList: List[ImportSummaryTypeDef]
1552
+ ResponseMetadata: ResponseMetadataTypeDef
1553
+ NextToken: NotRequired[str]
1557
1554
 
1558
1555
  class CreateGlobalSecondaryIndexActionTypeDef(TypedDict):
1559
1556
  IndexName: str
@@ -1563,15 +1560,18 @@ class CreateGlobalSecondaryIndexActionTypeDef(TypedDict):
1563
1560
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1564
1561
  WarmThroughput: NotRequired[WarmThroughputTypeDef]
1565
1562
 
1566
- class LocalSecondaryIndexTypeDef(TypedDict):
1563
+ class GlobalSecondaryIndexTypeDef(TypedDict):
1567
1564
  IndexName: str
1568
1565
  KeySchema: Sequence[KeySchemaElementTypeDef]
1569
1566
  Projection: ProjectionUnionTypeDef
1567
+ ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
1568
+ OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1569
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
1570
1570
 
1571
- class ListImportsOutputTypeDef(TypedDict):
1572
- ImportSummaryList: List[ImportSummaryTypeDef]
1573
- ResponseMetadata: ResponseMetadataTypeDef
1574
- NextToken: NotRequired[str]
1571
+ class LocalSecondaryIndexTypeDef(TypedDict):
1572
+ IndexName: str
1573
+ KeySchema: Sequence[KeySchemaElementTypeDef]
1574
+ Projection: ProjectionUnionTypeDef
1575
1575
 
1576
1576
  class BatchExecuteStatementOutputTypeDef(TypedDict):
1577
1577
  Responses: List[BatchStatementResponseTypeDef]
@@ -1588,7 +1588,7 @@ class BatchExecuteStatementInputRequestTypeDef(TypedDict):
1588
1588
  Statements: Sequence[BatchStatementRequestTypeDef]
1589
1589
  ReturnConsumedCapacity: NotRequired[ReturnConsumedCapacityType]
1590
1590
 
1591
- class QueryInputQueryPaginateTypeDef(TypedDict):
1591
+ class QueryInputPaginateTypeDef(TypedDict):
1592
1592
  TableName: str
1593
1593
  IndexName: NotRequired[str]
1594
1594
  Select: NotRequired[SelectType]
@@ -1625,15 +1625,13 @@ class QueryInputRequestTypeDef(TypedDict):
1625
1625
  ExpressionAttributeNames: NotRequired[Mapping[str, str]]
1626
1626
  ExpressionAttributeValues: NotRequired[Mapping[str, UniversalAttributeValueTypeDef]]
1627
1627
 
1628
- class ScanInputRequestTypeDef(TypedDict):
1628
+ class ScanInputPaginateTypeDef(TypedDict):
1629
1629
  TableName: str
1630
1630
  IndexName: NotRequired[str]
1631
1631
  AttributesToGet: NotRequired[Sequence[str]]
1632
- Limit: NotRequired[int]
1633
1632
  Select: NotRequired[SelectType]
1634
1633
  ScanFilter: NotRequired[Mapping[str, ConditionTypeDef]]
1635
1634
  ConditionalOperator: NotRequired[ConditionalOperatorType]
1636
- ExclusiveStartKey: NotRequired[Mapping[str, UniversalAttributeValueTypeDef]]
1637
1635
  ReturnConsumedCapacity: NotRequired[ReturnConsumedCapacityType]
1638
1636
  TotalSegments: NotRequired[int]
1639
1637
  Segment: NotRequired[int]
@@ -1642,14 +1640,17 @@ class ScanInputRequestTypeDef(TypedDict):
1642
1640
  ExpressionAttributeNames: NotRequired[Mapping[str, str]]
1643
1641
  ExpressionAttributeValues: NotRequired[Mapping[str, UniversalAttributeValueTypeDef]]
1644
1642
  ConsistentRead: NotRequired[bool]
1643
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1645
1644
 
1646
- class ScanInputScanPaginateTypeDef(TypedDict):
1645
+ class ScanInputRequestTypeDef(TypedDict):
1647
1646
  TableName: str
1648
1647
  IndexName: NotRequired[str]
1649
1648
  AttributesToGet: NotRequired[Sequence[str]]
1649
+ Limit: NotRequired[int]
1650
1650
  Select: NotRequired[SelectType]
1651
1651
  ScanFilter: NotRequired[Mapping[str, ConditionTypeDef]]
1652
1652
  ConditionalOperator: NotRequired[ConditionalOperatorType]
1653
+ ExclusiveStartKey: NotRequired[Mapping[str, UniversalAttributeValueTypeDef]]
1653
1654
  ReturnConsumedCapacity: NotRequired[ReturnConsumedCapacityType]
1654
1655
  TotalSegments: NotRequired[int]
1655
1656
  Segment: NotRequired[int]
@@ -1658,7 +1659,6 @@ class ScanInputScanPaginateTypeDef(TypedDict):
1658
1659
  ExpressionAttributeNames: NotRequired[Mapping[str, str]]
1659
1660
  ExpressionAttributeValues: NotRequired[Mapping[str, UniversalAttributeValueTypeDef]]
1660
1661
  ConsistentRead: NotRequired[bool]
1661
- PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1662
1662
 
1663
1663
  DeleteRequestUnionTypeDef = Union[DeleteRequestTypeDef, DeleteRequestOutputTypeDef]
1664
1664
 
@@ -1805,6 +1805,7 @@ class TableDescriptionTypeDef(TypedDict):
1805
1805
  DeletionProtectionEnabled: NotRequired[bool]
1806
1806
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1807
1807
  WarmThroughput: NotRequired[TableWarmThroughputDescriptionTypeDef]
1808
+ MultiRegionConsistency: NotRequired[MultiRegionConsistencyType]
1808
1809
 
1809
1810
  class ImportTableDescriptionTypeDef(TypedDict):
1810
1811
  ImportArn: NotRequired[str]
@@ -1832,6 +1833,11 @@ class BackupDescriptionTypeDef(TypedDict):
1832
1833
  SourceTableDetails: NotRequired[SourceTableDetailsTypeDef]
1833
1834
  SourceTableFeatureDetails: NotRequired[SourceTableFeatureDetailsTypeDef]
1834
1835
 
1836
+ class GlobalSecondaryIndexUpdateTypeDef(TypedDict):
1837
+ Update: NotRequired[UpdateGlobalSecondaryIndexActionTypeDef]
1838
+ Create: NotRequired[CreateGlobalSecondaryIndexActionTypeDef]
1839
+ Delete: NotRequired[DeleteGlobalSecondaryIndexActionTypeDef]
1840
+
1835
1841
  class TableCreationParametersTypeDef(TypedDict):
1836
1842
  TableName: str
1837
1843
  AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
@@ -1840,19 +1846,14 @@ class TableCreationParametersTypeDef(TypedDict):
1840
1846
  ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
1841
1847
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1842
1848
  SSESpecification: NotRequired[SSESpecificationTypeDef]
1843
- GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
1844
-
1845
- class GlobalSecondaryIndexUpdateTypeDef(TypedDict):
1846
- Update: NotRequired[UpdateGlobalSecondaryIndexActionTypeDef]
1847
- Create: NotRequired[CreateGlobalSecondaryIndexActionTypeDef]
1848
- Delete: NotRequired[DeleteGlobalSecondaryIndexActionTypeDef]
1849
+ GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexTypeDef]]
1849
1850
 
1850
1851
  class CreateTableInputRequestTypeDef(TypedDict):
1851
1852
  AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
1852
1853
  TableName: str
1853
1854
  KeySchema: Sequence[KeySchemaElementTypeDef]
1854
1855
  LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
1855
- GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
1856
+ GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexTypeDef]]
1856
1857
  BillingMode: NotRequired[BillingModeType]
1857
1858
  ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
1858
1859
  StreamSpecification: NotRequired[StreamSpecificationTypeDef]
@@ -2040,14 +2041,6 @@ class DescribeBackupOutputTypeDef(TypedDict):
2040
2041
  BackupDescription: BackupDescriptionTypeDef
2041
2042
  ResponseMetadata: ResponseMetadataTypeDef
2042
2043
 
2043
- class ImportTableInputRequestTypeDef(TypedDict):
2044
- S3BucketSource: S3BucketSourceTypeDef
2045
- InputFormat: InputFormatType
2046
- TableCreationParameters: TableCreationParametersTypeDef
2047
- ClientToken: NotRequired[str]
2048
- InputFormatOptions: NotRequired[InputFormatOptionsTypeDef]
2049
- InputCompressionType: NotRequired[InputCompressionTypeType]
2050
-
2051
2044
  class UpdateTableInputRequestTypeDef(TypedDict):
2052
2045
  TableName: str
2053
2046
  AttributeDefinitions: NotRequired[Sequence[AttributeDefinitionTypeDef]]
@@ -2059,6 +2052,7 @@ class UpdateTableInputRequestTypeDef(TypedDict):
2059
2052
  ReplicaUpdates: NotRequired[Sequence[ReplicationGroupUpdateTypeDef]]
2060
2053
  TableClass: NotRequired[TableClassType]
2061
2054
  DeletionProtectionEnabled: NotRequired[bool]
2055
+ MultiRegionConsistency: NotRequired[MultiRegionConsistencyType]
2062
2056
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
2063
2057
  WarmThroughput: NotRequired[WarmThroughputTypeDef]
2064
2058
 
@@ -2072,9 +2066,18 @@ class UpdateTableInputTableUpdateTypeDef(TypedDict):
2072
2066
  ReplicaUpdates: NotRequired[Sequence[ReplicationGroupUpdateTypeDef]]
2073
2067
  TableClass: NotRequired[TableClassType]
2074
2068
  DeletionProtectionEnabled: NotRequired[bool]
2069
+ MultiRegionConsistency: NotRequired[MultiRegionConsistencyType]
2075
2070
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
2076
2071
  WarmThroughput: NotRequired[WarmThroughputTypeDef]
2077
2072
 
2073
+ class ImportTableInputRequestTypeDef(TypedDict):
2074
+ S3BucketSource: S3BucketSourceTypeDef
2075
+ InputFormat: InputFormatType
2076
+ TableCreationParameters: TableCreationParametersTypeDef
2077
+ ClientToken: NotRequired[str]
2078
+ InputFormatOptions: NotRequired[InputFormatOptionsTypeDef]
2079
+ InputCompressionType: NotRequired[InputCompressionTypeType]
2080
+
2078
2081
  WriteRequestUnionTypeDef = Union[WriteRequestTypeDef, WriteRequestOutputTypeDef]
2079
2082
 
2080
2083
  class BatchWriteItemInputServiceResourceBatchWriteItemTypeDef(TypedDict):
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Source of truth for version.
3
3
 
4
- Copyright 2024 Vlad Emelianov
4
+ Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.35.71"
7
+ __version__ = "1.35.93"
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for dynamodb service client waiters.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/)
5
5
 
6
6
  Usage::
7
7
 
@@ -21,17 +21,16 @@ Usage::
21
21
  table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
22
22
  ```
23
23
 
24
- Copyright 2024 Vlad Emelianov
24
+ Copyright 2025 Vlad Emelianov
25
25
  """
26
26
 
27
+ from __future__ import annotations
28
+
27
29
  import sys
28
30
 
29
31
  from botocore.waiter import Waiter
30
32
 
31
- from .type_defs import (
32
- DescribeTableInputTableExistsWaitTypeDef,
33
- DescribeTableInputTableNotExistsWaitTypeDef,
34
- )
33
+ from .type_defs import DescribeTableInputWaitTypeDef
35
34
 
36
35
  if sys.version_info >= (3, 12):
37
36
  from typing import Unpack
@@ -48,7 +47,9 @@ class TableExistsWaiter(Waiter):
48
47
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/#tableexistswaiter)
49
48
  """
50
49
 
51
- def wait(self, **kwargs: Unpack[DescribeTableInputTableExistsWaitTypeDef]) -> None:
50
+ def wait( # type: ignore[override]
51
+ self, **kwargs: Unpack[DescribeTableInputWaitTypeDef]
52
+ ) -> None:
52
53
  """
53
54
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/TableExists.html#DynamoDB.Waiter.TableExists.wait)
54
55
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/#tableexistswaiter)
@@ -61,7 +62,9 @@ class TableNotExistsWaiter(Waiter):
61
62
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/#tablenotexistswaiter)
62
63
  """
63
64
 
64
- def wait(self, **kwargs: Unpack[DescribeTableInputTableNotExistsWaitTypeDef]) -> None:
65
+ def wait( # type: ignore[override]
66
+ self, **kwargs: Unpack[DescribeTableInputWaitTypeDef]
67
+ ) -> None:
65
68
  """
66
69
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/TableNotExists.html#DynamoDB.Waiter.TableNotExists.wait)
67
70
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/#tablenotexistswaiter)
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for dynamodb service client waiters.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/)
5
5
 
6
6
  Usage::
7
7
 
@@ -21,17 +21,16 @@ Usage::
21
21
  table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
22
22
  ```
23
23
 
24
- Copyright 2024 Vlad Emelianov
24
+ Copyright 2025 Vlad Emelianov
25
25
  """
26
26
 
27
+ from __future__ import annotations
28
+
27
29
  import sys
28
30
 
29
31
  from botocore.waiter import Waiter
30
32
 
31
- from .type_defs import (
32
- DescribeTableInputTableExistsWaitTypeDef,
33
- DescribeTableInputTableNotExistsWaitTypeDef,
34
- )
33
+ from .type_defs import DescribeTableInputWaitTypeDef
35
34
 
36
35
  if sys.version_info >= (3, 12):
37
36
  from typing import Unpack
@@ -45,7 +44,9 @@ class TableExistsWaiter(Waiter):
45
44
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/TableExists.html#DynamoDB.Waiter.TableExists)
46
45
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/#tableexistswaiter)
47
46
  """
48
- def wait(self, **kwargs: Unpack[DescribeTableInputTableExistsWaitTypeDef]) -> None:
47
+ def wait( # type: ignore[override]
48
+ self, **kwargs: Unpack[DescribeTableInputWaitTypeDef]
49
+ ) -> None:
49
50
  """
50
51
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/TableExists.html#DynamoDB.Waiter.TableExists.wait)
51
52
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/#tableexistswaiter)
@@ -56,7 +57,9 @@ class TableNotExistsWaiter(Waiter):
56
57
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/TableNotExists.html#DynamoDB.Waiter.TableNotExists)
57
58
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/#tablenotexistswaiter)
58
59
  """
59
- def wait(self, **kwargs: Unpack[DescribeTableInputTableNotExistsWaitTypeDef]) -> None:
60
+ def wait( # type: ignore[override]
61
+ self, **kwargs: Unpack[DescribeTableInputWaitTypeDef]
62
+ ) -> None:
60
63
  """
61
64
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/waiter/TableNotExists.html#DynamoDB.Waiter.TableNotExists.wait)
62
65
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/waiters/#tablenotexistswaiter)
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 Vlad Emelianov
3
+ Copyright (c) 2025 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,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: types-boto3-dynamodb
3
- Version: 1.35.71
4
- Summary: Type annotations for boto3 DynamoDB 1.35.71 service generated with mypy-boto3-builder 8.4.1
3
+ Version: 1.35.93
4
+ Summary: Type annotations for boto3 DynamoDB 1.35.93 service generated with mypy-boto3-builder 8.8.0
5
5
  Home-page: https://github.com/youtype/mypy_boto3_builder
6
6
  Author: Vlad Emelianov
7
7
  Author-email: vlad.emelianov.nz@gmail.com
@@ -9,7 +9,7 @@ License: MIT License
9
9
  Project-URL: Documentation, https://youtype.github.io/types_boto3_docs/types_boto3_dynamodb/
10
10
  Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
11
11
  Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
12
- Keywords: boto3 dynamodb type-annotations botocore mypy typeshed autocomplete
12
+ Keywords: boto3 dynamodb boto3-stubs type-annotations mypy typeshed autocomplete
13
13
  Classifier: Development Status :: 5 - Production/Stable
14
14
  Classifier: Intended Audience :: Developers
15
15
  Classifier: Environment :: Console
@@ -30,7 +30,7 @@ Classifier: Typing :: Stubs Only
30
30
  Requires-Python: >=3.8
31
31
  Description-Content-Type: text/markdown
32
32
  License-File: LICENSE
33
- Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
33
+ Requires-Dist: typing-extensions; python_version < "3.12"
34
34
 
35
35
  <a id="types-boto3-dynamodb"></a>
36
36
 
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
43
43
 
44
44
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
45
45
 
46
- Type annotations for [boto3 DynamoDB 1.35.71](https://pypi.org/project/boto3/)
46
+ Type annotations for [boto3 DynamoDB 1.35.93](https://pypi.org/project/boto3/)
47
47
  compatible with [VSCode](https://code.visualstudio.com/),
48
48
  [PyCharm](https://www.jetbrains.com/pycharm/),
49
49
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -51,8 +51,8 @@ compatible with [VSCode](https://code.visualstudio.com/),
51
51
  [mypy](https://github.com/python/mypy),
52
52
  [pyright](https://github.com/microsoft/pyright) and other tools.
53
53
 
54
- Generated by
55
- [mypy-boto3-builder 8.4.1](https://github.com/youtype/mypy_boto3_builder).
54
+ Generated with
55
+ [mypy-boto3-builder 8.8.0](https://github.com/youtype/mypy_boto3_builder).
56
56
 
57
57
  More information can be found on
58
58
  [types-boto3](https://pypi.org/project/types-boto3/) page and in
@@ -60,10 +60,11 @@ More information can be found on
60
60
 
61
61
  See how it helps you find and fix potential bugs:
62
62
 
63
- ![boto3-stubs demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)
63
+ ![types-boto3 demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)
64
64
 
65
65
  - [types-boto3-dynamodb](#types-boto3-dynamodb)
66
66
  - [How to install](#how-to-install)
67
+ - [Generate locally (recommended)](<#generate-locally-(recommended)>)
67
68
  - [VSCode extension](#vscode-extension)
68
69
  - [From PyPI with pip](#from-pypi-with-pip)
69
70
  - [How to uninstall](#how-to-uninstall)
@@ -75,6 +76,7 @@ See how it helps you find and fix potential bugs:
75
76
  - [Other IDEs](#other-ides)
76
77
  - [mypy](#mypy)
77
78
  - [pyright](#pyright)
79
+ - [Pylint compatibility](#pylint-compatibility)
78
80
  - [Explicit type annotations](#explicit-type-annotations)
79
81
  - [Client annotations](#client-annotations)
80
82
  - [Paginators annotations](#paginators-annotations)
@@ -97,6 +99,21 @@ See how it helps you find and fix potential bugs:
97
99
 
98
100
  ## How to install
99
101
 
102
+ <a id="generate-locally-(recommended)"></a>
103
+
104
+ ### Generate locally (recommended)
105
+
106
+ You can generate type annotations for `boto3` package locally with
107
+ `mypy_boto3_builder`. Use
108
+ [uv](https://docs.astral.sh/uv/getting-started/installation/) for build
109
+ isolation.
110
+
111
+ 1. Run mypy-boto3-builder in your package root directory:
112
+ `uvx --with 'boto3==1.35.93' mypy_boto3_builder`
113
+ 2. Select `boto3` AWS SDK.
114
+ 3. Add `DynamoDB` service.
115
+ 4. Use provided commands to install generated packages.
116
+
100
117
  <a id="vscode-extension"></a>
101
118
 
102
119
  ### VSCode extension
@@ -117,12 +134,10 @@ Install `types-boto3` for `DynamoDB` service.
117
134
  # install with boto3 type annotations
118
135
  python -m pip install 'types-boto3[dynamodb]'
119
136
 
120
-
121
137
  # Lite version does not provide session.client/resource overloads
122
138
  # it is more RAM-friendly, but requires explicit type annotations
123
139
  python -m pip install 'types-boto3-lite[dynamodb]'
124
140
 
125
-
126
141
  # standalone installation
127
142
  python -m pip install types-boto3-dynamodb
128
143
  ```
@@ -271,6 +286,31 @@ Optionally, you can install `types-boto3` to `typings` directory.
271
286
  Type checking should now work. No explicit type annotations required, write
272
287
  your `boto3` code as usual.
273
288
 
289
+ <a id="pylint-compatibility"></a>
290
+
291
+ ### Pylint compatibility
292
+
293
+ It is totally safe to use `TYPE_CHECKING` flag in order to avoid
294
+ `types-boto3-dynamodb` dependency in production. However, there is an issue in
295
+ `pylint` that it complains about undefined variables. To fix it, set all types
296
+ to `object` in non-`TYPE_CHECKING` mode.
297
+
298
+ ```python
299
+ from typing import TYPE_CHECKING
300
+
301
+ if TYPE_CHECKING:
302
+ from types_boto3_ec2 import EC2Client, EC2ServiceResource
303
+ from types_boto3_ec2.waiters import BundleTaskCompleteWaiter
304
+ from types_boto3_ec2.paginators import DescribeVolumesPaginator
305
+ else:
306
+ EC2Client = object
307
+ EC2ServiceResource = object
308
+ BundleTaskCompleteWaiter = object
309
+ DescribeVolumesPaginator = object
310
+
311
+ ...
312
+ ```
313
+
274
314
  <a id="explicit-type-annotations"></a>
275
315
 
276
316
  ## Explicit type annotations
@@ -0,0 +1,22 @@
1
+ types_boto3_dynamodb/__init__.py,sha256=0SRg0AlGCqbLn2XPRyU7PQ8xSRm_S4xdR-RF0YDw2v8,2009
2
+ types_boto3_dynamodb/__init__.pyi,sha256=yNdirDOtDdYpAQeT8MLF-7j9hnBdPO3pcwBuhz_3xCc,2006
3
+ types_boto3_dynamodb/__main__.py,sha256=52QWIYtkQUP2ZrstXuM57H-UxTbAUrSDgruAX2b-FKY,988
4
+ types_boto3_dynamodb/client.py,sha256=Ac6rm-XlGFO0Az1LDrwBAiT9R2C0N470H4NF2w6qu5I,43601
5
+ types_boto3_dynamodb/client.pyi,sha256=7DrstvdlU3MdSciXWNqUqun3zW0TvN7LvhbqgmHuCjA,43598
6
+ types_boto3_dynamodb/literals.py,sha256=mBZx8LXd5cv7t3IKyt3n0jq5kJvLBTjhEFUysToF8v0,14653
7
+ types_boto3_dynamodb/literals.pyi,sha256=YT6EmHzvPb8iCyTGEYfEcmBKdYYT2_gCBpluyffqT-0,14651
8
+ types_boto3_dynamodb/paginator.py,sha256=uo4S2wUf5biMAkfacXgyBlCqh3lVahWKjZmBqJXxxmU,6942
9
+ types_boto3_dynamodb/paginator.pyi,sha256=D9-7m1bOKaWXTrO7V-Ewj2BHS1YQK61Vk3ReIV_Al5A,6926
10
+ types_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ types_boto3_dynamodb/service_resource.py,sha256=9MzV99fxbMB1rCmk1bLs_nei0M3IaYFDTwZdwWMgH-o,17264
12
+ types_boto3_dynamodb/service_resource.pyi,sha256=KsCHiUJAm4YKNsK0L4Qd8AUXv1jFbjCKwVtX8vH2lmA,17257
13
+ types_boto3_dynamodb/type_defs.py,sha256=IZBh-jxffmAEkOZm1hqybM7uYhg9eFlHvFagKkdMcpQ,84816
14
+ types_boto3_dynamodb/type_defs.pyi,sha256=IkzZePAKrSgAyAFnsOZXVE4YCRd21bwmcByV1vm-HVY,84540
15
+ types_boto3_dynamodb/version.py,sha256=n6wyMBvI3Tp0INYol4fUJ84y0BqM9ti-SkLRGfsif5s,93
16
+ types_boto3_dynamodb/waiter.py,sha256=WS11PiL2etpgGdN5ZUfNnZk9iBtYAYnsHUILwNoVsw0,2601
17
+ types_boto3_dynamodb/waiter.pyi,sha256=HFT58z4iZ4WC-Zh9k5Ez-oulcykQmn60K1cBNqG11kk,2596
18
+ types_boto3_dynamodb-1.35.93.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
19
+ types_boto3_dynamodb-1.35.93.dist-info/METADATA,sha256=fko6V6H3fibVSLE7kMdKlfCWfvqf9q5y4IDP3sXhS38,17503
20
+ types_boto3_dynamodb-1.35.93.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
21
+ types_boto3_dynamodb-1.35.93.dist-info/top_level.txt,sha256=qetKI9-H-rMGIOB1IBzTvryBK-GlE9YjkQQwaB1GpB8,21
22
+ types_boto3_dynamodb-1.35.93.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (75.7.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,22 +0,0 @@
1
- types_boto3_dynamodb/__init__.py,sha256=cxAM03dGq3WmH2lshOuhmrIxu2sx7hRkYr8c1cC6NC4,1891
2
- types_boto3_dynamodb/__init__.pyi,sha256=0bLc7qg8xn1Q9IXOm46FNNKrCbFyBoLsySfz6i53J3k,1889
3
- types_boto3_dynamodb/__main__.py,sha256=sbnR8zYQXVGP9HZtA0oeVMbTkzLg5x5eGTRRHaU9zGs,954
4
- types_boto3_dynamodb/client.py,sha256=ZR3A4gHzFwJF8DrX4mLgb8Myr0KJjFys6t7jgduNc3c,43317
5
- types_boto3_dynamodb/client.pyi,sha256=rzsDcrfvzWtdQoSmaVOyxIEkza8UG0KNTS1RHIU5SAQ,43313
6
- types_boto3_dynamodb/literals.py,sha256=HY6UMH8Zwd2zpZfJT3zdnnWH8xT2rDdEHCBHVO9uesI,14385
7
- types_boto3_dynamodb/literals.pyi,sha256=c3ELaDGW9MkcooowRAH7lOO_bPc_jkoWfUmEiG1WHNI,14383
8
- types_boto3_dynamodb/paginator.py,sha256=tSmJSyrol6n8KYvxyUhyd1jRBBHhKJkY6BtzwJ92Th0,6250
9
- types_boto3_dynamodb/paginator.pyi,sha256=4OZFjEVD0SMR9BWb9rQvL58K8B_DglaNt7X1MeCrOUA,6237
10
- types_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- types_boto3_dynamodb/service_resource.py,sha256=yrwBmG8Z7jHw0BIJsTzak0jlb9GRnon0FiKtPzRPTEo,16983
12
- types_boto3_dynamodb/service_resource.pyi,sha256=XRVHHnAYBb6LdgZfMaLMvVZNyjZ4TxCxPi_WK2_Cns0,16976
13
- types_boto3_dynamodb/type_defs.py,sha256=J5esN5rZTaQzzDSj5rDO7gYdzMp_HsX2EXNHiQP0Qk0,84789
14
- types_boto3_dynamodb/type_defs.pyi,sha256=ZKhwWfo8BhqDMBdqac8uyCO4e3uWSNN8gVvJmAnM5_w,84511
15
- types_boto3_dynamodb/version.py,sha256=eIS36a5iw2-mD_eS7zeepUtx_w_DQOn6RiPaBDeB7EQ,93
16
- types_boto3_dynamodb/waiter.py,sha256=TwX1GF5pQAUIVcPWggpi7m-AHPxho6vRJJjiSK-zdb4,2584
17
- types_boto3_dynamodb/waiter.pyi,sha256=f-3Eu0L-ysv0jbrrJNKkuJbmSguRZW3TfwLvAHspHPY,2579
18
- types_boto3_dynamodb-1.35.71.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
19
- types_boto3_dynamodb-1.35.71.dist-info/METADATA,sha256=DiFxmAjb5kMBVndfKVE876l5Cw3PPhKiVbXjjgM_iXQ,16172
20
- types_boto3_dynamodb-1.35.71.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
21
- types_boto3_dynamodb-1.35.71.dist-info/top_level.txt,sha256=qetKI9-H-rMGIOB1IBzTvryBK-GlE9YjkQQwaB1GpB8,21
22
- types_boto3_dynamodb-1.35.71.dist-info/RECORD,,