aws-cdk-lib 2.129.0__py3-none-any.whl → 2.131.0__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 (75) hide show
  1. aws_cdk/__init__.py +41 -21
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.129.0.jsii.tgz → aws-cdk-lib@2.131.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigatewayv2/__init__.py +52 -11
  5. aws_cdk/aws_apigatewayv2_integrations/__init__.py +286 -0
  6. aws_cdk/aws_appconfig/__init__.py +13062 -2713
  7. aws_cdk/aws_applicationautoscaling/__init__.py +80 -123
  8. aws_cdk/aws_applicationinsights/__init__.py +48 -0
  9. aws_cdk/aws_apprunner/__init__.py +8 -1
  10. aws_cdk/aws_appstream/__init__.py +8 -1
  11. aws_cdk/aws_appsync/__init__.py +324 -103
  12. aws_cdk/aws_athena/__init__.py +8 -1
  13. aws_cdk/aws_b2bi/__init__.py +30 -4
  14. aws_cdk/aws_backup/__init__.py +80 -56
  15. aws_cdk/aws_bedrock/__init__.py +13 -1
  16. aws_cdk/aws_cleanrooms/__init__.py +37 -5
  17. aws_cdk/aws_cloudtrail/__init__.py +23 -1
  18. aws_cdk/aws_codebuild/__init__.py +8 -1
  19. aws_cdk/aws_codestarconnections/__init__.py +8 -1
  20. aws_cdk/aws_cognito/__init__.py +21 -21
  21. aws_cdk/aws_comprehend/__init__.py +8 -1
  22. aws_cdk/aws_connect/__init__.py +57 -8
  23. aws_cdk/aws_controltower/__init__.py +27 -7
  24. aws_cdk/aws_customerprofiles/__init__.py +136 -123
  25. aws_cdk/aws_datapipeline/__init__.py +19 -11
  26. aws_cdk/aws_datasync/__init__.py +8 -1
  27. aws_cdk/aws_datazone/__init__.py +9 -1
  28. aws_cdk/aws_dms/__init__.py +29 -4
  29. aws_cdk/aws_docdb/__init__.py +131 -5
  30. aws_cdk/aws_ec2/__init__.py +178 -65
  31. aws_cdk/aws_ecs/__init__.py +43 -51
  32. aws_cdk/aws_ecs_patterns/__init__.py +214 -0
  33. aws_cdk/aws_eks/__init__.py +44 -3
  34. aws_cdk/aws_elasticache/__init__.py +8 -1
  35. aws_cdk/aws_elasticloadbalancingv2/__init__.py +8 -1
  36. aws_cdk/aws_emr/__init__.py +8 -1
  37. aws_cdk/aws_entityresolution/__init__.py +23 -3
  38. aws_cdk/aws_events/__init__.py +12 -1
  39. aws_cdk/aws_fms/__init__.py +8 -1
  40. aws_cdk/aws_glue/__init__.py +18 -4
  41. aws_cdk/aws_healthimaging/__init__.py +9 -1
  42. aws_cdk/aws_inspectorv2/__init__.py +9 -1
  43. aws_cdk/aws_iot/__init__.py +29 -4
  44. aws_cdk/aws_ivs/__init__.py +8 -1
  45. aws_cdk/aws_kms/__init__.py +1 -1
  46. aws_cdk/aws_lambda/__init__.py +3 -5
  47. aws_cdk/aws_location/__init__.py +44 -6
  48. aws_cdk/aws_logs/__init__.py +22 -3
  49. aws_cdk/aws_macie/__init__.py +15 -2
  50. aws_cdk/aws_medialive/__init__.py +8 -1
  51. aws_cdk/aws_mediapackagev2/__init__.py +23 -3
  52. aws_cdk/aws_mediatailor/__init__.py +29 -4
  53. aws_cdk/aws_msk/__init__.py +8 -1
  54. aws_cdk/aws_neptunegraph/__init__.py +9 -1
  55. aws_cdk/aws_networkfirewall/__init__.py +8 -1
  56. aws_cdk/aws_opensearchservice/__init__.py +6 -3
  57. aws_cdk/aws_pcaconnectorad/__init__.py +23 -3
  58. aws_cdk/aws_pinpointemail/__init__.py +23 -3
  59. aws_cdk/aws_quicksight/__init__.py +37 -0
  60. aws_cdk/aws_rds/__init__.py +52 -9
  61. aws_cdk/aws_route53resolver/__init__.py +8 -1
  62. aws_cdk/aws_s3/__init__.py +29 -4
  63. aws_cdk/aws_sagemaker/__init__.py +19 -8
  64. aws_cdk/aws_securityhub/__init__.py +8 -1
  65. aws_cdk/aws_shield/__init__.py +16 -2
  66. aws_cdk/aws_workspacesthinclient/__init__.py +9 -1
  67. aws_cdk/aws_workspacesweb/__init__.py +51 -7
  68. aws_cdk/aws_xray/__init__.py +16 -2
  69. aws_cdk/pipelines/__init__.py +3 -2
  70. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/METADATA +1 -1
  71. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/NOTICE +30 -0
  72. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/RECORD +75 -75
  73. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/LICENSE +0 -0
  74. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/WHEEL +0 -0
  75. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/top_level.txt +0 -0
@@ -45,11 +45,13 @@ from .. import (
45
45
  CfnTag as _CfnTag_f6864754,
46
46
  IInspectable as _IInspectable_c2943556,
47
47
  IResolvable as _IResolvable_da3f097b,
48
+ ITaggableV2 as _ITaggableV2_4e6798f8,
49
+ TagManager as _TagManager_0a598cb3,
48
50
  TreeInspector as _TreeInspector_488e0dd5,
49
51
  )
50
52
 
51
53
 
52
- @jsii.implements(_IInspectable_c2943556)
54
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
53
55
  class CfnEnabledBaseline(
54
56
  _CfnResource_9df397a6,
55
57
  metaclass=jsii.JSIIMeta,
@@ -159,6 +161,12 @@ class CfnEnabledBaseline(
159
161
  '''
160
162
  return typing.cast(builtins.str, jsii.get(self, "attrEnabledBaselineIdentifier"))
161
163
 
164
+ @builtins.property
165
+ @jsii.member(jsii_name="cdkTagManager")
166
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
167
+ '''Tag Manager which manages the tags for this resource.'''
168
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
169
+
162
170
  @builtins.property
163
171
  @jsii.member(jsii_name="cfnProperties")
164
172
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -444,7 +452,7 @@ class CfnEnabledBaselineProps:
444
452
  )
445
453
 
446
454
 
447
- @jsii.implements(_IInspectable_c2943556)
455
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
448
456
  class CfnEnabledControl(
449
457
  _CfnResource_9df397a6,
450
458
  metaclass=jsii.JSIIMeta,
@@ -498,7 +506,7 @@ class CfnEnabledControl(
498
506
  :param control_identifier: The ARN of the control. Only *Strongly recommended* and *Elective* controls are permitted, with the exception of the *Region deny* control. For information on how to find the ``controlIdentifier`` , see `the overview page <https://docs.aws.amazon.com//controltower/latest/APIReference/Welcome.html>`_ .
499
507
  :param target_identifier: The ARN of the organizational unit. For information on how to find the ``targetIdentifier`` , see `the overview page <https://docs.aws.amazon.com//controltower/latest/APIReference/Welcome.html>`_ .
500
508
  :param parameters: Array of ``EnabledControlParameter`` objects.
501
- :param tags: A set of tags to assign to the enabled control.
509
+ :param tags: Tags to be applied to the enabled control.
502
510
  '''
503
511
  if __debug__:
504
512
  type_hints = typing.get_type_hints(_typecheckingstub__1f147c3cf3aed5100105feba92fb41fa040a90e250e566c4f852830a75cfc586)
@@ -543,6 +551,12 @@ class CfnEnabledControl(
543
551
  '''The CloudFormation resource type name for this resource class.'''
544
552
  return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
545
553
 
554
+ @builtins.property
555
+ @jsii.member(jsii_name="cdkTagManager")
556
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
557
+ '''Tag Manager which manages the tags for this resource.'''
558
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
559
+
546
560
  @builtins.property
547
561
  @jsii.member(jsii_name="cfnProperties")
548
562
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -595,7 +609,7 @@ class CfnEnabledControl(
595
609
  @builtins.property
596
610
  @jsii.member(jsii_name="tags")
597
611
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
598
- '''A set of tags to assign to the enabled control.'''
612
+ '''Tags to be applied to the enabled control.'''
599
613
  return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
600
614
 
601
615
  @tags.setter
@@ -704,7 +718,7 @@ class CfnEnabledControlProps:
704
718
  :param control_identifier: The ARN of the control. Only *Strongly recommended* and *Elective* controls are permitted, with the exception of the *Region deny* control. For information on how to find the ``controlIdentifier`` , see `the overview page <https://docs.aws.amazon.com//controltower/latest/APIReference/Welcome.html>`_ .
705
719
  :param target_identifier: The ARN of the organizational unit. For information on how to find the ``targetIdentifier`` , see `the overview page <https://docs.aws.amazon.com//controltower/latest/APIReference/Welcome.html>`_ .
706
720
  :param parameters: Array of ``EnabledControlParameter`` objects.
707
- :param tags: A set of tags to assign to the enabled control.
721
+ :param tags: Tags to be applied to the enabled control.
708
722
 
709
723
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledcontrol.html
710
724
  :exampleMetadata: fixture=_generated
@@ -784,7 +798,7 @@ class CfnEnabledControlProps:
784
798
 
785
799
  @builtins.property
786
800
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
787
- '''A set of tags to assign to the enabled control.
801
+ '''Tags to be applied to the enabled control.
788
802
 
789
803
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledcontrol.html#cfn-controltower-enabledcontrol-tags
790
804
  '''
@@ -803,7 +817,7 @@ class CfnEnabledControlProps:
803
817
  )
804
818
 
805
819
 
806
- @jsii.implements(_IInspectable_c2943556)
820
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
807
821
  class CfnLandingZone(
808
822
  _CfnResource_9df397a6,
809
823
  metaclass=jsii.JSIIMeta,
@@ -938,6 +952,12 @@ class CfnLandingZone(
938
952
  '''
939
953
  return typing.cast(builtins.str, jsii.get(self, "attrStatus"))
940
954
 
955
+ @builtins.property
956
+ @jsii.member(jsii_name="cdkTagManager")
957
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
958
+ '''Tag Manager which manages the tags for this resource.'''
959
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
960
+
941
961
  @builtins.property
942
962
  @jsii.member(jsii_name="cfnProperties")
943
963
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]: