mypy-boto3-dynamodb 1.34.57__py3-none-any.whl → 1.34.67__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,8 +10,8 @@ def print_info() -> None:
10
10
  Print package info to stdout.
11
11
  """
12
12
  print(
13
- "Type annotations for boto3.DynamoDB 1.34.57\n"
14
- "Version: 1.34.57\n"
13
+ "Type annotations for boto3.DynamoDB 1.34.67\n"
14
+ "Version: 1.34.67\n"
15
15
  "Builder version: 7.23.2\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"
@@ -24,7 +24,7 @@ def print_version() -> None:
24
24
  """
25
25
  Print package version to stdout.
26
26
  """
27
- print("1.34.57")
27
+ print("1.34.67")
28
28
 
29
29
 
30
30
  def main() -> None:
@@ -57,6 +57,7 @@ from .type_defs import (
57
57
  CreateTableOutputTypeDef,
58
58
  DeleteBackupOutputTypeDef,
59
59
  DeleteItemOutputTypeDef,
60
+ DeleteResourcePolicyOutputTypeDef,
60
61
  DeleteTableOutputTypeDef,
61
62
  DescribeBackupOutputTypeDef,
62
63
  DescribeContinuousBackupsOutputTypeDef,
@@ -78,6 +79,7 @@ from .type_defs import (
78
79
  ExpectedAttributeValueTypeDef,
79
80
  ExportTableToPointInTimeOutputTypeDef,
80
81
  GetItemOutputTypeDef,
82
+ GetResourcePolicyOutputTypeDef,
81
83
  GlobalSecondaryIndexAutoScalingUpdateTypeDef,
82
84
  GlobalSecondaryIndexTypeDef,
83
85
  GlobalSecondaryIndexUpdateTypeDef,
@@ -100,6 +102,7 @@ from .type_defs import (
100
102
  PointInTimeRecoverySpecificationTypeDef,
101
103
  ProvisionedThroughputTypeDef,
102
104
  PutItemOutputTypeDef,
105
+ PutResourcePolicyOutputTypeDef,
103
106
  QueryOutputTypeDef,
104
107
  ReplicaAutoScalingUpdateTypeDef,
105
108
  ReplicaSettingsUpdateTypeDef,
@@ -172,6 +175,7 @@ class Exceptions:
172
175
  ItemCollectionSizeLimitExceededException: Type[BotocoreClientError]
173
176
  LimitExceededException: Type[BotocoreClientError]
174
177
  PointInTimeRecoveryUnavailableException: Type[BotocoreClientError]
178
+ PolicyNotFoundException: Type[BotocoreClientError]
175
179
  ProvisionedThroughputExceededException: Type[BotocoreClientError]
176
180
  ReplicaAlreadyExistsException: Type[BotocoreClientError]
177
181
  ReplicaNotFoundException: Type[BotocoreClientError]
@@ -297,6 +301,7 @@ class DynamoDBClient(BaseClient):
297
301
  Tags: Sequence[TagTypeDef] = ...,
298
302
  TableClass: TableClassType = ...,
299
303
  DeletionProtectionEnabled: bool = ...,
304
+ ResourcePolicy: str = ...,
300
305
  ) -> CreateTableOutputTypeDef:
301
306
  """
302
307
  The `CreateTable` operation adds a new table to your account.
@@ -335,6 +340,18 @@ class DynamoDBClient(BaseClient):
335
340
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#delete_item)
336
341
  """
337
342
 
343
+ def delete_resource_policy(
344
+ self, *, ResourceArn: str, ExpectedRevisionId: str = ...
345
+ ) -> DeleteResourcePolicyOutputTypeDef:
346
+ """
347
+ Deletes the resource-based policy attached to the resource, which can be a
348
+ table or
349
+ stream.
350
+
351
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.delete_resource_policy)
352
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#delete_resource_policy)
353
+ """
354
+
338
355
  def delete_table(self, *, TableName: str) -> DeleteTableOutputTypeDef:
339
356
  """
340
357
  The `DeleteTable` operation deletes a table and all of its items.
@@ -588,6 +605,16 @@ class DynamoDBClient(BaseClient):
588
605
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_item)
589
606
  """
590
607
 
608
+ def get_resource_policy(self, *, ResourceArn: str) -> GetResourcePolicyOutputTypeDef:
609
+ """
610
+ Returns the resource-based policy document attached to the resource, which can
611
+ be a table or stream, in JSON
612
+ format.
613
+
614
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.get_resource_policy)
615
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_resource_policy)
616
+ """
617
+
591
618
  def import_table(
592
619
  self,
593
620
  *,
@@ -709,6 +736,23 @@ class DynamoDBClient(BaseClient):
709
736
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#put_item)
710
737
  """
711
738
 
739
+ def put_resource_policy(
740
+ self,
741
+ *,
742
+ ResourceArn: str,
743
+ Policy: str,
744
+ ExpectedRevisionId: str = ...,
745
+ ConfirmRemoveSelfResourceAccess: bool = ...,
746
+ ) -> PutResourcePolicyOutputTypeDef:
747
+ """
748
+ Attaches a resource-based policy document to the resource, which can be a table
749
+ or
750
+ stream.
751
+
752
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.put_resource_policy)
753
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#put_resource_policy)
754
+ """
755
+
712
756
  def query(
713
757
  self,
714
758
  *,
@@ -57,6 +57,7 @@ from .type_defs import (
57
57
  CreateTableOutputTypeDef,
58
58
  DeleteBackupOutputTypeDef,
59
59
  DeleteItemOutputTypeDef,
60
+ DeleteResourcePolicyOutputTypeDef,
60
61
  DeleteTableOutputTypeDef,
61
62
  DescribeBackupOutputTypeDef,
62
63
  DescribeContinuousBackupsOutputTypeDef,
@@ -78,6 +79,7 @@ from .type_defs import (
78
79
  ExpectedAttributeValueTypeDef,
79
80
  ExportTableToPointInTimeOutputTypeDef,
80
81
  GetItemOutputTypeDef,
82
+ GetResourcePolicyOutputTypeDef,
81
83
  GlobalSecondaryIndexAutoScalingUpdateTypeDef,
82
84
  GlobalSecondaryIndexTypeDef,
83
85
  GlobalSecondaryIndexUpdateTypeDef,
@@ -100,6 +102,7 @@ from .type_defs import (
100
102
  PointInTimeRecoverySpecificationTypeDef,
101
103
  ProvisionedThroughputTypeDef,
102
104
  PutItemOutputTypeDef,
105
+ PutResourcePolicyOutputTypeDef,
103
106
  QueryOutputTypeDef,
104
107
  ReplicaAutoScalingUpdateTypeDef,
105
108
  ReplicaSettingsUpdateTypeDef,
@@ -170,6 +173,7 @@ class Exceptions:
170
173
  ItemCollectionSizeLimitExceededException: Type[BotocoreClientError]
171
174
  LimitExceededException: Type[BotocoreClientError]
172
175
  PointInTimeRecoveryUnavailableException: Type[BotocoreClientError]
176
+ PolicyNotFoundException: Type[BotocoreClientError]
173
177
  ProvisionedThroughputExceededException: Type[BotocoreClientError]
174
178
  ReplicaAlreadyExistsException: Type[BotocoreClientError]
175
179
  ReplicaNotFoundException: Type[BotocoreClientError]
@@ -294,6 +298,7 @@ class DynamoDBClient(BaseClient):
294
298
  Tags: Sequence[TagTypeDef] = ...,
295
299
  TableClass: TableClassType = ...,
296
300
  DeletionProtectionEnabled: bool = ...,
301
+ ResourcePolicy: str = ...,
297
302
  ) -> CreateTableOutputTypeDef:
298
303
  """
299
304
  The `CreateTable` operation adds a new table to your account.
@@ -332,6 +337,18 @@ class DynamoDBClient(BaseClient):
332
337
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#delete_item)
333
338
  """
334
339
 
340
+ def delete_resource_policy(
341
+ self, *, ResourceArn: str, ExpectedRevisionId: str = ...
342
+ ) -> DeleteResourcePolicyOutputTypeDef:
343
+ """
344
+ Deletes the resource-based policy attached to the resource, which can be a
345
+ table or
346
+ stream.
347
+
348
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.delete_resource_policy)
349
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#delete_resource_policy)
350
+ """
351
+
335
352
  def delete_table(self, *, TableName: str) -> DeleteTableOutputTypeDef:
336
353
  """
337
354
  The `DeleteTable` operation deletes a table and all of its items.
@@ -585,6 +602,16 @@ class DynamoDBClient(BaseClient):
585
602
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_item)
586
603
  """
587
604
 
605
+ def get_resource_policy(self, *, ResourceArn: str) -> GetResourcePolicyOutputTypeDef:
606
+ """
607
+ Returns the resource-based policy document attached to the resource, which can
608
+ be a table or stream, in JSON
609
+ format.
610
+
611
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.get_resource_policy)
612
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#get_resource_policy)
613
+ """
614
+
588
615
  def import_table(
589
616
  self,
590
617
  *,
@@ -706,6 +733,23 @@ class DynamoDBClient(BaseClient):
706
733
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#put_item)
707
734
  """
708
735
 
736
+ def put_resource_policy(
737
+ self,
738
+ *,
739
+ ResourceArn: str,
740
+ Policy: str,
741
+ ExpectedRevisionId: str = ...,
742
+ ConfirmRemoveSelfResourceAccess: bool = ...,
743
+ ) -> PutResourcePolicyOutputTypeDef:
744
+ """
745
+ Attaches a resource-based policy document to the resource, which can be a table
746
+ or
747
+ stream.
748
+
749
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB.Client.put_resource_policy)
750
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/client/#put_resource_policy)
751
+ """
752
+
709
753
  def query(
710
754
  self,
711
755
  *,
@@ -334,7 +334,6 @@ ServiceName = Literal[
334
334
  "iot",
335
335
  "iot-data",
336
336
  "iot-jobs-data",
337
- "iot-roborunner",
338
337
  "iot1click-devices",
339
338
  "iot1click-projects",
340
339
  "iotanalytics",
@@ -522,6 +521,7 @@ ServiceName = Literal[
522
521
  "swf",
523
522
  "synthetics",
524
523
  "textract",
524
+ "timestream-influxdb",
525
525
  "timestream-query",
526
526
  "timestream-write",
527
527
  "tnb",
@@ -334,7 +334,6 @@ ServiceName = Literal[
334
334
  "iot",
335
335
  "iot-data",
336
336
  "iot-jobs-data",
337
- "iot-roborunner",
338
337
  "iot1click-devices",
339
338
  "iot1click-projects",
340
339
  "iotanalytics",
@@ -522,6 +521,7 @@ ServiceName = Literal[
522
521
  "swf",
523
522
  "synthetics",
524
523
  "textract",
524
+ "timestream-influxdb",
525
525
  "timestream-query",
526
526
  "timestream-write",
527
527
  "tnb",
@@ -463,6 +463,7 @@ class DynamoDBServiceResource(ServiceResource):
463
463
  Tags: Sequence[TagTypeDef] = ...,
464
464
  TableClass: TableClassType = ...,
465
465
  DeletionProtectionEnabled: bool = ...,
466
+ ResourcePolicy: str = ...,
466
467
  ) -> "_Table":
467
468
  """
468
469
  The `CreateTable` operation adds a new table to your account.
@@ -458,6 +458,7 @@ class DynamoDBServiceResource(ServiceResource):
458
458
  Tags: Sequence[TagTypeDef] = ...,
459
459
  TableClass: TableClassType = ...,
460
460
  DeletionProtectionEnabled: bool = ...,
461
+ ResourcePolicy: str = ...,
461
462
  ) -> "_Table":
462
463
  """
463
464
  The `CreateTable` operation adds a new table to your account.
@@ -101,6 +101,7 @@ __all__ = (
101
101
  "DeleteGlobalSecondaryIndexActionTypeDef",
102
102
  "DeleteReplicaActionTypeDef",
103
103
  "DeleteReplicationGroupMemberActionTypeDef",
104
+ "DeleteResourcePolicyInputRequestTypeDef",
104
105
  "DeleteTableInputRequestTypeDef",
105
106
  "DescribeBackupInputRequestTypeDef",
106
107
  "DescribeContinuousBackupsInputRequestTypeDef",
@@ -122,6 +123,7 @@ __all__ = (
122
123
  "IncrementalExportSpecificationTypeDef",
123
124
  "ExportSummaryTypeDef",
124
125
  "TimestampTypeDef",
126
+ "GetResourcePolicyInputRequestTypeDef",
125
127
  "ProvisionedThroughputDescriptionTypeDef",
126
128
  "S3BucketSourceTypeDef",
127
129
  "PaginatorConfigTypeDef",
@@ -132,6 +134,7 @@ __all__ = (
132
134
  "ListTablesInputRequestTypeDef",
133
135
  "ListTagsOfResourceInputRequestTypeDef",
134
136
  "PointInTimeRecoverySpecificationTypeDef",
137
+ "PutResourcePolicyInputRequestTypeDef",
135
138
  "TableClassSummaryTypeDef",
136
139
  "RestoreSummaryTypeDef",
137
140
  "SSEDescriptionTypeDef",
@@ -142,10 +145,13 @@ __all__ = (
142
145
  "UpdateKinesisStreamingConfigurationTypeDef",
143
146
  "ArchivalSummaryResponseTypeDef",
144
147
  "BillingModeSummaryResponseTypeDef",
148
+ "DeleteResourcePolicyOutputTypeDef",
145
149
  "DescribeLimitsOutputTypeDef",
146
150
  "EmptyResponseMetadataTypeDef",
151
+ "GetResourcePolicyOutputTypeDef",
147
152
  "ListTablesOutputTypeDef",
148
153
  "ProvisionedThroughputDescriptionResponseTypeDef",
154
+ "PutResourcePolicyOutputTypeDef",
149
155
  "RestoreSummaryResponseTypeDef",
150
156
  "SSEDescriptionResponseTypeDef",
151
157
  "StreamSpecificationResponseTypeDef",
@@ -574,6 +580,13 @@ DeleteReplicationGroupMemberActionTypeDef = TypedDict(
574
580
  "RegionName": str,
575
581
  },
576
582
  )
583
+ DeleteResourcePolicyInputRequestTypeDef = TypedDict(
584
+ "DeleteResourcePolicyInputRequestTypeDef",
585
+ {
586
+ "ResourceArn": str,
587
+ "ExpectedRevisionId": NotRequired[str],
588
+ },
589
+ )
577
590
  DeleteTableInputRequestTypeDef = TypedDict(
578
591
  "DeleteTableInputRequestTypeDef",
579
592
  {
@@ -711,6 +724,12 @@ ExportSummaryTypeDef = TypedDict(
711
724
  },
712
725
  )
713
726
  TimestampTypeDef = Union[datetime, str]
727
+ GetResourcePolicyInputRequestTypeDef = TypedDict(
728
+ "GetResourcePolicyInputRequestTypeDef",
729
+ {
730
+ "ResourceArn": str,
731
+ },
732
+ )
714
733
  ProvisionedThroughputDescriptionTypeDef = TypedDict(
715
734
  "ProvisionedThroughputDescriptionTypeDef",
716
735
  {
@@ -789,6 +808,15 @@ PointInTimeRecoverySpecificationTypeDef = TypedDict(
789
808
  "PointInTimeRecoveryEnabled": bool,
790
809
  },
791
810
  )
811
+ PutResourcePolicyInputRequestTypeDef = TypedDict(
812
+ "PutResourcePolicyInputRequestTypeDef",
813
+ {
814
+ "ResourceArn": str,
815
+ "Policy": str,
816
+ "ExpectedRevisionId": NotRequired[str],
817
+ "ConfirmRemoveSelfResourceAccess": NotRequired[bool],
818
+ },
819
+ )
792
820
  TableClassSummaryTypeDef = TypedDict(
793
821
  "TableClassSummaryTypeDef",
794
822
  {
@@ -867,6 +895,13 @@ BillingModeSummaryResponseTypeDef = TypedDict(
867
895
  "ResponseMetadata": ResponseMetadataTypeDef,
868
896
  },
869
897
  )
898
+ DeleteResourcePolicyOutputTypeDef = TypedDict(
899
+ "DeleteResourcePolicyOutputTypeDef",
900
+ {
901
+ "RevisionId": str,
902
+ "ResponseMetadata": ResponseMetadataTypeDef,
903
+ },
904
+ )
870
905
  DescribeLimitsOutputTypeDef = TypedDict(
871
906
  "DescribeLimitsOutputTypeDef",
872
907
  {
@@ -883,6 +918,14 @@ EmptyResponseMetadataTypeDef = TypedDict(
883
918
  "ResponseMetadata": ResponseMetadataTypeDef,
884
919
  },
885
920
  )
921
+ GetResourcePolicyOutputTypeDef = TypedDict(
922
+ "GetResourcePolicyOutputTypeDef",
923
+ {
924
+ "Policy": str,
925
+ "RevisionId": str,
926
+ "ResponseMetadata": ResponseMetadataTypeDef,
927
+ },
928
+ )
886
929
  ListTablesOutputTypeDef = TypedDict(
887
930
  "ListTablesOutputTypeDef",
888
931
  {
@@ -902,6 +945,13 @@ ProvisionedThroughputDescriptionResponseTypeDef = TypedDict(
902
945
  "ResponseMetadata": ResponseMetadataTypeDef,
903
946
  },
904
947
  )
948
+ PutResourcePolicyOutputTypeDef = TypedDict(
949
+ "PutResourcePolicyOutputTypeDef",
950
+ {
951
+ "RevisionId": str,
952
+ "ResponseMetadata": ResponseMetadataTypeDef,
953
+ },
954
+ )
905
955
  RestoreSummaryResponseTypeDef = TypedDict(
906
956
  "RestoreSummaryResponseTypeDef",
907
957
  {
@@ -1992,6 +2042,7 @@ CreateTableInputRequestTypeDef = TypedDict(
1992
2042
  "Tags": NotRequired[Sequence[TagTypeDef]],
1993
2043
  "TableClass": NotRequired[TableClassType],
1994
2044
  "DeletionProtectionEnabled": NotRequired[bool],
2045
+ "ResourcePolicy": NotRequired[str],
1995
2046
  },
1996
2047
  )
1997
2048
  CreateTableInputServiceResourceCreateTableTypeDef = TypedDict(
@@ -2009,6 +2060,7 @@ CreateTableInputServiceResourceCreateTableTypeDef = TypedDict(
2009
2060
  "Tags": NotRequired[Sequence[TagTypeDef]],
2010
2061
  "TableClass": NotRequired[TableClassType],
2011
2062
  "DeletionProtectionEnabled": NotRequired[bool],
2063
+ "ResourcePolicy": NotRequired[str],
2012
2064
  },
2013
2065
  )
2014
2066
  RestoreTableFromBackupInputRequestTypeDef = TypedDict(
@@ -101,6 +101,7 @@ __all__ = (
101
101
  "DeleteGlobalSecondaryIndexActionTypeDef",
102
102
  "DeleteReplicaActionTypeDef",
103
103
  "DeleteReplicationGroupMemberActionTypeDef",
104
+ "DeleteResourcePolicyInputRequestTypeDef",
104
105
  "DeleteTableInputRequestTypeDef",
105
106
  "DescribeBackupInputRequestTypeDef",
106
107
  "DescribeContinuousBackupsInputRequestTypeDef",
@@ -122,6 +123,7 @@ __all__ = (
122
123
  "IncrementalExportSpecificationTypeDef",
123
124
  "ExportSummaryTypeDef",
124
125
  "TimestampTypeDef",
126
+ "GetResourcePolicyInputRequestTypeDef",
125
127
  "ProvisionedThroughputDescriptionTypeDef",
126
128
  "S3BucketSourceTypeDef",
127
129
  "PaginatorConfigTypeDef",
@@ -132,6 +134,7 @@ __all__ = (
132
134
  "ListTablesInputRequestTypeDef",
133
135
  "ListTagsOfResourceInputRequestTypeDef",
134
136
  "PointInTimeRecoverySpecificationTypeDef",
137
+ "PutResourcePolicyInputRequestTypeDef",
135
138
  "TableClassSummaryTypeDef",
136
139
  "RestoreSummaryTypeDef",
137
140
  "SSEDescriptionTypeDef",
@@ -142,10 +145,13 @@ __all__ = (
142
145
  "UpdateKinesisStreamingConfigurationTypeDef",
143
146
  "ArchivalSummaryResponseTypeDef",
144
147
  "BillingModeSummaryResponseTypeDef",
148
+ "DeleteResourcePolicyOutputTypeDef",
145
149
  "DescribeLimitsOutputTypeDef",
146
150
  "EmptyResponseMetadataTypeDef",
151
+ "GetResourcePolicyOutputTypeDef",
147
152
  "ListTablesOutputTypeDef",
148
153
  "ProvisionedThroughputDescriptionResponseTypeDef",
154
+ "PutResourcePolicyOutputTypeDef",
149
155
  "RestoreSummaryResponseTypeDef",
150
156
  "SSEDescriptionResponseTypeDef",
151
157
  "StreamSpecificationResponseTypeDef",
@@ -574,6 +580,13 @@ DeleteReplicationGroupMemberActionTypeDef = TypedDict(
574
580
  "RegionName": str,
575
581
  },
576
582
  )
583
+ DeleteResourcePolicyInputRequestTypeDef = TypedDict(
584
+ "DeleteResourcePolicyInputRequestTypeDef",
585
+ {
586
+ "ResourceArn": str,
587
+ "ExpectedRevisionId": NotRequired[str],
588
+ },
589
+ )
577
590
  DeleteTableInputRequestTypeDef = TypedDict(
578
591
  "DeleteTableInputRequestTypeDef",
579
592
  {
@@ -711,6 +724,12 @@ ExportSummaryTypeDef = TypedDict(
711
724
  },
712
725
  )
713
726
  TimestampTypeDef = Union[datetime, str]
727
+ GetResourcePolicyInputRequestTypeDef = TypedDict(
728
+ "GetResourcePolicyInputRequestTypeDef",
729
+ {
730
+ "ResourceArn": str,
731
+ },
732
+ )
714
733
  ProvisionedThroughputDescriptionTypeDef = TypedDict(
715
734
  "ProvisionedThroughputDescriptionTypeDef",
716
735
  {
@@ -789,6 +808,15 @@ PointInTimeRecoverySpecificationTypeDef = TypedDict(
789
808
  "PointInTimeRecoveryEnabled": bool,
790
809
  },
791
810
  )
811
+ PutResourcePolicyInputRequestTypeDef = TypedDict(
812
+ "PutResourcePolicyInputRequestTypeDef",
813
+ {
814
+ "ResourceArn": str,
815
+ "Policy": str,
816
+ "ExpectedRevisionId": NotRequired[str],
817
+ "ConfirmRemoveSelfResourceAccess": NotRequired[bool],
818
+ },
819
+ )
792
820
  TableClassSummaryTypeDef = TypedDict(
793
821
  "TableClassSummaryTypeDef",
794
822
  {
@@ -867,6 +895,13 @@ BillingModeSummaryResponseTypeDef = TypedDict(
867
895
  "ResponseMetadata": ResponseMetadataTypeDef,
868
896
  },
869
897
  )
898
+ DeleteResourcePolicyOutputTypeDef = TypedDict(
899
+ "DeleteResourcePolicyOutputTypeDef",
900
+ {
901
+ "RevisionId": str,
902
+ "ResponseMetadata": ResponseMetadataTypeDef,
903
+ },
904
+ )
870
905
  DescribeLimitsOutputTypeDef = TypedDict(
871
906
  "DescribeLimitsOutputTypeDef",
872
907
  {
@@ -883,6 +918,14 @@ EmptyResponseMetadataTypeDef = TypedDict(
883
918
  "ResponseMetadata": ResponseMetadataTypeDef,
884
919
  },
885
920
  )
921
+ GetResourcePolicyOutputTypeDef = TypedDict(
922
+ "GetResourcePolicyOutputTypeDef",
923
+ {
924
+ "Policy": str,
925
+ "RevisionId": str,
926
+ "ResponseMetadata": ResponseMetadataTypeDef,
927
+ },
928
+ )
886
929
  ListTablesOutputTypeDef = TypedDict(
887
930
  "ListTablesOutputTypeDef",
888
931
  {
@@ -902,6 +945,13 @@ ProvisionedThroughputDescriptionResponseTypeDef = TypedDict(
902
945
  "ResponseMetadata": ResponseMetadataTypeDef,
903
946
  },
904
947
  )
948
+ PutResourcePolicyOutputTypeDef = TypedDict(
949
+ "PutResourcePolicyOutputTypeDef",
950
+ {
951
+ "RevisionId": str,
952
+ "ResponseMetadata": ResponseMetadataTypeDef,
953
+ },
954
+ )
905
955
  RestoreSummaryResponseTypeDef = TypedDict(
906
956
  "RestoreSummaryResponseTypeDef",
907
957
  {
@@ -1992,6 +2042,7 @@ CreateTableInputRequestTypeDef = TypedDict(
1992
2042
  "Tags": NotRequired[Sequence[TagTypeDef]],
1993
2043
  "TableClass": NotRequired[TableClassType],
1994
2044
  "DeletionProtectionEnabled": NotRequired[bool],
2045
+ "ResourcePolicy": NotRequired[str],
1995
2046
  },
1996
2047
  )
1997
2048
  CreateTableInputServiceResourceCreateTableTypeDef = TypedDict(
@@ -2009,6 +2060,7 @@ CreateTableInputServiceResourceCreateTableTypeDef = TypedDict(
2009
2060
  "Tags": NotRequired[Sequence[TagTypeDef]],
2010
2061
  "TableClass": NotRequired[TableClassType],
2011
2062
  "DeletionProtectionEnabled": NotRequired[bool],
2063
+ "ResourcePolicy": NotRequired[str],
2012
2064
  },
2013
2065
  )
2014
2066
  RestoreTableFromBackupInputRequestTypeDef = TypedDict(
@@ -2,4 +2,4 @@
2
2
  Source of truth for version.
3
3
  """
4
4
 
5
- __version__ = "1.34.57"
5
+ __version__ = "1.34.67"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mypy-boto3-dynamodb
3
- Version: 1.34.57
4
- Summary: Type annotations for boto3.DynamoDB 1.34.57 service generated with mypy-boto3-builder 7.23.2
3
+ Version: 1.34.67
4
+ Summary: Type annotations for boto3.DynamoDB 1.34.67 service generated with mypy-boto3-builder 7.23.2
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.34.57](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#DynamoDB)
46
+ [boto3.DynamoDB 1.34.67](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/),
@@ -0,0 +1,22 @@
1
+ mypy_boto3_dynamodb/__init__.py,sha256=GMdsocJat-pPuRXyCmJcizZ1LKMSLPgLD7SYG-zOa14,1857
2
+ mypy_boto3_dynamodb/__init__.pyi,sha256=GMdsocJat-pPuRXyCmJcizZ1LKMSLPgLD7SYG-zOa14,1857
3
+ mypy_boto3_dynamodb/__main__.py,sha256=J4NWFWJCuz_qzxD3U840JBvVSOXjleHesuYg_nDVxtQ,923
4
+ mypy_boto3_dynamodb/client.py,sha256=e-PFItfIrx3vZ8Chgg3wsSc41fOwZ2Q3tXwty3_ic8o,51500
5
+ mypy_boto3_dynamodb/client.pyi,sha256=W_7rLH-lVfTUcqImSmBOAvUR9NwiCmeWPxnz7hUIXYc,51497
6
+ mypy_boto3_dynamodb/literals.py,sha256=qZUaHUvOafbgHTJKMQFB-QZHT3gaN8QH-BW4grLngRo,13918
7
+ mypy_boto3_dynamodb/literals.pyi,sha256=qZUaHUvOafbgHTJKMQFB-QZHT3gaN8QH-BW4grLngRo,13918
8
+ mypy_boto3_dynamodb/paginator.py,sha256=f03nXXsUgkQ2oMZ5VeDdUWhmHarJjo4UY4NWGdIBRwI,7480
9
+ mypy_boto3_dynamodb/paginator.pyi,sha256=CDR12_4ExFt03vv_k9BAT9k0aURoYX47BxplhcTfyWk,7474
10
+ mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_dynamodb/service_resource.py,sha256=x4ADL8_CJ18rCTx-0HWw1Tri6OoBW_1XJ-8wk1frHKs,22613
12
+ mypy_boto3_dynamodb/service_resource.pyi,sha256=ET3ixf3igdcmAw9MUDBAk18qARyFhw2i6V7XoSnu4K8,22608
13
+ mypy_boto3_dynamodb/type_defs.py,sha256=AC59jbATxsWY2JUcf1tFZMoXb0ilAwncye_4N1HvoBo,101111
14
+ mypy_boto3_dynamodb/type_defs.pyi,sha256=AC59jbATxsWY2JUcf1tFZMoXb0ilAwncye_4N1HvoBo,101111
15
+ mypy_boto3_dynamodb/version.py,sha256=QVD5vW--E8nnEN-QIw0BSg-n-QW2VCU93MYBwGzdhXo,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.34.67.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
19
+ mypy_boto3_dynamodb-1.34.67.dist-info/METADATA,sha256=65WgpNPT4n7kY3Mttygpeap6gV40Qj6nwxSoFRyvBmc,16272
20
+ mypy_boto3_dynamodb-1.34.67.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
21
+ mypy_boto3_dynamodb-1.34.67.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
22
+ mypy_boto3_dynamodb-1.34.67.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: bdist_wheel (0.43.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=GMdsocJat-pPuRXyCmJcizZ1LKMSLPgLD7SYG-zOa14,1857
2
- mypy_boto3_dynamodb/__init__.pyi,sha256=GMdsocJat-pPuRXyCmJcizZ1LKMSLPgLD7SYG-zOa14,1857
3
- mypy_boto3_dynamodb/__main__.py,sha256=d3XduxHP4JlxI1QvegLiB82yU7sYitK7khCIR8MvGL4,923
4
- mypy_boto3_dynamodb/client.py,sha256=uIiSZiWwRABuOWP7BYvb4aXq3SmYmzA7h2CyXLTmFzQ,49496
5
- mypy_boto3_dynamodb/client.pyi,sha256=hrr1NgTbKjT9oxbMGHV3uRVMYajsdhPOdbd3lqGHyys,49493
6
- mypy_boto3_dynamodb/literals.py,sha256=yP-oVAXbMbhcrMBHOPLaBhVP9H2ZgIFXWJH8Va922Wc,13913
7
- mypy_boto3_dynamodb/literals.pyi,sha256=yP-oVAXbMbhcrMBHOPLaBhVP9H2ZgIFXWJH8Va922Wc,13913
8
- mypy_boto3_dynamodb/paginator.py,sha256=f03nXXsUgkQ2oMZ5VeDdUWhmHarJjo4UY4NWGdIBRwI,7480
9
- mypy_boto3_dynamodb/paginator.pyi,sha256=CDR12_4ExFt03vv_k9BAT9k0aURoYX47BxplhcTfyWk,7474
10
- mypy_boto3_dynamodb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_dynamodb/service_resource.py,sha256=DWNzQ5Btre1un-twctIZw0iIzktHFkfyVekFbEfkhAk,22578
12
- mypy_boto3_dynamodb/service_resource.pyi,sha256=daueURsZevQCs0ewhsd3C3mof8fmrux6DyzXvcOiqsg,22573
13
- mypy_boto3_dynamodb/type_defs.py,sha256=rzBm5RRyjiIr3baCj-S7rFbE5NnuOdcuRkKiD3GOP6c,99613
14
- mypy_boto3_dynamodb/type_defs.pyi,sha256=rzBm5RRyjiIr3baCj-S7rFbE5NnuOdcuRkKiD3GOP6c,99613
15
- mypy_boto3_dynamodb/version.py,sha256=pUQdxQUJ9VwzgG2et9Y6bpsGESnmx6FAP7ijbZxgTQA,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.34.57.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
19
- mypy_boto3_dynamodb-1.34.57.dist-info/METADATA,sha256=Md7hLzh4UOIL2iOOG-v1N1rEhXLRwKsGPWU3zSJ0L2s,16272
20
- mypy_boto3_dynamodb-1.34.57.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
21
- mypy_boto3_dynamodb-1.34.57.dist-info/top_level.txt,sha256=QxApsWxKFAcW2cmcxwGGHYl6FlOK1EYbSYEknyOyFAY,20
22
- mypy_boto3_dynamodb-1.34.57.dist-info/RECORD,,