mypy-boto3-dynamodb 1.35.54__py3-none-any.whl → 1.35.60__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.
@@ -10,9 +10,9 @@ def print_info() -> None:
10
10
  Print package info to stdout.
11
11
  """
12
12
  print(
13
- "Type annotations for boto3.DynamoDB 1.35.54\n"
14
- "Version: 1.35.54\n"
15
- "Builder version: 8.2.0\n"
13
+ "Type annotations for boto3.DynamoDB 1.35.60\n"
14
+ "Version: 1.35.60\n"
15
+ "Builder version: 8.2.1\n"
16
16
  "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb//\n"
17
17
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB\n"
18
18
  "Other services: https://pypi.org/project/boto3-stubs/\n"
@@ -24,7 +24,7 @@ def print_version() -> None:
24
24
  """
25
25
  Print package version to stdout.
26
26
  """
27
- print("1.35.54")
27
+ print("1.35.60")
28
28
 
29
29
 
30
30
  def main() -> None:
@@ -208,6 +208,7 @@ ServiceName = Literal[
208
208
  "bedrock-agent",
209
209
  "bedrock-agent-runtime",
210
210
  "bedrock-runtime",
211
+ "billing",
211
212
  "billingconductor",
212
213
  "braket",
213
214
  "budgets",
@@ -206,6 +206,7 @@ ServiceName = Literal[
206
206
  "bedrock-agent",
207
207
  "bedrock-agent-runtime",
208
208
  "bedrock-runtime",
209
+ "billing",
209
210
  "billingconductor",
210
211
  "braket",
211
212
  "budgets",
@@ -58,6 +58,7 @@ from .type_defs import (
58
58
  SSEDescriptionTypeDef,
59
59
  StreamSpecificationTypeDef,
60
60
  TableClassSummaryTypeDef,
61
+ TableWarmThroughputDescriptionTypeDef,
61
62
  UpdateItemInputTableUpdateItemTypeDef,
62
63
  UpdateItemOutputTableTypeDef,
63
64
  UpdateTableInputTableUpdateTypeDef,
@@ -159,6 +160,7 @@ class Table(ServiceResource):
159
160
  table_class_summary: TableClassSummaryTypeDef
160
161
  deletion_protection_enabled: bool
161
162
  on_demand_throughput: OnDemandThroughputTypeDef
163
+ warm_throughput: TableWarmThroughputDescriptionTypeDef
162
164
  name: str
163
165
  meta: "DynamoDBResourceMeta" # type: ignore
164
166
 
@@ -58,6 +58,7 @@ from .type_defs import (
58
58
  SSEDescriptionTypeDef,
59
59
  StreamSpecificationTypeDef,
60
60
  TableClassSummaryTypeDef,
61
+ TableWarmThroughputDescriptionTypeDef,
61
62
  UpdateItemInputTableUpdateItemTypeDef,
62
63
  UpdateItemOutputTableTypeDef,
63
64
  UpdateTableInputTableUpdateTypeDef,
@@ -155,6 +156,7 @@ class Table(ServiceResource):
155
156
  table_class_summary: TableClassSummaryTypeDef
156
157
  deletion_protection_enabled: bool
157
158
  on_demand_throughput: OnDemandThroughputTypeDef
159
+ warm_throughput: TableWarmThroughputDescriptionTypeDef
158
160
  name: str
159
161
  meta: "DynamoDBResourceMeta" # type: ignore
160
162
 
@@ -191,6 +191,7 @@ __all__ = (
191
191
  "GlobalSecondaryIndexTypeDef",
192
192
  "GlobalSecondaryIndexUnionTypeDef",
193
193
  "GlobalSecondaryIndexUpdateTypeDef",
194
+ "GlobalSecondaryIndexWarmThroughputDescriptionTypeDef",
194
195
  "GlobalTableDescriptionTypeDef",
195
196
  "GlobalTableGlobalSecondaryIndexSettingsUpdateTypeDef",
196
197
  "GlobalTableTypeDef",
@@ -304,6 +305,7 @@ __all__ = (
304
305
  "TableCreationParametersOutputTypeDef",
305
306
  "TableCreationParametersTypeDef",
306
307
  "TableDescriptionTypeDef",
308
+ "TableWarmThroughputDescriptionTypeDef",
307
309
  "TagResourceInputRequestTypeDef",
308
310
  "TagTypeDef",
309
311
  "TimeToLiveDescriptionTypeDef",
@@ -343,6 +345,7 @@ __all__ = (
343
345
  "UpdateTimeToLiveOutputTypeDef",
344
346
  "UpdateTypeDef",
345
347
  "WaiterConfigTypeDef",
348
+ "WarmThroughputTypeDef",
346
349
  "WriteRequestOutputTypeDef",
347
350
  "WriteRequestServiceResourceOutputTypeDef",
348
351
  "WriteRequestServiceResourceTypeDef",
@@ -485,6 +488,11 @@ class ProvisionedThroughputTypeDef(TypedDict):
485
488
  WriteCapacityUnits: int
486
489
 
487
490
 
491
+ class WarmThroughputTypeDef(TypedDict):
492
+ ReadUnitsPerSecond: NotRequired[int]
493
+ WriteUnitsPerSecond: NotRequired[int]
494
+
495
+
488
496
  ReplicaTypeDef = TypedDict(
489
497
  "ReplicaTypeDef",
490
498
  {
@@ -659,6 +667,12 @@ class GetResourcePolicyInputRequestTypeDef(TypedDict):
659
667
  ResourceArn: str
660
668
 
661
669
 
670
+ class GlobalSecondaryIndexWarmThroughputDescriptionTypeDef(TypedDict):
671
+ ReadUnitsPerSecond: NotRequired[int]
672
+ WriteUnitsPerSecond: NotRequired[int]
673
+ Status: NotRequired[IndexStatusType]
674
+
675
+
662
676
  class ProjectionOutputTypeDef(TypedDict):
663
677
  ProjectionType: NotRequired[ProjectionTypeType]
664
678
  NonKeyAttributes: NotRequired[List[str]]
@@ -743,6 +757,12 @@ class TableClassSummaryTypeDef(TypedDict):
743
757
  LastUpdateDateTime: NotRequired[datetime]
744
758
 
745
759
 
760
+ class TableWarmThroughputDescriptionTypeDef(TypedDict):
761
+ ReadUnitsPerSecond: NotRequired[int]
762
+ WriteUnitsPerSecond: NotRequired[int]
763
+ Status: NotRequired[TableStatusType]
764
+
765
+
746
766
  class RestoreSummaryTypeDef(TypedDict):
747
767
  RestoreDateTime: datetime
748
768
  RestoreInProgress: bool
@@ -1003,6 +1023,7 @@ class UpdateGlobalSecondaryIndexActionTypeDef(TypedDict):
1003
1023
  IndexName: str
1004
1024
  ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
1005
1025
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1026
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
1006
1027
 
1007
1028
 
1008
1029
  class CreateGlobalTableInputRequestTypeDef(TypedDict):
@@ -1015,12 +1036,6 @@ class GlobalTableTypeDef(TypedDict):
1015
1036
  ReplicationGroup: NotRequired[List[ReplicaTypeDef]]
1016
1037
 
1017
1038
 
1018
- class ReplicaGlobalSecondaryIndexDescriptionTypeDef(TypedDict):
1019
- IndexName: NotRequired[str]
1020
- ProvisionedThroughputOverride: NotRequired[ProvisionedThroughputOverrideTypeDef]
1021
- OnDemandThroughputOverride: NotRequired[OnDemandThroughputOverrideTypeDef]
1022
-
1023
-
1024
1039
  class ReplicaGlobalSecondaryIndexTypeDef(TypedDict):
1025
1040
  IndexName: str
1026
1041
  ProvisionedThroughputOverride: NotRequired[ProvisionedThroughputOverrideTypeDef]
@@ -1145,6 +1160,13 @@ class ListBackupsInputRequestTypeDef(TypedDict):
1145
1160
  BackupType: NotRequired[BackupTypeFilterType]
1146
1161
 
1147
1162
 
1163
+ class ReplicaGlobalSecondaryIndexDescriptionTypeDef(TypedDict):
1164
+ IndexName: NotRequired[str]
1165
+ ProvisionedThroughputOverride: NotRequired[ProvisionedThroughputOverrideTypeDef]
1166
+ OnDemandThroughputOverride: NotRequired[OnDemandThroughputOverrideTypeDef]
1167
+ WarmThroughput: NotRequired[GlobalSecondaryIndexWarmThroughputDescriptionTypeDef]
1168
+
1169
+
1148
1170
  class GlobalSecondaryIndexInfoTypeDef(TypedDict):
1149
1171
  IndexName: NotRequired[str]
1150
1172
  KeySchema: NotRequired[List[KeySchemaElementTypeDef]]
@@ -1159,6 +1181,7 @@ class GlobalSecondaryIndexOutputTypeDef(TypedDict):
1159
1181
  Projection: ProjectionOutputTypeDef
1160
1182
  ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
1161
1183
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1184
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
1162
1185
 
1163
1186
 
1164
1187
  class LocalSecondaryIndexDescriptionTypeDef(TypedDict):
@@ -1187,6 +1210,7 @@ class GlobalSecondaryIndexDescriptionTypeDef(TypedDict):
1187
1210
  ItemCount: NotRequired[int]
1188
1211
  IndexArn: NotRequired[str]
1189
1212
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1213
+ WarmThroughput: NotRequired[GlobalSecondaryIndexWarmThroughputDescriptionTypeDef]
1190
1214
 
1191
1215
 
1192
1216
  class GlobalSecondaryIndexTypeDef(TypedDict):
@@ -1195,6 +1219,7 @@ class GlobalSecondaryIndexTypeDef(TypedDict):
1195
1219
  Projection: ProjectionTypeDef
1196
1220
  ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
1197
1221
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1222
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
1198
1223
 
1199
1224
 
1200
1225
  ProjectionUnionTypeDef = Union[ProjectionTypeDef, ProjectionOutputTypeDef]
@@ -1638,21 +1663,6 @@ class ListGlobalTablesOutputTypeDef(TypedDict):
1638
1663
  ResponseMetadata: ResponseMetadataTypeDef
1639
1664
 
1640
1665
 
1641
- ReplicaDescriptionTypeDef = TypedDict(
1642
- "ReplicaDescriptionTypeDef",
1643
- {
1644
- "RegionName": NotRequired[str],
1645
- "ReplicaStatus": NotRequired[ReplicaStatusType],
1646
- "ReplicaStatusDescription": NotRequired[str],
1647
- "ReplicaStatusPercentProgress": NotRequired[str],
1648
- "KMSMasterKeyId": NotRequired[str],
1649
- "ProvisionedThroughputOverride": NotRequired[ProvisionedThroughputOverrideTypeDef],
1650
- "OnDemandThroughputOverride": NotRequired[OnDemandThroughputOverrideTypeDef],
1651
- "GlobalSecondaryIndexes": NotRequired[List[ReplicaGlobalSecondaryIndexDescriptionTypeDef]],
1652
- "ReplicaInaccessibleDateTime": NotRequired[datetime],
1653
- "ReplicaTableClassSummary": NotRequired[TableClassSummaryTypeDef],
1654
- },
1655
- )
1656
1666
  CreateReplicationGroupMemberActionTypeDef = TypedDict(
1657
1667
  "CreateReplicationGroupMemberActionTypeDef",
1658
1668
  {
@@ -1710,6 +1720,24 @@ class ExportTableToPointInTimeInputRequestTypeDef(TypedDict):
1710
1720
  IncrementalExportSpecification: NotRequired[IncrementalExportSpecificationTypeDef]
1711
1721
 
1712
1722
 
1723
+ ReplicaDescriptionTypeDef = TypedDict(
1724
+ "ReplicaDescriptionTypeDef",
1725
+ {
1726
+ "RegionName": NotRequired[str],
1727
+ "ReplicaStatus": NotRequired[ReplicaStatusType],
1728
+ "ReplicaStatusDescription": NotRequired[str],
1729
+ "ReplicaStatusPercentProgress": NotRequired[str],
1730
+ "KMSMasterKeyId": NotRequired[str],
1731
+ "ProvisionedThroughputOverride": NotRequired[ProvisionedThroughputOverrideTypeDef],
1732
+ "OnDemandThroughputOverride": NotRequired[OnDemandThroughputOverrideTypeDef],
1733
+ "WarmThroughput": NotRequired[TableWarmThroughputDescriptionTypeDef],
1734
+ "GlobalSecondaryIndexes": NotRequired[List[ReplicaGlobalSecondaryIndexDescriptionTypeDef]],
1735
+ "ReplicaInaccessibleDateTime": NotRequired[datetime],
1736
+ "ReplicaTableClassSummary": NotRequired[TableClassSummaryTypeDef],
1737
+ },
1738
+ )
1739
+
1740
+
1713
1741
  class TableCreationParametersOutputTypeDef(TypedDict):
1714
1742
  TableName: str
1715
1743
  AttributeDefinitions: List[AttributeDefinitionTypeDef]
@@ -1740,6 +1768,7 @@ class CreateGlobalSecondaryIndexActionTypeDef(TypedDict):
1740
1768
  Projection: ProjectionUnionTypeDef
1741
1769
  ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
1742
1770
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1771
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
1743
1772
 
1744
1773
 
1745
1774
  class LocalSecondaryIndexTypeDef(TypedDict):
@@ -1973,6 +2002,12 @@ class ReplicaGlobalSecondaryIndexSettingsUpdateTypeDef(TypedDict):
1973
2002
  ProvisionedReadCapacityAutoScalingSettingsUpdate: NotRequired[AutoScalingSettingsUpdateTypeDef]
1974
2003
 
1975
2004
 
2005
+ class ReplicationGroupUpdateTypeDef(TypedDict):
2006
+ Create: NotRequired[CreateReplicationGroupMemberActionTypeDef]
2007
+ Update: NotRequired[UpdateReplicationGroupMemberActionTypeDef]
2008
+ Delete: NotRequired[DeleteReplicationGroupMemberActionTypeDef]
2009
+
2010
+
1976
2011
  class GlobalTableDescriptionTypeDef(TypedDict):
1977
2012
  ReplicationGroup: NotRequired[List[ReplicaDescriptionTypeDef]]
1978
2013
  GlobalTableArn: NotRequired[str]
@@ -2006,12 +2041,7 @@ class TableDescriptionTypeDef(TypedDict):
2006
2041
  TableClassSummary: NotRequired[TableClassSummaryTypeDef]
2007
2042
  DeletionProtectionEnabled: NotRequired[bool]
2008
2043
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
2009
-
2010
-
2011
- class ReplicationGroupUpdateTypeDef(TypedDict):
2012
- Create: NotRequired[CreateReplicationGroupMemberActionTypeDef]
2013
- Update: NotRequired[UpdateReplicationGroupMemberActionTypeDef]
2014
- Delete: NotRequired[DeleteReplicationGroupMemberActionTypeDef]
2044
+ WarmThroughput: NotRequired[TableWarmThroughputDescriptionTypeDef]
2015
2045
 
2016
2046
 
2017
2047
  class ImportTableDescriptionTypeDef(TypedDict):
@@ -2072,6 +2102,7 @@ class CreateTableInputRequestTypeDef(TypedDict):
2072
2102
  Tags: NotRequired[Sequence[TagTypeDef]]
2073
2103
  TableClass: NotRequired[TableClassType]
2074
2104
  DeletionProtectionEnabled: NotRequired[bool]
2105
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
2075
2106
  ResourcePolicy: NotRequired[str]
2076
2107
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
2077
2108
 
@@ -2089,6 +2120,7 @@ class CreateTableInputServiceResourceCreateTableTypeDef(TypedDict):
2089
2120
  Tags: NotRequired[Sequence[TagTypeDef]]
2090
2121
  TableClass: NotRequired[TableClassType]
2091
2122
  DeletionProtectionEnabled: NotRequired[bool]
2123
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
2092
2124
  ResourcePolicy: NotRequired[str]
2093
2125
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
2094
2126
 
@@ -2293,6 +2325,7 @@ class UpdateTableInputRequestTypeDef(TypedDict):
2293
2325
  TableClass: NotRequired[TableClassType]
2294
2326
  DeletionProtectionEnabled: NotRequired[bool]
2295
2327
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
2328
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
2296
2329
 
2297
2330
 
2298
2331
  class UpdateTableInputTableUpdateTypeDef(TypedDict):
@@ -2306,6 +2339,7 @@ class UpdateTableInputTableUpdateTypeDef(TypedDict):
2306
2339
  TableClass: NotRequired[TableClassType]
2307
2340
  DeletionProtectionEnabled: NotRequired[bool]
2308
2341
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
2342
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
2309
2343
 
2310
2344
 
2311
2345
  WriteRequestUnionTypeDef = Union[WriteRequestTypeDef, WriteRequestOutputTypeDef]
@@ -190,6 +190,7 @@ __all__ = (
190
190
  "GlobalSecondaryIndexTypeDef",
191
191
  "GlobalSecondaryIndexUnionTypeDef",
192
192
  "GlobalSecondaryIndexUpdateTypeDef",
193
+ "GlobalSecondaryIndexWarmThroughputDescriptionTypeDef",
193
194
  "GlobalTableDescriptionTypeDef",
194
195
  "GlobalTableGlobalSecondaryIndexSettingsUpdateTypeDef",
195
196
  "GlobalTableTypeDef",
@@ -303,6 +304,7 @@ __all__ = (
303
304
  "TableCreationParametersOutputTypeDef",
304
305
  "TableCreationParametersTypeDef",
305
306
  "TableDescriptionTypeDef",
307
+ "TableWarmThroughputDescriptionTypeDef",
306
308
  "TagResourceInputRequestTypeDef",
307
309
  "TagTypeDef",
308
310
  "TimeToLiveDescriptionTypeDef",
@@ -342,6 +344,7 @@ __all__ = (
342
344
  "UpdateTimeToLiveOutputTypeDef",
343
345
  "UpdateTypeDef",
344
346
  "WaiterConfigTypeDef",
347
+ "WarmThroughputTypeDef",
345
348
  "WriteRequestOutputTypeDef",
346
349
  "WriteRequestServiceResourceOutputTypeDef",
347
350
  "WriteRequestServiceResourceTypeDef",
@@ -465,6 +468,10 @@ class ProvisionedThroughputTypeDef(TypedDict):
465
468
  ReadCapacityUnits: int
466
469
  WriteCapacityUnits: int
467
470
 
471
+ class WarmThroughputTypeDef(TypedDict):
472
+ ReadUnitsPerSecond: NotRequired[int]
473
+ WriteUnitsPerSecond: NotRequired[int]
474
+
468
475
  ReplicaTypeDef = TypedDict(
469
476
  "ReplicaTypeDef",
470
477
  {
@@ -605,6 +612,11 @@ TimestampTypeDef = Union[datetime, str]
605
612
  class GetResourcePolicyInputRequestTypeDef(TypedDict):
606
613
  ResourceArn: str
607
614
 
615
+ class GlobalSecondaryIndexWarmThroughputDescriptionTypeDef(TypedDict):
616
+ ReadUnitsPerSecond: NotRequired[int]
617
+ WriteUnitsPerSecond: NotRequired[int]
618
+ Status: NotRequired[IndexStatusType]
619
+
608
620
  class ProjectionOutputTypeDef(TypedDict):
609
621
  ProjectionType: NotRequired[ProjectionTypeType]
610
622
  NonKeyAttributes: NotRequired[List[str]]
@@ -675,6 +687,11 @@ class TableClassSummaryTypeDef(TypedDict):
675
687
  TableClass: NotRequired[TableClassType]
676
688
  LastUpdateDateTime: NotRequired[datetime]
677
689
 
690
+ class TableWarmThroughputDescriptionTypeDef(TypedDict):
691
+ ReadUnitsPerSecond: NotRequired[int]
692
+ WriteUnitsPerSecond: NotRequired[int]
693
+ Status: NotRequired[TableStatusType]
694
+
678
695
  class RestoreSummaryTypeDef(TypedDict):
679
696
  RestoreDateTime: datetime
680
697
  RestoreInProgress: bool
@@ -894,6 +911,7 @@ class UpdateGlobalSecondaryIndexActionTypeDef(TypedDict):
894
911
  IndexName: str
895
912
  ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
896
913
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
914
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
897
915
 
898
916
  class CreateGlobalTableInputRequestTypeDef(TypedDict):
899
917
  GlobalTableName: str
@@ -903,11 +921,6 @@ class GlobalTableTypeDef(TypedDict):
903
921
  GlobalTableName: NotRequired[str]
904
922
  ReplicationGroup: NotRequired[List[ReplicaTypeDef]]
905
923
 
906
- class ReplicaGlobalSecondaryIndexDescriptionTypeDef(TypedDict):
907
- IndexName: NotRequired[str]
908
- ProvisionedThroughputOverride: NotRequired[ProvisionedThroughputOverrideTypeDef]
909
- OnDemandThroughputOverride: NotRequired[OnDemandThroughputOverrideTypeDef]
910
-
911
924
  class ReplicaGlobalSecondaryIndexTypeDef(TypedDict):
912
925
  IndexName: str
913
926
  ProvisionedThroughputOverride: NotRequired[ProvisionedThroughputOverrideTypeDef]
@@ -1014,6 +1027,12 @@ class ListBackupsInputRequestTypeDef(TypedDict):
1014
1027
  ExclusiveStartBackupArn: NotRequired[str]
1015
1028
  BackupType: NotRequired[BackupTypeFilterType]
1016
1029
 
1030
+ class ReplicaGlobalSecondaryIndexDescriptionTypeDef(TypedDict):
1031
+ IndexName: NotRequired[str]
1032
+ ProvisionedThroughputOverride: NotRequired[ProvisionedThroughputOverrideTypeDef]
1033
+ OnDemandThroughputOverride: NotRequired[OnDemandThroughputOverrideTypeDef]
1034
+ WarmThroughput: NotRequired[GlobalSecondaryIndexWarmThroughputDescriptionTypeDef]
1035
+
1017
1036
  class GlobalSecondaryIndexInfoTypeDef(TypedDict):
1018
1037
  IndexName: NotRequired[str]
1019
1038
  KeySchema: NotRequired[List[KeySchemaElementTypeDef]]
@@ -1027,6 +1046,7 @@ class GlobalSecondaryIndexOutputTypeDef(TypedDict):
1027
1046
  Projection: ProjectionOutputTypeDef
1028
1047
  ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
1029
1048
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1049
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
1030
1050
 
1031
1051
  class LocalSecondaryIndexDescriptionTypeDef(TypedDict):
1032
1052
  IndexName: NotRequired[str]
@@ -1052,6 +1072,7 @@ class GlobalSecondaryIndexDescriptionTypeDef(TypedDict):
1052
1072
  ItemCount: NotRequired[int]
1053
1073
  IndexArn: NotRequired[str]
1054
1074
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1075
+ WarmThroughput: NotRequired[GlobalSecondaryIndexWarmThroughputDescriptionTypeDef]
1055
1076
 
1056
1077
  class GlobalSecondaryIndexTypeDef(TypedDict):
1057
1078
  IndexName: str
@@ -1059,6 +1080,7 @@ class GlobalSecondaryIndexTypeDef(TypedDict):
1059
1080
  Projection: ProjectionTypeDef
1060
1081
  ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
1061
1082
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1083
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
1062
1084
 
1063
1085
  ProjectionUnionTypeDef = Union[ProjectionTypeDef, ProjectionOutputTypeDef]
1064
1086
 
@@ -1442,21 +1464,6 @@ class ListGlobalTablesOutputTypeDef(TypedDict):
1442
1464
  LastEvaluatedGlobalTableName: str
1443
1465
  ResponseMetadata: ResponseMetadataTypeDef
1444
1466
 
1445
- ReplicaDescriptionTypeDef = TypedDict(
1446
- "ReplicaDescriptionTypeDef",
1447
- {
1448
- "RegionName": NotRequired[str],
1449
- "ReplicaStatus": NotRequired[ReplicaStatusType],
1450
- "ReplicaStatusDescription": NotRequired[str],
1451
- "ReplicaStatusPercentProgress": NotRequired[str],
1452
- "KMSMasterKeyId": NotRequired[str],
1453
- "ProvisionedThroughputOverride": NotRequired[ProvisionedThroughputOverrideTypeDef],
1454
- "OnDemandThroughputOverride": NotRequired[OnDemandThroughputOverrideTypeDef],
1455
- "GlobalSecondaryIndexes": NotRequired[List[ReplicaGlobalSecondaryIndexDescriptionTypeDef]],
1456
- "ReplicaInaccessibleDateTime": NotRequired[datetime],
1457
- "ReplicaTableClassSummary": NotRequired[TableClassSummaryTypeDef],
1458
- },
1459
- )
1460
1467
  CreateReplicationGroupMemberActionTypeDef = TypedDict(
1461
1468
  "CreateReplicationGroupMemberActionTypeDef",
1462
1469
  {
@@ -1508,6 +1515,23 @@ class ExportTableToPointInTimeInputRequestTypeDef(TypedDict):
1508
1515
  ExportType: NotRequired[ExportTypeType]
1509
1516
  IncrementalExportSpecification: NotRequired[IncrementalExportSpecificationTypeDef]
1510
1517
 
1518
+ ReplicaDescriptionTypeDef = TypedDict(
1519
+ "ReplicaDescriptionTypeDef",
1520
+ {
1521
+ "RegionName": NotRequired[str],
1522
+ "ReplicaStatus": NotRequired[ReplicaStatusType],
1523
+ "ReplicaStatusDescription": NotRequired[str],
1524
+ "ReplicaStatusPercentProgress": NotRequired[str],
1525
+ "KMSMasterKeyId": NotRequired[str],
1526
+ "ProvisionedThroughputOverride": NotRequired[ProvisionedThroughputOverrideTypeDef],
1527
+ "OnDemandThroughputOverride": NotRequired[OnDemandThroughputOverrideTypeDef],
1528
+ "WarmThroughput": NotRequired[TableWarmThroughputDescriptionTypeDef],
1529
+ "GlobalSecondaryIndexes": NotRequired[List[ReplicaGlobalSecondaryIndexDescriptionTypeDef]],
1530
+ "ReplicaInaccessibleDateTime": NotRequired[datetime],
1531
+ "ReplicaTableClassSummary": NotRequired[TableClassSummaryTypeDef],
1532
+ },
1533
+ )
1534
+
1511
1535
  class TableCreationParametersOutputTypeDef(TypedDict):
1512
1536
  TableName: str
1513
1537
  AttributeDefinitions: List[AttributeDefinitionTypeDef]
@@ -1535,6 +1559,7 @@ class CreateGlobalSecondaryIndexActionTypeDef(TypedDict):
1535
1559
  Projection: ProjectionUnionTypeDef
1536
1560
  ProvisionedThroughput: NotRequired[ProvisionedThroughputTypeDef]
1537
1561
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1562
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
1538
1563
 
1539
1564
  class LocalSecondaryIndexTypeDef(TypedDict):
1540
1565
  IndexName: str
@@ -1740,6 +1765,11 @@ class ReplicaGlobalSecondaryIndexSettingsUpdateTypeDef(TypedDict):
1740
1765
  ProvisionedReadCapacityUnits: NotRequired[int]
1741
1766
  ProvisionedReadCapacityAutoScalingSettingsUpdate: NotRequired[AutoScalingSettingsUpdateTypeDef]
1742
1767
 
1768
+ class ReplicationGroupUpdateTypeDef(TypedDict):
1769
+ Create: NotRequired[CreateReplicationGroupMemberActionTypeDef]
1770
+ Update: NotRequired[UpdateReplicationGroupMemberActionTypeDef]
1771
+ Delete: NotRequired[DeleteReplicationGroupMemberActionTypeDef]
1772
+
1743
1773
  class GlobalTableDescriptionTypeDef(TypedDict):
1744
1774
  ReplicationGroup: NotRequired[List[ReplicaDescriptionTypeDef]]
1745
1775
  GlobalTableArn: NotRequired[str]
@@ -1772,11 +1802,7 @@ class TableDescriptionTypeDef(TypedDict):
1772
1802
  TableClassSummary: NotRequired[TableClassSummaryTypeDef]
1773
1803
  DeletionProtectionEnabled: NotRequired[bool]
1774
1804
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1775
-
1776
- class ReplicationGroupUpdateTypeDef(TypedDict):
1777
- Create: NotRequired[CreateReplicationGroupMemberActionTypeDef]
1778
- Update: NotRequired[UpdateReplicationGroupMemberActionTypeDef]
1779
- Delete: NotRequired[DeleteReplicationGroupMemberActionTypeDef]
1805
+ WarmThroughput: NotRequired[TableWarmThroughputDescriptionTypeDef]
1780
1806
 
1781
1807
  class ImportTableDescriptionTypeDef(TypedDict):
1782
1808
  ImportArn: NotRequired[str]
@@ -1832,6 +1858,7 @@ class CreateTableInputRequestTypeDef(TypedDict):
1832
1858
  Tags: NotRequired[Sequence[TagTypeDef]]
1833
1859
  TableClass: NotRequired[TableClassType]
1834
1860
  DeletionProtectionEnabled: NotRequired[bool]
1861
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
1835
1862
  ResourcePolicy: NotRequired[str]
1836
1863
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1837
1864
 
@@ -1848,6 +1875,7 @@ class CreateTableInputServiceResourceCreateTableTypeDef(TypedDict):
1848
1875
  Tags: NotRequired[Sequence[TagTypeDef]]
1849
1876
  TableClass: NotRequired[TableClassType]
1850
1877
  DeletionProtectionEnabled: NotRequired[bool]
1878
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
1851
1879
  ResourcePolicy: NotRequired[str]
1852
1880
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
1853
1881
 
@@ -2030,6 +2058,7 @@ class UpdateTableInputRequestTypeDef(TypedDict):
2030
2058
  TableClass: NotRequired[TableClassType]
2031
2059
  DeletionProtectionEnabled: NotRequired[bool]
2032
2060
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
2061
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
2033
2062
 
2034
2063
  class UpdateTableInputTableUpdateTypeDef(TypedDict):
2035
2064
  AttributeDefinitions: NotRequired[Sequence[AttributeDefinitionTypeDef]]
@@ -2042,6 +2071,7 @@ class UpdateTableInputTableUpdateTypeDef(TypedDict):
2042
2071
  TableClass: NotRequired[TableClassType]
2043
2072
  DeletionProtectionEnabled: NotRequired[bool]
2044
2073
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
2074
+ WarmThroughput: NotRequired[WarmThroughputTypeDef]
2045
2075
 
2046
2076
  WriteRequestUnionTypeDef = Union[WriteRequestTypeDef, WriteRequestOutputTypeDef]
2047
2077
 
@@ -2,4 +2,4 @@
2
2
  Source of truth for version.
3
3
  """
4
4
 
5
- __version__ = "1.35.54"
5
+ __version__ = "1.35.60"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mypy-boto3-dynamodb
3
- Version: 1.35.54
4
- Summary: Type annotations for boto3.DynamoDB 1.35.54 service generated with mypy-boto3-builder 8.2.0
3
+ Version: 1.35.60
4
+ Summary: Type annotations for boto3.DynamoDB 1.35.60 service generated with mypy-boto3-builder 8.2.1
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
@@ -44,7 +44,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
44
44
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
45
45
 
46
46
  Type annotations for
47
- [boto3.DynamoDB 1.35.54](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB)
47
+ [boto3.DynamoDB 1.35.60](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB)
48
48
  service compatible with [VSCode](https://code.visualstudio.com/),
49
49
  [PyCharm](https://www.jetbrains.com/pycharm/),
50
50
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -53,7 +53,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
53
53
  [pyright](https://github.com/microsoft/pyright) and other tools.
54
54
 
55
55
  Generated by
56
- [mypy-boto3-builder 8.2.0](https://github.com/youtype/mypy_boto3_builder).
56
+ [mypy-boto3-builder 8.2.1](https://github.com/youtype/mypy_boto3_builder).
57
57
 
58
58
  More information can be found on
59
59
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -0,0 +1,22 @@
1
+ mypy_boto3_dynamodb/__init__.py,sha256=4MPLwUMrXggGSAuIregEB9OPgK5lS38eH4VLQTv3RMk,1859
2
+ mypy_boto3_dynamodb/__init__.pyi,sha256=GMdsocJat-pPuRXyCmJcizZ1LKMSLPgLD7SYG-zOa14,1857
3
+ mypy_boto3_dynamodb/__main__.py,sha256=JSBvC6IiKmtiGP97b7DLJxxoSfhTXnmmEDutCKKliDo,922
4
+ mypy_boto3_dynamodb/client.py,sha256=7uJCyvnrXdbPYhaO7T09dHM6DNUuKwIDGga9_pQWCH4,43704
5
+ mypy_boto3_dynamodb/client.pyi,sha256=uFf_kU2QfKRMacM08sQbrQlb2nnxSsPLkTvlmdxQKV8,43700
6
+ mypy_boto3_dynamodb/literals.py,sha256=8r9njZ8uD6TKfZzgYDC13Q2OUdwdTkVmNe09QMv5Eo4,14190
7
+ mypy_boto3_dynamodb/literals.pyi,sha256=epnIbKNLIoT9fMzgjbOU7qjdSUYiPxc4QOGXX9dc68U,14188
8
+ mypy_boto3_dynamodb/paginator.py,sha256=uUrrQbFJY75Lint9Z51fNOS1heWMXFcIqZTN7VMxTN0,6000
9
+ mypy_boto3_dynamodb/paginator.pyi,sha256=ZgjpIdY4x9saGD9bHDfEmCbJiJU4zYbRgGxYPcB4IL0,5987
10
+ mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_dynamodb/service_resource.py,sha256=wsnBhIE7_eaZxtcfKt09T2L1hKkyfms-VTz_OwVLPvw,17263
12
+ mypy_boto3_dynamodb/service_resource.pyi,sha256=ca8p85UU6DpKlOrHwAWQmXMB_KItX_kmKE8dfce33h4,17256
13
+ mypy_boto3_dynamodb/type_defs.py,sha256=KT73KlIkz9aBWIscwmZKRVBqHQ30S--08LCXWRqfh_s,84756
14
+ mypy_boto3_dynamodb/type_defs.pyi,sha256=EsSPlae8i_oUoT6yHFP7AyrMyjdhfFiDXNDb9bd3W-g,84478
15
+ mypy_boto3_dynamodb/version.py,sha256=RsJl0UaIDmzX1f0nt4_rE8PlMV8KttoqzSEycFcJR9E,62
16
+ mypy_boto3_dynamodb/waiter.py,sha256=_uH-T4GRopvRbawdqtQqjOrJvwzPJwR_VJVaCk7xAeQ,2464
17
+ mypy_boto3_dynamodb/waiter.pyi,sha256=f2ClcbRIbbDzCu4v6kRyEPOaj9-V4woG3DdO9lMxGfk,2459
18
+ mypy_boto3_dynamodb-1.35.60.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
19
+ mypy_boto3_dynamodb-1.35.60.dist-info/METADATA,sha256=7QJK6hh3FXQR_hebvjDgSVwlCG5_BTr2zDdfRZM3wkI,16271
20
+ mypy_boto3_dynamodb-1.35.60.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
21
+ mypy_boto3_dynamodb-1.35.60.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
22
+ mypy_boto3_dynamodb-1.35.60.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.3.0)
2
+ Generator: setuptools (75.5.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,22 +0,0 @@
1
- mypy_boto3_dynamodb/__init__.py,sha256=4MPLwUMrXggGSAuIregEB9OPgK5lS38eH4VLQTv3RMk,1859
2
- mypy_boto3_dynamodb/__init__.pyi,sha256=GMdsocJat-pPuRXyCmJcizZ1LKMSLPgLD7SYG-zOa14,1857
3
- mypy_boto3_dynamodb/__main__.py,sha256=15FTY87bOwPQzb97Fi9ZBrLHgs1gZwQ75Bk4GS2k2ks,922
4
- mypy_boto3_dynamodb/client.py,sha256=7uJCyvnrXdbPYhaO7T09dHM6DNUuKwIDGga9_pQWCH4,43704
5
- mypy_boto3_dynamodb/client.pyi,sha256=uFf_kU2QfKRMacM08sQbrQlb2nnxSsPLkTvlmdxQKV8,43700
6
- mypy_boto3_dynamodb/literals.py,sha256=BaiE6IhRoVA3aTuiJoKEGYjqtH1IX9lx0LAeFzPK0pI,14175
7
- mypy_boto3_dynamodb/literals.pyi,sha256=m0apXKCXchR5sTvOtfzSH3RI667mVbcVzkH8AmffKHE,14173
8
- mypy_boto3_dynamodb/paginator.py,sha256=uUrrQbFJY75Lint9Z51fNOS1heWMXFcIqZTN7VMxTN0,6000
9
- mypy_boto3_dynamodb/paginator.pyi,sha256=ZgjpIdY4x9saGD9bHDfEmCbJiJU4zYbRgGxYPcB4IL0,5987
10
- mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_dynamodb/service_resource.py,sha256=kecpSoq1436RErIdhUqUpaN3YLDRY0XghSoJyqdWruU,17161
12
- mypy_boto3_dynamodb/service_resource.pyi,sha256=1gfpGlCsLk3WYTYsb11fFWnth6CImK1NPR5natIAyZg,17154
13
- mypy_boto3_dynamodb/type_defs.py,sha256=5B4sBfMGJ-ayt6hpFR9yxdX4YefzfBJXoksEd3RAkNo,83355
14
- mypy_boto3_dynamodb/type_defs.pyi,sha256=qZ9mn-D_5tsJDrTFekLl7yE9bPRj326bcCL0od9392M,83081
15
- mypy_boto3_dynamodb/version.py,sha256=cLWvQh3w-Hmy-DvC_YfU4atSbz-CreL07O7Hrig1-3M,62
16
- mypy_boto3_dynamodb/waiter.py,sha256=_uH-T4GRopvRbawdqtQqjOrJvwzPJwR_VJVaCk7xAeQ,2464
17
- mypy_boto3_dynamodb/waiter.pyi,sha256=f2ClcbRIbbDzCu4v6kRyEPOaj9-V4woG3DdO9lMxGfk,2459
18
- mypy_boto3_dynamodb-1.35.54.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
19
- mypy_boto3_dynamodb-1.35.54.dist-info/METADATA,sha256=dnbofwFXhnCEHTD0jtXmXEV6B-PO7EskafFFg7NQih8,16271
20
- mypy_boto3_dynamodb-1.35.54.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
21
- mypy_boto3_dynamodb-1.35.54.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
22
- mypy_boto3_dynamodb-1.35.54.dist-info/RECORD,,