aws-cdk-lib 2.100.0__py3-none-any.whl → 2.101.1__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.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

Files changed (38) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.100.0.jsii.tgz → aws-cdk-lib@2.101.1.jsii.tgz} +0 -0
  3. aws_cdk/aws_apigatewayv2/__init__.py +0 -8
  4. aws_cdk/aws_appconfig/__init__.py +101 -18
  5. aws_cdk/aws_apprunner/__init__.py +5 -2
  6. aws_cdk/aws_appstream/__init__.py +18 -26
  7. aws_cdk/aws_cloudfront/__init__.py +251 -3
  8. aws_cdk/aws_cloudtrail/__init__.py +47 -3
  9. aws_cdk/aws_cognito/__init__.py +414 -8
  10. aws_cdk/aws_dlm/__init__.py +10 -9
  11. aws_cdk/aws_ec2/__init__.py +308 -179
  12. aws_cdk/aws_events/__init__.py +62 -86
  13. aws_cdk/aws_fms/__init__.py +3 -3
  14. aws_cdk/aws_grafana/__init__.py +4 -4
  15. aws_cdk/aws_greengrassv2/__init__.py +1 -8
  16. aws_cdk/aws_iot/__init__.py +714 -0
  17. aws_cdk/aws_iotsitewise/__init__.py +3 -3
  18. aws_cdk/aws_kinesisanalytics/__init__.py +15 -15
  19. aws_cdk/aws_kinesisanalyticsv2/__init__.py +15 -15
  20. aws_cdk/aws_kinesisfirehose/__init__.py +87 -40
  21. aws_cdk/aws_lambda/__init__.py +34 -4
  22. aws_cdk/aws_lightsail/__init__.py +3 -1
  23. aws_cdk/aws_mediatailor/__init__.py +24 -1
  24. aws_cdk/aws_quicksight/__init__.py +2508 -55
  25. aws_cdk/aws_rds/__init__.py +121 -51
  26. aws_cdk/aws_sagemaker/__init__.py +5 -3
  27. aws_cdk/aws_sns/__init__.py +42 -5
  28. aws_cdk/aws_ssm/__init__.py +0 -8
  29. aws_cdk/aws_stepfunctions/__init__.py +233 -16
  30. aws_cdk/aws_stepfunctions_tasks/__init__.py +926 -27
  31. aws_cdk/aws_transfer/__init__.py +4 -4
  32. aws_cdk/aws_workspacesweb/__init__.py +3 -3
  33. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/METADATA +1 -1
  34. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/RECORD +38 -38
  35. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/LICENSE +0 -0
  36. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/NOTICE +0 -0
  37. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/WHEEL +0 -0
  38. {aws_cdk_lib-2.100.0.dist-info → aws_cdk_lib-2.101.1.dist-info}/top_level.txt +0 -0
@@ -1227,7 +1227,7 @@ class CfnTopicInlinePolicy(
1227
1227
  metaclass=jsii.JSIIMeta,
1228
1228
  jsii_type="aws-cdk-lib.aws_sns.CfnTopicInlinePolicy",
1229
1229
  ):
1230
- '''Schema for AWS::SNS::TopicInlinePolicy.
1230
+ '''The ``AWS::SNS::TopicInlinePolicy`` resource associates one Amazon SNS topic with one policy.
1231
1231
 
1232
1232
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-topicinlinepolicy.html
1233
1233
  :cloudformationResource: AWS::SNS::TopicInlinePolicy
@@ -1258,7 +1258,7 @@ class CfnTopicInlinePolicy(
1258
1258
  '''
1259
1259
  :param scope: Scope in which this resource is defined.
1260
1260
  :param id: Construct identifier for this resource (unique in its scope).
1261
- :param policy_document: A policy document that contains permissions to add to the specified SNS topics.
1261
+ :param policy_document: A policy document that contains permissions to add to the specified Amazon SNS topic.
1262
1262
  :param topic_arn: The Amazon Resource Name (ARN) of the topic to which you want to add the policy.
1263
1263
  '''
1264
1264
  if __debug__:
@@ -1309,7 +1309,7 @@ class CfnTopicInlinePolicy(
1309
1309
  @builtins.property
1310
1310
  @jsii.member(jsii_name="policyDocument")
1311
1311
  def policy_document(self) -> typing.Any:
1312
- '''A policy document that contains permissions to add to the specified SNS topics.'''
1312
+ '''A policy document that contains permissions to add to the specified Amazon SNS topic.'''
1313
1313
  return typing.cast(typing.Any, jsii.get(self, "policyDocument"))
1314
1314
 
1315
1315
  @policy_document.setter
@@ -1342,7 +1342,7 @@ class CfnTopicInlinePolicyProps:
1342
1342
  def __init__(self, *, policy_document: typing.Any, topic_arn: builtins.str) -> None:
1343
1343
  '''Properties for defining a ``CfnTopicInlinePolicy``.
1344
1344
 
1345
- :param policy_document: A policy document that contains permissions to add to the specified SNS topics.
1345
+ :param policy_document: A policy document that contains permissions to add to the specified Amazon SNS topic.
1346
1346
  :param topic_arn: The Amazon Resource Name (ARN) of the topic to which you want to add the policy.
1347
1347
 
1348
1348
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-topicinlinepolicy.html
@@ -1372,7 +1372,7 @@ class CfnTopicInlinePolicyProps:
1372
1372
 
1373
1373
  @builtins.property
1374
1374
  def policy_document(self) -> typing.Any:
1375
- '''A policy document that contains permissions to add to the specified SNS topics.
1375
+ '''A policy document that contains permissions to add to the specified Amazon SNS topic.
1376
1376
 
1377
1377
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-topicinlinepolicy.html#cfn-sns-topicinlinepolicy-policydocument
1378
1378
  '''
@@ -1954,6 +1954,15 @@ class ITopic(
1954
1954
  ):
1955
1955
  '''Represents an SNS topic.'''
1956
1956
 
1957
+ @builtins.property
1958
+ @jsii.member(jsii_name="contentBasedDeduplication")
1959
+ def content_based_deduplication(self) -> builtins.bool:
1960
+ '''Enables content-based deduplication for FIFO topics.
1961
+
1962
+ :attribute: true
1963
+ '''
1964
+ ...
1965
+
1957
1966
  @builtins.property
1958
1967
  @jsii.member(jsii_name="fifo")
1959
1968
  def fifo(self) -> builtins.bool:
@@ -2303,6 +2312,15 @@ class _ITopicProxy(
2303
2312
 
2304
2313
  __jsii_type__: typing.ClassVar[str] = "aws-cdk-lib.aws_sns.ITopic"
2305
2314
 
2315
+ @builtins.property
2316
+ @jsii.member(jsii_name="contentBasedDeduplication")
2317
+ def content_based_deduplication(self) -> builtins.bool:
2318
+ '''Enables content-based deduplication for FIFO topics.
2319
+
2320
+ :attribute: true
2321
+ '''
2322
+ return typing.cast(builtins.bool, jsii.get(self, "contentBasedDeduplication"))
2323
+
2306
2324
  @builtins.property
2307
2325
  @jsii.member(jsii_name="fifo")
2308
2326
  def fifo(self) -> builtins.bool:
@@ -4254,6 +4272,13 @@ class TopicBase(
4254
4272
  '''
4255
4273
  ...
4256
4274
 
4275
+ @builtins.property
4276
+ @jsii.member(jsii_name="contentBasedDeduplication")
4277
+ @abc.abstractmethod
4278
+ def content_based_deduplication(self) -> builtins.bool:
4279
+ '''Enables content-based deduplication for FIFO topics.'''
4280
+ ...
4281
+
4257
4282
  @builtins.property
4258
4283
  @jsii.member(jsii_name="fifo")
4259
4284
  @abc.abstractmethod
@@ -4292,6 +4317,12 @@ class _TopicBaseProxy(
4292
4317
  '''
4293
4318
  return typing.cast(builtins.bool, jsii.get(self, "autoCreatePolicy"))
4294
4319
 
4320
+ @builtins.property
4321
+ @jsii.member(jsii_name="contentBasedDeduplication")
4322
+ def content_based_deduplication(self) -> builtins.bool:
4323
+ '''Enables content-based deduplication for FIFO topics.'''
4324
+ return typing.cast(builtins.bool, jsii.get(self, "contentBasedDeduplication"))
4325
+
4295
4326
  @builtins.property
4296
4327
  @jsii.member(jsii_name="fifo")
4297
4328
  def fifo(self) -> builtins.bool:
@@ -4955,6 +4986,12 @@ class Topic(TopicBase, metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_sns.T
4955
4986
  '''
4956
4987
  return typing.cast(builtins.bool, jsii.get(self, "autoCreatePolicy"))
4957
4988
 
4989
+ @builtins.property
4990
+ @jsii.member(jsii_name="contentBasedDeduplication")
4991
+ def content_based_deduplication(self) -> builtins.bool:
4992
+ '''Enables content-based deduplication for FIFO topics.'''
4993
+ return typing.cast(builtins.bool, jsii.get(self, "contentBasedDeduplication"))
4994
+
4958
4995
  @builtins.property
4959
4996
  @jsii.member(jsii_name="fifo")
4960
4997
  def fifo(self) -> builtins.bool:
@@ -4706,14 +4706,6 @@ class CfnParameter(
4706
4706
  '''The CloudFormation resource type name for this resource class.'''
4707
4707
  return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
4708
4708
 
4709
- @builtins.property
4710
- @jsii.member(jsii_name="attrId")
4711
- def attr_id(self) -> builtins.str:
4712
- '''
4713
- :cloudformationAttribute: Id
4714
- '''
4715
- return typing.cast(builtins.str, jsii.get(self, "attrId"))
4716
-
4717
4709
  @builtins.property
4718
4710
  @jsii.member(jsii_name="attrType")
4719
4711
  def attr_type(self) -> builtins.str: