types-boto3-dynamodb 1.42.33__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.
@@ -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.33\n"
16
- "Version: 1.42.33\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.33\n")
29
+ sys.stdout.write("1.42.41\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -44,6 +44,7 @@ __all__ = (
44
44
  "ExportStatusType",
45
45
  "ExportTypeType",
46
46
  "ExportViewTypeType",
47
+ "GlobalTableSettingsReplicationModeType",
47
48
  "GlobalTableStatusType",
48
49
  "ImportCompletedWaiterName",
49
50
  "ImportStatusType",
@@ -133,6 +134,7 @@ ExportFormatType = Literal["DYNAMODB_JSON", "ION"]
133
134
  ExportStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS"]
134
135
  ExportTypeType = Literal["FULL_EXPORT", "INCREMENTAL_EXPORT"]
135
136
  ExportViewTypeType = Literal["NEW_AND_OLD_IMAGES", "NEW_IMAGE"]
137
+ GlobalTableSettingsReplicationModeType = Literal["DISABLED", "ENABLED", "ENABLED_WITH_OVERRIDES"]
136
138
  GlobalTableStatusType = Literal["ACTIVE", "CREATING", "DELETING", "UPDATING"]
137
139
  ImportCompletedWaiterName = Literal["import_completed"]
138
140
  ImportStatusType = Literal["CANCELLED", "CANCELLING", "COMPLETED", "FAILED", "IN_PROGRESS"]
@@ -43,6 +43,7 @@ __all__ = (
43
43
  "ExportStatusType",
44
44
  "ExportTypeType",
45
45
  "ExportViewTypeType",
46
+ "GlobalTableSettingsReplicationModeType",
46
47
  "GlobalTableStatusType",
47
48
  "ImportCompletedWaiterName",
48
49
  "ImportStatusType",
@@ -131,6 +132,7 @@ ExportFormatType = Literal["DYNAMODB_JSON", "ION"]
131
132
  ExportStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS"]
132
133
  ExportTypeType = Literal["FULL_EXPORT", "INCREMENTAL_EXPORT"]
133
134
  ExportViewTypeType = Literal["NEW_AND_OLD_IMAGES", "NEW_IMAGE"]
135
+ GlobalTableSettingsReplicationModeType = Literal["DISABLED", "ENABLED", "ENABLED_WITH_OVERRIDES"]
134
136
  GlobalTableStatusType = Literal["ACTIVE", "CREATING", "DELETING", "UPDATING"]
135
137
  ImportCompletedWaiterName = Literal["import_completed"]
136
138
  ImportStatusType = Literal["CANCELLED", "CANCELLING", "COMPLETED", "FAILED", "IN_PROGRESS"]
@@ -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
@@ -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
@@ -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,
@@ -1790,6 +1791,7 @@ ReplicaDescriptionTypeDef = TypedDict(
1790
1791
  "GlobalSecondaryIndexes": NotRequired[list[ReplicaGlobalSecondaryIndexDescriptionTypeDef]],
1791
1792
  "ReplicaInaccessibleDateTime": NotRequired[datetime],
1792
1793
  "ReplicaTableClassSummary": NotRequired[TableClassSummaryTypeDef],
1794
+ "GlobalTableSettingsReplicationMode": NotRequired[GlobalTableSettingsReplicationModeType],
1793
1795
  },
1794
1796
  )
1795
1797
 
@@ -2110,6 +2112,7 @@ class TableDescriptionTypeDef(TypedDict):
2110
2112
  GlobalTableVersion: NotRequired[str]
2111
2113
  Replicas: NotRequired[list[ReplicaDescriptionTypeDef]]
2112
2114
  GlobalTableWitnesses: NotRequired[list[GlobalTableWitnessDescriptionTypeDef]]
2115
+ GlobalTableSettingsReplicationMode: NotRequired[GlobalTableSettingsReplicationModeType]
2113
2116
  RestoreSummary: NotRequired[RestoreSummaryTypeDef]
2114
2117
  SSEDescription: NotRequired[SSEDescriptionTypeDef]
2115
2118
  ArchivalSummary: NotRequired[ArchivalSummaryTypeDef]
@@ -2358,9 +2361,9 @@ class UpdateTableInputTypeDef(TypedDict):
2358
2361
 
2359
2362
 
2360
2363
  class CreateTableInputServiceResourceCreateTableTypeDef(TypedDict):
2361
- AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
2362
2364
  TableName: str
2363
- KeySchema: Sequence[KeySchemaElementTypeDef]
2365
+ AttributeDefinitions: NotRequired[Sequence[AttributeDefinitionTypeDef]]
2366
+ KeySchema: NotRequired[Sequence[KeySchemaElementTypeDef]]
2364
2367
  LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
2365
2368
  GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
2366
2369
  BillingMode: NotRequired[BillingModeType]
@@ -2373,12 +2376,14 @@ class CreateTableInputServiceResourceCreateTableTypeDef(TypedDict):
2373
2376
  WarmThroughput: NotRequired[WarmThroughputTypeDef]
2374
2377
  ResourcePolicy: NotRequired[str]
2375
2378
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
2379
+ GlobalTableSourceArn: NotRequired[str]
2380
+ GlobalTableSettingsReplicationMode: NotRequired[GlobalTableSettingsReplicationModeType]
2376
2381
 
2377
2382
 
2378
2383
  class CreateTableInputTypeDef(TypedDict):
2379
- AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
2380
2384
  TableName: str
2381
- KeySchema: Sequence[KeySchemaElementTypeDef]
2385
+ AttributeDefinitions: NotRequired[Sequence[AttributeDefinitionTypeDef]]
2386
+ KeySchema: NotRequired[Sequence[KeySchemaElementTypeDef]]
2382
2387
  LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
2383
2388
  GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
2384
2389
  BillingMode: NotRequired[BillingModeType]
@@ -2391,6 +2396,8 @@ class CreateTableInputTypeDef(TypedDict):
2391
2396
  WarmThroughput: NotRequired[WarmThroughputTypeDef]
2392
2397
  ResourcePolicy: NotRequired[str]
2393
2398
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
2399
+ GlobalTableSourceArn: NotRequired[str]
2400
+ GlobalTableSettingsReplicationMode: NotRequired[GlobalTableSettingsReplicationModeType]
2394
2401
 
2395
2402
 
2396
2403
  class RestoreTableFromBackupInputTypeDef(TypedDict):
@@ -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,
@@ -1581,6 +1582,7 @@ ReplicaDescriptionTypeDef = TypedDict(
1581
1582
  "GlobalSecondaryIndexes": NotRequired[list[ReplicaGlobalSecondaryIndexDescriptionTypeDef]],
1582
1583
  "ReplicaInaccessibleDateTime": NotRequired[datetime],
1583
1584
  "ReplicaTableClassSummary": NotRequired[TableClassSummaryTypeDef],
1585
+ "GlobalTableSettingsReplicationMode": NotRequired[GlobalTableSettingsReplicationModeType],
1584
1586
  },
1585
1587
  )
1586
1588
 
@@ -1866,6 +1868,7 @@ class TableDescriptionTypeDef(TypedDict):
1866
1868
  GlobalTableVersion: NotRequired[str]
1867
1869
  Replicas: NotRequired[list[ReplicaDescriptionTypeDef]]
1868
1870
  GlobalTableWitnesses: NotRequired[list[GlobalTableWitnessDescriptionTypeDef]]
1871
+ GlobalTableSettingsReplicationMode: NotRequired[GlobalTableSettingsReplicationModeType]
1869
1872
  RestoreSummary: NotRequired[RestoreSummaryTypeDef]
1870
1873
  SSEDescription: NotRequired[SSEDescriptionTypeDef]
1871
1874
  ArchivalSummary: NotRequired[ArchivalSummaryTypeDef]
@@ -2088,9 +2091,9 @@ class UpdateTableInputTypeDef(TypedDict):
2088
2091
  WarmThroughput: NotRequired[WarmThroughputTypeDef]
2089
2092
 
2090
2093
  class CreateTableInputServiceResourceCreateTableTypeDef(TypedDict):
2091
- AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
2092
2094
  TableName: str
2093
- KeySchema: Sequence[KeySchemaElementTypeDef]
2095
+ AttributeDefinitions: NotRequired[Sequence[AttributeDefinitionTypeDef]]
2096
+ KeySchema: NotRequired[Sequence[KeySchemaElementTypeDef]]
2094
2097
  LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
2095
2098
  GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
2096
2099
  BillingMode: NotRequired[BillingModeType]
@@ -2103,11 +2106,13 @@ class CreateTableInputServiceResourceCreateTableTypeDef(TypedDict):
2103
2106
  WarmThroughput: NotRequired[WarmThroughputTypeDef]
2104
2107
  ResourcePolicy: NotRequired[str]
2105
2108
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
2109
+ GlobalTableSourceArn: NotRequired[str]
2110
+ GlobalTableSettingsReplicationMode: NotRequired[GlobalTableSettingsReplicationModeType]
2106
2111
 
2107
2112
  class CreateTableInputTypeDef(TypedDict):
2108
- AttributeDefinitions: Sequence[AttributeDefinitionTypeDef]
2109
2113
  TableName: str
2110
- KeySchema: Sequence[KeySchemaElementTypeDef]
2114
+ AttributeDefinitions: NotRequired[Sequence[AttributeDefinitionTypeDef]]
2115
+ KeySchema: NotRequired[Sequence[KeySchemaElementTypeDef]]
2111
2116
  LocalSecondaryIndexes: NotRequired[Sequence[LocalSecondaryIndexTypeDef]]
2112
2117
  GlobalSecondaryIndexes: NotRequired[Sequence[GlobalSecondaryIndexUnionTypeDef]]
2113
2118
  BillingMode: NotRequired[BillingModeType]
@@ -2120,6 +2125,8 @@ class CreateTableInputTypeDef(TypedDict):
2120
2125
  WarmThroughput: NotRequired[WarmThroughputTypeDef]
2121
2126
  ResourcePolicy: NotRequired[str]
2122
2127
  OnDemandThroughput: NotRequired[OnDemandThroughputTypeDef]
2128
+ GlobalTableSourceArn: NotRequired[str]
2129
+ GlobalTableSettingsReplicationMode: NotRequired[GlobalTableSettingsReplicationModeType]
2123
2130
 
2124
2131
  class RestoreTableFromBackupInputTypeDef(TypedDict):
2125
2132
  TargetTableName: str
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2026 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.42.33"
7
+ __version__ = "1.42.41"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: types-boto3-dynamodb
3
- Version: 1.42.33
4
- Summary: Type annotations for boto3 DynamoDB 1.42.33 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.33](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.33' 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.
@@ -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.10.1)
2
+ Generator: setuptools (80.10.2)
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=JBku7DojkTTM4mC2YZTFURUVaDvhP_Eezs9p2OXvlr0,2997
2
- types_boto3_dynamodb/__init__.pyi,sha256=ZB3Nb9I_vGynX-PMep9yXV4_DP1e3qnsSKAf_Fi3JUc,2994
3
- types_boto3_dynamodb/__main__.py,sha256=nKcx-nNQFVNZ7xWMgrTcAWRXaQNcjo0bWZ_PFcQQ6P0,989
4
- types_boto3_dynamodb/client.py,sha256=UO5w7lmhJ3C5on0ruvEdwi0-JyCM2mSb7TXmHAS3BsY,45011
5
- types_boto3_dynamodb/client.pyi,sha256=9gNfg9YJzMov6ZiAK0BvdPfRJANBiUzvPtZTeFdfk50,45008
6
- types_boto3_dynamodb/literals.py,sha256=qX-ekoQWlqOvGMXEJs-pDpAgkGp5CdT2Yz3NYe6bhmo,15835
7
- types_boto3_dynamodb/literals.pyi,sha256=GikBmima7dfcqXdi36T5mrdWlsZ22I5tIfjpgeqnWnk,15833
8
- types_boto3_dynamodb/paginator.py,sha256=sB7Klc0Kh6JnX_ishnMabBNtVVXvHEUwpTTnjNW--qY,6942
9
- types_boto3_dynamodb/paginator.pyi,sha256=BDSSN7QRVHvHSP53kjxa6ioWSDIxwpk2j0HNX19Znis,6926
10
- types_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- types_boto3_dynamodb/service_resource.py,sha256=iHJEfC5BuodNGdecDX3K_tYNIkw0LtpNDhS6EMIoI6Y,17250
12
- types_boto3_dynamodb/service_resource.pyi,sha256=gR7D5b1lwI2lQX4do387KjvJGfI7ziIgaS6axZeHN_A,17243
13
- types_boto3_dynamodb/type_defs.py,sha256=1xCCN8I7nKGPVAt-WdQgfBcFv9oUx2bCCZJjfEBd8f8,87161
14
- types_boto3_dynamodb/type_defs.pyi,sha256=Ku2OcwRgxJBvRCms9bmhhlhZfSb8NCAY68aUF1mzeAU,86877
15
- types_boto3_dynamodb/version.py,sha256=zMKG9-4RqE4dykTblMwxtKDQB5PdmCGl7H__3iy2ECU,93
16
- types_boto3_dynamodb/waiter.py,sha256=04trTY1Q2BieTcUpXWdolzDTfWpxPIBchqc20-2Kb1Q,7152
17
- types_boto3_dynamodb/waiter.pyi,sha256=wMAIEgZ6uiMnff-GlOzj9vdqAJpsPUJldMnpO6xPoK8,7139
18
- types_boto3_dynamodb-1.42.33.dist-info/licenses/LICENSE,sha256=MdPBcMOA_mXHmAaBn41qTH8zP7qsdQfRAIxNJaCq-wE,1070
19
- types_boto3_dynamodb-1.42.33.dist-info/METADATA,sha256=SK715j1qze6OUV1SJhj-lLYcs4jH1HCwbtcNvyVpAD0,18168
20
- types_boto3_dynamodb-1.42.33.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
21
- types_boto3_dynamodb-1.42.33.dist-info/top_level.txt,sha256=qetKI9-H-rMGIOB1IBzTvryBK-GlE9YjkQQwaB1GpB8,21
22
- types_boto3_dynamodb-1.42.33.dist-info/RECORD,,