mypy-boto3-dynamodb 1.28.36__py3-none-any.whl → 1.28.66__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.
@@ -11,6 +11,7 @@ Usage::
11
11
  data: ResponseMetadataTypeDef = ...
12
12
  ```
13
13
  """
14
+
14
15
  import sys
15
16
  from datetime import datetime
16
17
  from decimal import Decimal
@@ -33,6 +34,8 @@ from .literals import (
33
34
  DestinationStatusType,
34
35
  ExportFormatType,
35
36
  ExportStatusType,
37
+ ExportTypeType,
38
+ ExportViewTypeType,
36
39
  GlobalTableStatusType,
37
40
  ImportStatusType,
38
41
  IndexStatusType,
@@ -104,7 +107,6 @@ __all__ = (
104
107
  "FailureExceptionTypeDef",
105
108
  "EndpointTypeDef",
106
109
  "DescribeExportInputRequestTypeDef",
107
- "ExportDescriptionTypeDef",
108
110
  "DescribeGlobalTableInputRequestTypeDef",
109
111
  "DescribeGlobalTableSettingsInputRequestTypeDef",
110
112
  "DescribeImportInputRequestTypeDef",
@@ -115,6 +117,7 @@ __all__ = (
115
117
  "DescribeTableReplicaAutoScalingInputRequestTypeDef",
116
118
  "DescribeTimeToLiveInputRequestTypeDef",
117
119
  "TimeToLiveDescriptionTypeDef",
120
+ "IncrementalExportSpecificationTypeDef",
118
121
  "ExportSummaryTypeDef",
119
122
  "TimestampTypeDef",
120
123
  "ProvisionedThroughputDescriptionTypeDef",
@@ -187,12 +190,11 @@ __all__ = (
187
190
  "ReplicaUpdateTypeDef",
188
191
  "DescribeContributorInsightsOutputTypeDef",
189
192
  "DescribeEndpointsResponseTypeDef",
190
- "DescribeExportOutputTypeDef",
191
- "ExportTableToPointInTimeOutputTypeDef",
192
193
  "DescribeKinesisStreamingDestinationOutputTypeDef",
193
194
  "DescribeTableInputTableExistsWaitTypeDef",
194
195
  "DescribeTableInputTableNotExistsWaitTypeDef",
195
196
  "DescribeTimeToLiveOutputTypeDef",
197
+ "ExportDescriptionTypeDef",
196
198
  "ListExportsOutputTypeDef",
197
199
  "ExportTableToPointInTimeInputRequestTypeDef",
198
200
  "ListBackupsInputRequestTypeDef",
@@ -262,6 +264,8 @@ __all__ = (
262
264
  "CreateReplicationGroupMemberActionTypeDef",
263
265
  "UpdateReplicationGroupMemberActionTypeDef",
264
266
  "UpdateGlobalTableInputRequestTypeDef",
267
+ "DescribeExportOutputTypeDef",
268
+ "ExportTableToPointInTimeOutputTypeDef",
265
269
  "ListImportsOutputTypeDef",
266
270
  "BatchExecuteStatementOutputTypeDef",
267
271
  "BatchExecuteStatementInputRequestTypeDef",
@@ -645,31 +649,6 @@ DescribeExportInputRequestTypeDef = TypedDict(
645
649
  },
646
650
  )
647
651
 
648
- ExportDescriptionTypeDef = TypedDict(
649
- "ExportDescriptionTypeDef",
650
- {
651
- "ExportArn": NotRequired[str],
652
- "ExportStatus": NotRequired[ExportStatusType],
653
- "StartTime": NotRequired[datetime],
654
- "EndTime": NotRequired[datetime],
655
- "ExportManifest": NotRequired[str],
656
- "TableArn": NotRequired[str],
657
- "TableId": NotRequired[str],
658
- "ExportTime": NotRequired[datetime],
659
- "ClientToken": NotRequired[str],
660
- "S3Bucket": NotRequired[str],
661
- "S3BucketOwner": NotRequired[str],
662
- "S3Prefix": NotRequired[str],
663
- "S3SseAlgorithm": NotRequired[S3SseAlgorithmType],
664
- "S3SseKmsKeyId": NotRequired[str],
665
- "FailureCode": NotRequired[str],
666
- "FailureMessage": NotRequired[str],
667
- "ExportFormat": NotRequired[ExportFormatType],
668
- "BilledSizeBytes": NotRequired[int],
669
- "ItemCount": NotRequired[int],
670
- },
671
- )
672
-
673
652
  DescribeGlobalTableInputRequestTypeDef = TypedDict(
674
653
  "DescribeGlobalTableInputRequestTypeDef",
675
654
  {
@@ -744,11 +723,21 @@ TimeToLiveDescriptionTypeDef = TypedDict(
744
723
  },
745
724
  )
746
725
 
726
+ IncrementalExportSpecificationTypeDef = TypedDict(
727
+ "IncrementalExportSpecificationTypeDef",
728
+ {
729
+ "ExportFromTime": NotRequired[datetime],
730
+ "ExportToTime": NotRequired[datetime],
731
+ "ExportViewType": NotRequired[ExportViewTypeType],
732
+ },
733
+ )
734
+
747
735
  ExportSummaryTypeDef = TypedDict(
748
736
  "ExportSummaryTypeDef",
749
737
  {
750
738
  "ExportArn": NotRequired[str],
751
739
  "ExportStatus": NotRequired[ExportStatusType],
740
+ "ExportType": NotRequired[ExportTypeType],
752
741
  },
753
742
  )
754
743
 
@@ -1404,22 +1393,6 @@ DescribeEndpointsResponseTypeDef = TypedDict(
1404
1393
  },
1405
1394
  )
1406
1395
 
1407
- DescribeExportOutputTypeDef = TypedDict(
1408
- "DescribeExportOutputTypeDef",
1409
- {
1410
- "ExportDescription": ExportDescriptionTypeDef,
1411
- "ResponseMetadata": ResponseMetadataTypeDef,
1412
- },
1413
- )
1414
-
1415
- ExportTableToPointInTimeOutputTypeDef = TypedDict(
1416
- "ExportTableToPointInTimeOutputTypeDef",
1417
- {
1418
- "ExportDescription": ExportDescriptionTypeDef,
1419
- "ResponseMetadata": ResponseMetadataTypeDef,
1420
- },
1421
- )
1422
-
1423
1396
  DescribeKinesisStreamingDestinationOutputTypeDef = TypedDict(
1424
1397
  "DescribeKinesisStreamingDestinationOutputTypeDef",
1425
1398
  {
@@ -1453,6 +1426,33 @@ DescribeTimeToLiveOutputTypeDef = TypedDict(
1453
1426
  },
1454
1427
  )
1455
1428
 
1429
+ ExportDescriptionTypeDef = TypedDict(
1430
+ "ExportDescriptionTypeDef",
1431
+ {
1432
+ "ExportArn": NotRequired[str],
1433
+ "ExportStatus": NotRequired[ExportStatusType],
1434
+ "StartTime": NotRequired[datetime],
1435
+ "EndTime": NotRequired[datetime],
1436
+ "ExportManifest": NotRequired[str],
1437
+ "TableArn": NotRequired[str],
1438
+ "TableId": NotRequired[str],
1439
+ "ExportTime": NotRequired[datetime],
1440
+ "ClientToken": NotRequired[str],
1441
+ "S3Bucket": NotRequired[str],
1442
+ "S3BucketOwner": NotRequired[str],
1443
+ "S3Prefix": NotRequired[str],
1444
+ "S3SseAlgorithm": NotRequired[S3SseAlgorithmType],
1445
+ "S3SseKmsKeyId": NotRequired[str],
1446
+ "FailureCode": NotRequired[str],
1447
+ "FailureMessage": NotRequired[str],
1448
+ "ExportFormat": NotRequired[ExportFormatType],
1449
+ "BilledSizeBytes": NotRequired[int],
1450
+ "ItemCount": NotRequired[int],
1451
+ "ExportType": NotRequired[ExportTypeType],
1452
+ "IncrementalExportSpecification": NotRequired[IncrementalExportSpecificationTypeDef],
1453
+ },
1454
+ )
1455
+
1456
1456
  ListExportsOutputTypeDef = TypedDict(
1457
1457
  "ListExportsOutputTypeDef",
1458
1458
  {
@@ -1474,6 +1474,8 @@ ExportTableToPointInTimeInputRequestTypeDef = TypedDict(
1474
1474
  "S3SseAlgorithm": NotRequired[S3SseAlgorithmType],
1475
1475
  "S3SseKmsKeyId": NotRequired[str],
1476
1476
  "ExportFormat": NotRequired[ExportFormatType],
1477
+ "ExportType": NotRequired[ExportTypeType],
1478
+ "IncrementalExportSpecification": NotRequired[IncrementalExportSpecificationTypeDef],
1477
1479
  },
1478
1480
  )
1479
1481
 
@@ -2229,6 +2231,22 @@ UpdateGlobalTableInputRequestTypeDef = TypedDict(
2229
2231
  },
2230
2232
  )
2231
2233
 
2234
+ DescribeExportOutputTypeDef = TypedDict(
2235
+ "DescribeExportOutputTypeDef",
2236
+ {
2237
+ "ExportDescription": ExportDescriptionTypeDef,
2238
+ "ResponseMetadata": ResponseMetadataTypeDef,
2239
+ },
2240
+ )
2241
+
2242
+ ExportTableToPointInTimeOutputTypeDef = TypedDict(
2243
+ "ExportTableToPointInTimeOutputTypeDef",
2244
+ {
2245
+ "ExportDescription": ExportDescriptionTypeDef,
2246
+ "ResponseMetadata": ResponseMetadataTypeDef,
2247
+ },
2248
+ )
2249
+
2232
2250
  ListImportsOutputTypeDef = TypedDict(
2233
2251
  "ListImportsOutputTypeDef",
2234
2252
  {
@@ -1,4 +1,5 @@
1
1
  """
2
2
  Source of truth for version.
3
3
  """
4
- __version__ = "1.28.36"
4
+
5
+ __version__ = "1.28.66"
@@ -21,6 +21,7 @@ Usage::
21
21
  table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
22
22
  ```
23
23
  """
24
+
24
25
  from botocore.waiter import Waiter
25
26
 
26
27
  from .type_defs import WaiterConfigTypeDef
@@ -21,6 +21,7 @@ Usage::
21
21
  table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
22
22
  ```
23
23
  """
24
+
24
25
  from botocore.waiter import Waiter
25
26
 
26
27
  from .type_defs import WaiterConfigTypeDef
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mypy-boto3-dynamodb
3
- Version: 1.28.36
4
- Summary: Type annotations for boto3.DynamoDB 1.28.36 service generated with mypy-boto3-builder 7.18.0
3
+ Version: 1.28.66
4
+ Summary: Type annotations for boto3.DynamoDB 1.28.66 service generated with mypy-boto3-builder 7.19.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
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
43
43
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
44
44
 
45
45
  Type annotations for
46
- [boto3.DynamoDB 1.28.36](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB)
46
+ [boto3.DynamoDB 1.28.66](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB)
47
47
  service compatible with [VSCode](https://code.visualstudio.com/),
48
48
  [PyCharm](https://www.jetbrains.com/pycharm/),
49
49
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -52,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
52
52
  [pyright](https://github.com/microsoft/pyright) and other tools.
53
53
 
54
54
  Generated by
55
- [mypy-boto3-builder 7.18.0](https://github.com/youtype/mypy_boto3_builder).
55
+ [mypy-boto3-builder 7.19.0](https://github.com/youtype/mypy_boto3_builder).
56
56
 
57
57
  More information can be found on
58
58
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -426,8 +426,7 @@ Full list of `DynamoDB` Literals can be found in
426
426
  from mypy_boto3_dynamodb.literals import AttributeActionType
427
427
 
428
428
 
429
- def check_value(value: AttributeActionType) -> bool:
430
- ...
429
+ def check_value(value: AttributeActionType) -> bool: ...
431
430
  ```
432
431
 
433
432
  <a id="type-definitions"></a>
@@ -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=ZKdKbY_iRiUFiUqaxIArLU39RKtWh23n5yiGIF7Fwuo,912
4
+ mypy_boto3_dynamodb/client.py,sha256=jnCm1XqC1qyqdSZ7To7yeLC-RO_h80i1dx9zcUBdWxs,48402
5
+ mypy_boto3_dynamodb/client.pyi,sha256=LJvA9_suZPIEpr_FBihZUbjzXpXIa3DSg0rHLFGmshI,48398
6
+ mypy_boto3_dynamodb/literals.py,sha256=eD-2iQC8OQ818Tw-fae5PJhQpE_j1kONtPNIMkOq2VY,13234
7
+ mypy_boto3_dynamodb/literals.pyi,sha256=tDhHRf6dP6xEuHt3sszPBX5gtBclNQyUXf_DUEtlRh8,13232
8
+ mypy_boto3_dynamodb/paginator.py,sha256=sIOcU0qDjyoOZODT_Fp0MU0XKUVbKMK6OlI8v20gzUQ,7478
9
+ mypy_boto3_dynamodb/paginator.pyi,sha256=zBqCT6ylik87Y-h1rqERyhUIDV90Cud753dmyxpAaK8,7471
10
+ mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_dynamodb/service_resource.py,sha256=o9RlTankhRSvWtY8E2IwUj13m09lmKmDgFTvJ7ZO5fc,22531
12
+ mypy_boto3_dynamodb/service_resource.pyi,sha256=L7p4OApkahgrBi04A2eZw_8NwGAD5Fkq8Dy3IKS9Y6A,22526
13
+ mypy_boto3_dynamodb/type_defs.py,sha256=fowb3OMrYYltlhOZvKzqgOWHLkxpL-ijSiFxQZbNy_U,98088
14
+ mypy_boto3_dynamodb/type_defs.pyi,sha256=78uagOoVloSBIGPZ6diMILF1aIAp-I7-rSSQaiAeezw,98087
15
+ mypy_boto3_dynamodb/version.py,sha256=Iuv_ViTpSfYVjg_NyxksuCkBqaIEuPnbzg1LKa64C0Q,62
16
+ mypy_boto3_dynamodb/waiter.py,sha256=7xcR5DzbFgG6mwzPduSlv_EelwquNvRJRo7L8ye-ig4,2259
17
+ mypy_boto3_dynamodb/waiter.pyi,sha256=oRlb0atdfvM7XJBKZuoBxq-5JiGytB6bfjUzQcL5kY8,2257
18
+ mypy_boto3_dynamodb-1.28.66.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
19
+ mypy_boto3_dynamodb-1.28.66.dist-info/METADATA,sha256=kBkE_pSKNh3LCVFEdVGQNGfdKfXqlnARqBF7YZmQ4kI,16224
20
+ mypy_boto3_dynamodb-1.28.66.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
21
+ mypy_boto3_dynamodb-1.28.66.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
22
+ mypy_boto3_dynamodb-1.28.66.dist-info/RECORD,,
@@ -1,22 +0,0 @@
1
- mypy_boto3_dynamodb/__init__.py,sha256=MqkQHSL7HZrwHOth1N8qUU_W6QzZgptAYFvyX5PZ898,1858
2
- mypy_boto3_dynamodb/__init__.pyi,sha256=OXYWs8hdRkQ_OZh244Cqc_KyEsNXX6yonMASGKrm9cQ,1856
3
- mypy_boto3_dynamodb/__main__.py,sha256=8jJGYH4jTJn4SrZaiIt0zJ4Oy3BJUupcNE5LBGJOyuI,911
4
- mypy_boto3_dynamodb/client.py,sha256=S7p9LDsyhJ1BXqXtZ6WxojsQGfkUZqjelSrsbiXQ2VY,47968
5
- mypy_boto3_dynamodb/client.pyi,sha256=5qdouzRWeMGlN9fYjyLzQxGkzoZTrkhY23sETd5IpaA,47901
6
- mypy_boto3_dynamodb/literals.py,sha256=H_MMaTJgPvamqQdjYdEiiMkJ3CQp4BdFv6UFB9DDCLk,12962
7
- mypy_boto3_dynamodb/literals.pyi,sha256=onuioIoo9io8f1tAP6eB4ymIChKyEVItj6O_2x9QaSw,12960
8
- mypy_boto3_dynamodb/paginator.py,sha256=1By6y-5de_R7EsEHIMB1BY17OYJBPiZv6fYeclsLhPs,7477
9
- mypy_boto3_dynamodb/paginator.pyi,sha256=C0QpgXeRPQ2gzxfT98xufdF6zO1QshtkwZoDuIBs-0o,7470
10
- mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_dynamodb/service_resource.py,sha256=JkN4sJFsZCagTKPDzjp1nV0lHoXoJC4aqODMD1EAYEA,22466
12
- mypy_boto3_dynamodb/service_resource.pyi,sha256=FN--6Azt7OM43fmxwM0euh5sfuu13iolHFEm1rWdfOw,22439
13
- mypy_boto3_dynamodb/type_defs.py,sha256=B3yaczIEJCyFhvvgxpNOv9g-njMD-hO2fNgPinmpS7Y,97390
14
- mypy_boto3_dynamodb/type_defs.pyi,sha256=KTPXPhHUOdVxC1hUVXyRu7zZ8zEwP2GKrnSbijUm3Ic,97389
15
- mypy_boto3_dynamodb/version.py,sha256=TdNWFUlWkV5vJyEpme0YDjjJMYoshLhRdAlC_WfMfAo,61
16
- mypy_boto3_dynamodb/waiter.py,sha256=tkG-N51VJGQd8hhItuTRQzvHUjw1UFQBnEdimdQAsus,2258
17
- mypy_boto3_dynamodb/waiter.pyi,sha256=gZnEmkkAswkT3_2uIBq6oDEt4BtKjhPoXJ_HWmzEACo,2256
18
- mypy_boto3_dynamodb-1.28.36.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
19
- mypy_boto3_dynamodb-1.28.36.dist-info/METADATA,sha256=FgLV_07OeXhMlQYaOyvfMvaybhksdMLFW-4CJFNF5lE,16228
20
- mypy_boto3_dynamodb-1.28.36.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
21
- mypy_boto3_dynamodb-1.28.36.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
22
- mypy_boto3_dynamodb-1.28.36.dist-info/RECORD,,