aws-cdk-lib 2.194.0__py3-none-any.whl → 2.196.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 (108) hide show
  1. aws_cdk/__init__.py +435 -20
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.194.0.jsii.tgz → aws-cdk-lib@2.196.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_acmpca/__init__.py +1 -1
  5. aws_cdk/aws_amazonmq/__init__.py +2 -2
  6. aws_cdk/aws_apigateway/__init__.py +208 -70
  7. aws_cdk/aws_apigatewayv2/__init__.py +155 -24
  8. aws_cdk/aws_appconfig/__init__.py +24 -0
  9. aws_cdk/aws_applicationautoscaling/__init__.py +6 -0
  10. aws_cdk/aws_appmesh/__init__.py +42 -0
  11. aws_cdk/aws_appsync/__init__.py +92 -20
  12. aws_cdk/aws_autoscaling/__init__.py +24 -0
  13. aws_cdk/aws_backup/__init__.py +53 -14
  14. aws_cdk/aws_batch/__init__.py +72 -0
  15. aws_cdk/aws_bedrock/__init__.py +1201 -18
  16. aws_cdk/aws_budgets/__init__.py +569 -0
  17. aws_cdk/aws_certificatemanager/__init__.py +21 -0
  18. aws_cdk/aws_chatbot/__init__.py +6 -0
  19. aws_cdk/aws_cloudfront/__init__.py +277 -120
  20. aws_cdk/aws_cloudfront/experimental/__init__.py +6 -0
  21. aws_cdk/aws_cloudtrail/__init__.py +6 -0
  22. aws_cdk/aws_cloudwatch/__init__.py +18 -0
  23. aws_cdk/aws_cloudwatch_actions/__init__.py +75 -1
  24. aws_cdk/aws_codebuild/__init__.py +48 -0
  25. aws_cdk/aws_codecommit/__init__.py +6 -0
  26. aws_cdk/aws_codedeploy/__init__.py +63 -0
  27. aws_cdk/aws_codeguruprofiler/__init__.py +6 -0
  28. aws_cdk/aws_codepipeline/__init__.py +114 -0
  29. aws_cdk/aws_codepipeline_actions/__init__.py +4 -4
  30. aws_cdk/aws_codestarnotifications/__init__.py +6 -0
  31. aws_cdk/aws_cognito/__init__.py +215 -10
  32. aws_cdk/aws_cognito_identitypool/__init__.py +6 -0
  33. aws_cdk/aws_config/__init__.py +36 -0
  34. aws_cdk/aws_datazone/__init__.py +1013 -100
  35. aws_cdk/aws_docdb/__init__.py +27 -3
  36. aws_cdk/aws_dsql/__init__.py +29 -12
  37. aws_cdk/aws_dynamodb/__init__.py +25 -11
  38. aws_cdk/aws_ec2/__init__.py +408 -23
  39. aws_cdk/aws_ecr/__init__.py +22 -14
  40. aws_cdk/aws_ecr_assets/__init__.py +6 -0
  41. aws_cdk/aws_ecs/__init__.py +116 -34
  42. aws_cdk/aws_ecs_patterns/__init__.py +58 -0
  43. aws_cdk/aws_efs/__init__.py +12 -0
  44. aws_cdk/aws_eks/__init__.py +42 -0
  45. aws_cdk/aws_elasticloadbalancing/__init__.py +6 -0
  46. aws_cdk/aws_elasticloadbalancingv2/__init__.py +112 -9
  47. aws_cdk/aws_elasticsearch/__init__.py +9 -0
  48. aws_cdk/aws_events/__init__.py +36 -0
  49. aws_cdk/aws_events_targets/__init__.py +10 -10
  50. aws_cdk/aws_fsx/__init__.py +8 -3
  51. aws_cdk/aws_globalaccelerator/__init__.py +18 -0
  52. aws_cdk/aws_iam/__init__.py +66 -0
  53. aws_cdk/aws_imagebuilder/__init__.py +181 -26
  54. aws_cdk/aws_inspector/__init__.py +6 -0
  55. aws_cdk/aws_kinesis/__init__.py +19 -1
  56. aws_cdk/aws_kinesisanalytics/__init__.py +7 -7
  57. aws_cdk/aws_kinesisanalyticsv2/__init__.py +7 -7
  58. aws_cdk/aws_kinesisfirehose/__init__.py +6 -0
  59. aws_cdk/aws_kms/__init__.py +16 -4
  60. aws_cdk/aws_lambda/__init__.py +76 -6
  61. aws_cdk/aws_lambda_nodejs/__init__.py +6 -0
  62. aws_cdk/aws_logs/__init__.py +155 -12
  63. aws_cdk/aws_medialive/__init__.py +4 -6
  64. aws_cdk/aws_mediatailor/__init__.py +115 -0
  65. aws_cdk/aws_oam/__init__.py +43 -10
  66. aws_cdk/aws_opensearchservice/__init__.py +12 -0
  67. aws_cdk/aws_qbusiness/__init__.py +2 -2
  68. aws_cdk/aws_quicksight/__init__.py +22 -22
  69. aws_cdk/aws_rds/__init__.py +347 -36
  70. aws_cdk/aws_redshiftserverless/__init__.py +7 -7
  71. aws_cdk/aws_route53/__init__.py +735 -33
  72. aws_cdk/aws_route53_targets/__init__.py +62 -1
  73. aws_cdk/aws_route53profiles/__init__.py +1 -1
  74. aws_cdk/aws_s3/__init__.py +37 -10
  75. aws_cdk/aws_s3_deployment/__init__.py +6 -0
  76. aws_cdk/aws_s3_notifications/__init__.py +5 -5
  77. aws_cdk/aws_sagemaker/__init__.py +452 -8
  78. aws_cdk/aws_scheduler/__init__.py +12 -0
  79. aws_cdk/aws_secretsmanager/__init__.py +24 -0
  80. aws_cdk/aws_servicecatalog/__init__.py +24 -0
  81. aws_cdk/aws_servicediscovery/__init__.py +48 -0
  82. aws_cdk/aws_ses/__init__.py +133 -33
  83. aws_cdk/aws_signer/__init__.py +6 -0
  84. aws_cdk/aws_sns/__init__.py +18 -0
  85. aws_cdk/aws_sns_subscriptions/__init__.py +6 -0
  86. aws_cdk/aws_sqs/__init__.py +12 -0
  87. aws_cdk/aws_ssm/__init__.py +12 -0
  88. aws_cdk/aws_ssmcontacts/__init__.py +53 -2
  89. aws_cdk/aws_ssmguiconnect/__init__.py +544 -0
  90. aws_cdk/aws_stepfunctions/__init__.py +153 -7
  91. aws_cdk/aws_stepfunctions_tasks/__init__.py +46 -10
  92. aws_cdk/aws_synthetics/__init__.py +32 -0
  93. aws_cdk/aws_verifiedpermissions/__init__.py +168 -3
  94. aws_cdk/aws_vpclattice/__init__.py +3 -1
  95. aws_cdk/aws_wisdom/__init__.py +6 -4
  96. aws_cdk/cloud_assembly_schema/__init__.py +7 -1
  97. aws_cdk/custom_resources/__init__.py +18 -0
  98. aws_cdk/cx_api/__init__.py +33 -0
  99. aws_cdk/lambda_layer_awscli/__init__.py +6 -0
  100. aws_cdk/lambda_layer_node_proxy_agent/__init__.py +6 -0
  101. aws_cdk/pipelines/__init__.py +10 -10
  102. aws_cdk/triggers/__init__.py +6 -0
  103. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/METADATA +84 -6
  104. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/RECORD +108 -107
  105. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/LICENSE +0 -0
  106. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/NOTICE +0 -0
  107. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/WHEEL +0 -0
  108. {aws_cdk_lib-2.194.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/top_level.txt +0 -0
@@ -2897,6 +2897,12 @@ class AuroraMysqlEngineVersion(
2897
2897
  '''Version "5.7.mysql_aurora.2.11.5".'''
2898
2898
  return typing.cast("AuroraMysqlEngineVersion", jsii.sget(cls, "VER_2_11_5"))
2899
2899
 
2900
+ @jsii.python.classproperty
2901
+ @jsii.member(jsii_name="VER_2_11_6")
2902
+ def VER_2_11_6(cls) -> "AuroraMysqlEngineVersion":
2903
+ '''Version "5.7.mysql_aurora.2.11.6".'''
2904
+ return typing.cast("AuroraMysqlEngineVersion", jsii.sget(cls, "VER_2_11_6"))
2905
+
2900
2906
  @jsii.python.classproperty
2901
2907
  @jsii.member(jsii_name="VER_2_12_0")
2902
2908
  def VER_2_12_0(cls) -> "AuroraMysqlEngineVersion":
@@ -2927,6 +2933,12 @@ class AuroraMysqlEngineVersion(
2927
2933
  '''Version "5.7.mysql_aurora.2.12.4".'''
2928
2934
  return typing.cast("AuroraMysqlEngineVersion", jsii.sget(cls, "VER_2_12_4"))
2929
2935
 
2936
+ @jsii.python.classproperty
2937
+ @jsii.member(jsii_name="VER_2_12_5")
2938
+ def VER_2_12_5(cls) -> "AuroraMysqlEngineVersion":
2939
+ '''Version "5.7.mysql_aurora.2.12.5".'''
2940
+ return typing.cast("AuroraMysqlEngineVersion", jsii.sget(cls, "VER_2_12_5"))
2941
+
2930
2942
  @jsii.python.classproperty
2931
2943
  @jsii.member(jsii_name="VER_3_01_0")
2932
2944
  def VER_3_01_0(cls) -> "AuroraMysqlEngineVersion":
@@ -3061,6 +3073,12 @@ class AuroraMysqlEngineVersion(
3061
3073
  '''Version "8.0.mysql_aurora.3.04.3".'''
3062
3074
  return typing.cast("AuroraMysqlEngineVersion", jsii.sget(cls, "VER_3_04_3"))
3063
3075
 
3076
+ @jsii.python.classproperty
3077
+ @jsii.member(jsii_name="VER_3_04_4")
3078
+ def VER_3_04_4(cls) -> "AuroraMysqlEngineVersion":
3079
+ '''Version "8.0.mysql_aurora.3.04.4".'''
3080
+ return typing.cast("AuroraMysqlEngineVersion", jsii.sget(cls, "VER_3_04_4"))
3081
+
3064
3082
  @jsii.python.classproperty
3065
3083
  @jsii.member(jsii_name="VER_3_05_0")
3066
3084
  def VER_3_05_0(cls) -> "AuroraMysqlEngineVersion":
@@ -3681,67 +3699,122 @@ class AuroraPostgresEngineVersion(
3681
3699
  @jsii.python.classproperty
3682
3700
  @jsii.member(jsii_name="VER_12_11")
3683
3701
  def VER_12_11(cls) -> "AuroraPostgresEngineVersion":
3684
- '''Version "12.11".'''
3702
+ '''(deprecated) Version "12.11".
3703
+
3704
+ :deprecated: Version 12.11 is no longer supported by Amazon RDS.
3705
+
3706
+ :stability: deprecated
3707
+ '''
3685
3708
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_12_11"))
3686
3709
 
3687
3710
  @jsii.python.classproperty
3688
3711
  @jsii.member(jsii_name="VER_12_12")
3689
3712
  def VER_12_12(cls) -> "AuroraPostgresEngineVersion":
3690
- '''Version "12.12".'''
3713
+ '''(deprecated) Version "12.12".
3714
+
3715
+ :deprecated: Version 12.12 is no longer supported by Amazon RDS.
3716
+
3717
+ :stability: deprecated
3718
+ '''
3691
3719
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_12_12"))
3692
3720
 
3693
3721
  @jsii.python.classproperty
3694
3722
  @jsii.member(jsii_name="VER_12_13")
3695
3723
  def VER_12_13(cls) -> "AuroraPostgresEngineVersion":
3696
- '''Version "12.13".'''
3724
+ '''(deprecated) Version "12.13".
3725
+
3726
+ :deprecated: Version 12.13 is no longer supported by Amazon RDS.
3727
+
3728
+ :stability: deprecated
3729
+ '''
3697
3730
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_12_13"))
3698
3731
 
3699
3732
  @jsii.python.classproperty
3700
3733
  @jsii.member(jsii_name="VER_12_14")
3701
3734
  def VER_12_14(cls) -> "AuroraPostgresEngineVersion":
3702
- '''Version "12.14".'''
3735
+ '''(deprecated) Version "12.14".
3736
+
3737
+ :deprecated: Version 12.14 is no longer supported by Amazon RDS.
3738
+
3739
+ :stability: deprecated
3740
+ '''
3703
3741
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_12_14"))
3704
3742
 
3705
3743
  @jsii.python.classproperty
3706
3744
  @jsii.member(jsii_name="VER_12_15")
3707
3745
  def VER_12_15(cls) -> "AuroraPostgresEngineVersion":
3708
- '''Version "12.15".'''
3746
+ '''(deprecated) Version "12.15".
3747
+
3748
+ :deprecated: Version 12.15 is no longer supported by Amazon RDS.
3749
+
3750
+ :stability: deprecated
3751
+ '''
3709
3752
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_12_15"))
3710
3753
 
3711
3754
  @jsii.python.classproperty
3712
3755
  @jsii.member(jsii_name="VER_12_16")
3713
3756
  def VER_12_16(cls) -> "AuroraPostgresEngineVersion":
3714
- '''Version "12.16".'''
3757
+ '''(deprecated) Version "12.16".
3758
+
3759
+ :deprecated: Version 12.16 is no longer supported by Amazon RDS.
3760
+
3761
+ :stability: deprecated
3762
+ '''
3715
3763
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_12_16"))
3716
3764
 
3717
3765
  @jsii.python.classproperty
3718
3766
  @jsii.member(jsii_name="VER_12_17")
3719
3767
  def VER_12_17(cls) -> "AuroraPostgresEngineVersion":
3720
- '''Version "12.17".'''
3768
+ '''(deprecated) Version "12.17".
3769
+
3770
+ :deprecated: Version 12.17 is no longer supported by Amazon RDS.
3771
+
3772
+ :stability: deprecated
3773
+ '''
3721
3774
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_12_17"))
3722
3775
 
3723
3776
  @jsii.python.classproperty
3724
3777
  @jsii.member(jsii_name="VER_12_18")
3725
3778
  def VER_12_18(cls) -> "AuroraPostgresEngineVersion":
3726
- '''Version "12.18".'''
3779
+ '''(deprecated) Version "12.18".
3780
+
3781
+ :deprecated: Version 12.18 is no longer supported by Amazon RDS.
3782
+
3783
+ :stability: deprecated
3784
+ '''
3727
3785
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_12_18"))
3728
3786
 
3729
3787
  @jsii.python.classproperty
3730
3788
  @jsii.member(jsii_name="VER_12_19")
3731
3789
  def VER_12_19(cls) -> "AuroraPostgresEngineVersion":
3732
- '''Version "12.19".'''
3790
+ '''(deprecated) Version "12.19".
3791
+
3792
+ :deprecated: Version 12.19 is no longer supported by Amazon RDS.
3793
+
3794
+ :stability: deprecated
3795
+ '''
3733
3796
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_12_19"))
3734
3797
 
3735
3798
  @jsii.python.classproperty
3736
3799
  @jsii.member(jsii_name="VER_12_20")
3737
3800
  def VER_12_20(cls) -> "AuroraPostgresEngineVersion":
3738
- '''Version "12.20".'''
3801
+ '''(deprecated) Version "12.20".
3802
+
3803
+ :deprecated: Version 12.20 is no longer supported by Amazon RDS.
3804
+
3805
+ :stability: deprecated
3806
+ '''
3739
3807
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_12_20"))
3740
3808
 
3741
3809
  @jsii.python.classproperty
3742
3810
  @jsii.member(jsii_name="VER_12_21")
3743
3811
  def VER_12_21(cls) -> "AuroraPostgresEngineVersion":
3744
- '''Version "12.21".'''
3812
+ '''(deprecated) Version "12.21".
3813
+
3814
+ :deprecated: Version 12.21 is no longer supported by Amazon RDS.
3815
+
3816
+ :stability: deprecated
3817
+ '''
3745
3818
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_12_21"))
3746
3819
 
3747
3820
  @jsii.python.classproperty
@@ -3803,7 +3876,12 @@ class AuroraPostgresEngineVersion(
3803
3876
  @jsii.python.classproperty
3804
3877
  @jsii.member(jsii_name="VER_13_10")
3805
3878
  def VER_13_10(cls) -> "AuroraPostgresEngineVersion":
3806
- '''Version "13.10".'''
3879
+ '''(deprecated) Version "13.10".
3880
+
3881
+ :deprecated: Version 13.10 is no longer supported by Amazon RDS.
3882
+
3883
+ :stability: deprecated
3884
+ '''
3807
3885
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_13_10"))
3808
3886
 
3809
3887
  @jsii.python.classproperty
@@ -3845,7 +3923,12 @@ class AuroraPostgresEngineVersion(
3845
3923
  @jsii.python.classproperty
3846
3924
  @jsii.member(jsii_name="VER_13_17")
3847
3925
  def VER_13_17(cls) -> "AuroraPostgresEngineVersion":
3848
- '''Version "13.17".'''
3926
+ '''(deprecated) Version "13.17".
3927
+
3928
+ :deprecated: Version 13.17 is no longer supported by Amazon RDS.
3929
+
3930
+ :stability: deprecated
3931
+ '''
3849
3932
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_13_17"))
3850
3933
 
3851
3934
  @jsii.python.classproperty
@@ -3907,13 +3990,23 @@ class AuroraPostgresEngineVersion(
3907
3990
  @jsii.python.classproperty
3908
3991
  @jsii.member(jsii_name="VER_13_7")
3909
3992
  def VER_13_7(cls) -> "AuroraPostgresEngineVersion":
3910
- '''Version "13.7".'''
3993
+ '''(deprecated) Version "13.7".
3994
+
3995
+ :deprecated: Version 13.7 is no longer supported by Amazon RDS.
3996
+
3997
+ :stability: deprecated
3998
+ '''
3911
3999
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_13_7"))
3912
4000
 
3913
4001
  @jsii.python.classproperty
3914
4002
  @jsii.member(jsii_name="VER_13_8")
3915
4003
  def VER_13_8(cls) -> "AuroraPostgresEngineVersion":
3916
- '''Version "13.8".'''
4004
+ '''(deprecated) Version "13.8".
4005
+
4006
+ :deprecated: Version 13.8 is no longer supported by Amazon RDS.
4007
+
4008
+ :stability: deprecated
4009
+ '''
3917
4010
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_13_8"))
3918
4011
 
3919
4012
  @jsii.python.classproperty
@@ -3949,7 +4042,12 @@ class AuroraPostgresEngineVersion(
3949
4042
  @jsii.python.classproperty
3950
4043
  @jsii.member(jsii_name="VER_14_14")
3951
4044
  def VER_14_14(cls) -> "AuroraPostgresEngineVersion":
3952
- '''Version "14.14".'''
4045
+ '''(deprecated) Version "14.14".
4046
+
4047
+ :deprecated: Version 14.14 is no longer supported by Amazon RDS.
4048
+
4049
+ :stability: deprecated
4050
+ '''
3953
4051
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_14_14"))
3954
4052
 
3955
4053
  @jsii.python.classproperty
@@ -3967,19 +4065,34 @@ class AuroraPostgresEngineVersion(
3967
4065
  @jsii.python.classproperty
3968
4066
  @jsii.member(jsii_name="VER_14_3")
3969
4067
  def VER_14_3(cls) -> "AuroraPostgresEngineVersion":
3970
- '''Version "14.3".'''
4068
+ '''(deprecated) Version "14.3".
4069
+
4070
+ :deprecated: Version 14.3 is no longer supported by Amazon RDS.
4071
+
4072
+ :stability: deprecated
4073
+ '''
3971
4074
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_14_3"))
3972
4075
 
3973
4076
  @jsii.python.classproperty
3974
4077
  @jsii.member(jsii_name="VER_14_4")
3975
4078
  def VER_14_4(cls) -> "AuroraPostgresEngineVersion":
3976
- '''Version "14.4".'''
4079
+ '''(deprecated) Version "14.4".
4080
+
4081
+ :deprecated: Version 14.4 is no longer supported by Amazon RDS.
4082
+
4083
+ :stability: deprecated
4084
+ '''
3977
4085
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_14_4"))
3978
4086
 
3979
4087
  @jsii.python.classproperty
3980
4088
  @jsii.member(jsii_name="VER_14_5")
3981
4089
  def VER_14_5(cls) -> "AuroraPostgresEngineVersion":
3982
- '''Version "14.5".'''
4090
+ '''(deprecated) Version "14.5".
4091
+
4092
+ :deprecated: Version 14.5 is no longer supported by Amazon RDS.
4093
+
4094
+ :stability: deprecated
4095
+ '''
3983
4096
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_14_5"))
3984
4097
 
3985
4098
  @jsii.python.classproperty
@@ -3991,7 +4104,12 @@ class AuroraPostgresEngineVersion(
3991
4104
  @jsii.python.classproperty
3992
4105
  @jsii.member(jsii_name="VER_14_7")
3993
4106
  def VER_14_7(cls) -> "AuroraPostgresEngineVersion":
3994
- '''Version "14.7".'''
4107
+ '''(deprecated) Version "14.7".
4108
+
4109
+ :deprecated: Version 14.7 is no longer supported by Amazon RDS.
4110
+
4111
+ :stability: deprecated
4112
+ '''
3995
4113
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_14_7"))
3996
4114
 
3997
4115
  @jsii.python.classproperty
@@ -4021,7 +4139,12 @@ class AuroraPostgresEngineVersion(
4021
4139
  @jsii.python.classproperty
4022
4140
  @jsii.member(jsii_name="VER_15_2")
4023
4141
  def VER_15_2(cls) -> "AuroraPostgresEngineVersion":
4024
- '''Version "15.2".'''
4142
+ '''(deprecated) Version "15.2".
4143
+
4144
+ :deprecated: Version 15.2 is no longer supported by Amazon RDS.
4145
+
4146
+ :stability: deprecated
4147
+ '''
4025
4148
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_15_2"))
4026
4149
 
4027
4150
  @jsii.python.classproperty
@@ -4063,7 +4186,12 @@ class AuroraPostgresEngineVersion(
4063
4186
  @jsii.python.classproperty
4064
4187
  @jsii.member(jsii_name="VER_15_9")
4065
4188
  def VER_15_9(cls) -> "AuroraPostgresEngineVersion":
4066
- '''Version "15.9".'''
4189
+ '''(deprecated) Version "15.9".
4190
+
4191
+ :deprecated: Version 15.9 is no longer supported by Amazon RDS.
4192
+
4193
+ :stability: deprecated
4194
+ '''
4067
4195
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_15_9"))
4068
4196
 
4069
4197
  @jsii.python.classproperty
@@ -4110,7 +4238,12 @@ class AuroraPostgresEngineVersion(
4110
4238
  @jsii.python.classproperty
4111
4239
  @jsii.member(jsii_name="VER_16_5")
4112
4240
  def VER_16_5(cls) -> "AuroraPostgresEngineVersion":
4113
- '''Version "16.5".'''
4241
+ '''(deprecated) Version "16.5".
4242
+
4243
+ :deprecated: Version 16.5 is no longer supported by Amazon RDS.
4244
+
4245
+ :stability: deprecated
4246
+ '''
4114
4247
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_16_5"))
4115
4248
 
4116
4249
  @jsii.python.classproperty
@@ -4131,18 +4264,40 @@ class AuroraPostgresEngineVersion(
4131
4264
  '''Version "16.8".'''
4132
4265
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_16_8"))
4133
4266
 
4267
+ @jsii.python.classproperty
4268
+ @jsii.member(jsii_name="VER_16_8_LIMITLESS")
4269
+ def VER_16_8_LIMITLESS(cls) -> "AuroraPostgresEngineVersion":
4270
+ '''Version "16.8 limitless".'''
4271
+ return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_16_8_LIMITLESS"))
4272
+
4134
4273
  @jsii.python.classproperty
4135
4274
  @jsii.member(jsii_name="VER_17_1")
4136
4275
  def VER_17_1(cls) -> "AuroraPostgresEngineVersion":
4137
- '''Version "17.1".'''
4276
+ '''(deprecated) Version "17.1".
4277
+
4278
+ :deprecated: Version 17.1 is no longer supported by Amazon RDS.
4279
+
4280
+ :stability: deprecated
4281
+ '''
4138
4282
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_17_1"))
4139
4283
 
4140
4284
  @jsii.python.classproperty
4141
4285
  @jsii.member(jsii_name="VER_17_2")
4142
4286
  def VER_17_2(cls) -> "AuroraPostgresEngineVersion":
4143
- '''Version "17.2".'''
4287
+ '''(deprecated) Version "17.2".
4288
+
4289
+ :deprecated: Version 17.2 is no longer supported by Amazon RDS.
4290
+
4291
+ :stability: deprecated
4292
+ '''
4144
4293
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_17_2"))
4145
4294
 
4295
+ @jsii.python.classproperty
4296
+ @jsii.member(jsii_name="VER_17_4")
4297
+ def VER_17_4(cls) -> "AuroraPostgresEngineVersion":
4298
+ '''Version "17.4".'''
4299
+ return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_17_4"))
4300
+
4146
4301
  @jsii.python.classproperty
4147
4302
  @jsii.member(jsii_name="VER_9_6_11")
4148
4303
  def VER_9_6_11(cls) -> "AuroraPostgresEngineVersion":
@@ -5242,7 +5397,7 @@ class CfnDBCluster(
5242
5397
  :param id: Construct identifier for this resource (unique in its scope).
5243
5398
  :param allocated_storage: The amount of storage in gibibytes (GiB) to allocate to each DB instance in the Multi-AZ DB cluster. Valid for Cluster Type: Multi-AZ DB clusters only This setting is required to create a Multi-AZ DB cluster.
5244
5399
  :param associated_roles: Provides a list of the AWS Identity and Access Management (IAM) roles that are associated with the DB cluster. IAM roles that are associated with a DB cluster grant permission for the DB cluster to access other Amazon Web Services on your behalf. Valid for: Aurora DB clusters and Multi-AZ DB clusters
5245
- :param auto_minor_version_upgrade: Specifies whether minor engine upgrades are applied automatically to the DB cluster during the maintenance window. By default, minor engine upgrades are applied automatically. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster
5400
+ :param auto_minor_version_upgrade: Specifies whether minor engine upgrades are applied automatically to the DB cluster during the maintenance window. By default, minor engine upgrades are applied automatically. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster. For more information about automatic minor version upgrades, see `Automatically upgrading the minor engine version <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades>`_ .
5246
5401
  :param availability_zones: A list of Availability Zones (AZs) where instances in the DB cluster can be created. For information on AWS Regions and Availability Zones, see `Choosing the Regions and Availability Zones <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html>`_ in the *Amazon Aurora User Guide* . Valid for: Aurora DB clusters only
5247
5402
  :param backtrack_window: The target backtrack window, in seconds. To disable backtracking, set this value to ``0`` . Valid for Cluster Type: Aurora MySQL DB clusters only Default: ``0`` Constraints: - If specified, this value must be set to a number from 0 to 259,200 (72 hours).
5248
5403
  :param backup_retention_period: The number of days for which automated backups are retained. Default: 1 Constraints: - Must be a value from 1 to 35 Valid for: Aurora DB clusters and Multi-AZ DB clusters Default: - 1
@@ -7436,7 +7591,7 @@ class CfnDBClusterProps:
7436
7591
 
7437
7592
  :param allocated_storage: The amount of storage in gibibytes (GiB) to allocate to each DB instance in the Multi-AZ DB cluster. Valid for Cluster Type: Multi-AZ DB clusters only This setting is required to create a Multi-AZ DB cluster.
7438
7593
  :param associated_roles: Provides a list of the AWS Identity and Access Management (IAM) roles that are associated with the DB cluster. IAM roles that are associated with a DB cluster grant permission for the DB cluster to access other Amazon Web Services on your behalf. Valid for: Aurora DB clusters and Multi-AZ DB clusters
7439
- :param auto_minor_version_upgrade: Specifies whether minor engine upgrades are applied automatically to the DB cluster during the maintenance window. By default, minor engine upgrades are applied automatically. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster
7594
+ :param auto_minor_version_upgrade: Specifies whether minor engine upgrades are applied automatically to the DB cluster during the maintenance window. By default, minor engine upgrades are applied automatically. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster. For more information about automatic minor version upgrades, see `Automatically upgrading the minor engine version <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades>`_ .
7440
7595
  :param availability_zones: A list of Availability Zones (AZs) where instances in the DB cluster can be created. For information on AWS Regions and Availability Zones, see `Choosing the Regions and Availability Zones <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html>`_ in the *Amazon Aurora User Guide* . Valid for: Aurora DB clusters only
7441
7596
  :param backtrack_window: The target backtrack window, in seconds. To disable backtracking, set this value to ``0`` . Valid for Cluster Type: Aurora MySQL DB clusters only Default: ``0`` Constraints: - If specified, this value must be set to a number from 0 to 259,200 (72 hours).
7442
7597
  :param backup_retention_period: The number of days for which automated backups are retained. Default: 1 Constraints: - Must be a value from 1 to 35 Valid for: Aurora DB clusters and Multi-AZ DB clusters Default: - 1
@@ -7799,7 +7954,9 @@ class CfnDBClusterProps:
7799
7954
 
7800
7955
  By default, minor engine upgrades are applied automatically.
7801
7956
 
7802
- Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster
7957
+ Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster.
7958
+
7959
+ For more information about automatic minor version upgrades, see `Automatically upgrading the minor engine version <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades>`_ .
7803
7960
 
7804
7961
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-autominorversionupgrade
7805
7962
  '''
@@ -27152,6 +27309,12 @@ class DatabaseSecret(
27152
27309
 
27153
27310
  jsii.create(self.__class__, self, [scope, id, props])
27154
27311
 
27312
+ @jsii.python.classproperty
27313
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
27314
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
27315
+ '''Uniquely identifies this class.'''
27316
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
27317
+
27155
27318
 
27156
27319
  @jsii.data_type(
27157
27320
  jsii_type="aws-cdk-lib.aws_rds.DatabaseSecretProps",
@@ -32962,6 +33125,12 @@ class MysqlEngineVersion(
32962
33125
  '''Version "8.0.41".'''
32963
33126
  return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_8_0_41"))
32964
33127
 
33128
+ @jsii.python.classproperty
33129
+ @jsii.member(jsii_name="VER_8_0_42")
33130
+ def VER_8_0_42(cls) -> "MysqlEngineVersion":
33131
+ '''Version "8.0.42".'''
33132
+ return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_8_0_42"))
33133
+
32965
33134
  @jsii.python.classproperty
32966
33135
  @jsii.member(jsii_name="VER_8_4_3")
32967
33136
  def VER_8_4_3(cls) -> "MysqlEngineVersion":
@@ -32974,6 +33143,12 @@ class MysqlEngineVersion(
32974
33143
  '''Version "8.4.4".'''
32975
33144
  return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_8_4_4"))
32976
33145
 
33146
+ @jsii.python.classproperty
33147
+ @jsii.member(jsii_name="VER_8_4_5")
33148
+ def VER_8_4_5(cls) -> "MysqlEngineVersion":
33149
+ '''Version "8.4.5".'''
33150
+ return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_8_4_5"))
33151
+
32977
33152
  @builtins.property
32978
33153
  @jsii.member(jsii_name="mysqlFullVersion")
32979
33154
  def mysql_full_version(self) -> builtins.str:
@@ -33331,6 +33506,12 @@ class OptionGroup(
33331
33506
 
33332
33507
  return typing.cast(builtins.bool, jsii.invoke(self, "addConfiguration", [configuration]))
33333
33508
 
33509
+ @jsii.python.classproperty
33510
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
33511
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
33512
+ '''Uniquely identifies this class.'''
33513
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
33514
+
33334
33515
  @builtins.property
33335
33516
  @jsii.member(jsii_name="optionConnections")
33336
33517
  def option_connections(self) -> typing.Mapping[builtins.str, _Connections_0f31fce8]:
@@ -34741,6 +34922,12 @@ class ParameterGroup(
34741
34922
 
34742
34923
  return typing.cast("ParameterGroupInstanceConfig", jsii.invoke(self, "bindToInstance", [_options]))
34743
34924
 
34925
+ @jsii.python.classproperty
34926
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
34927
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
34928
+ '''Uniquely identifies this class.'''
34929
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
34930
+
34744
34931
 
34745
34932
  @jsii.data_type(
34746
34933
  jsii_type="aws-cdk-lib.aws_rds.ParameterGroupClusterBindOptions",
@@ -35832,31 +36019,56 @@ class PostgresEngineVersion(
35832
36019
  @jsii.python.classproperty
35833
36020
  @jsii.member(jsii_name="VER_12_15")
35834
36021
  def VER_12_15(cls) -> "PostgresEngineVersion":
35835
- '''Version "12.15".'''
36022
+ '''(deprecated) Version "12.15".
36023
+
36024
+ :deprecated: PostgreSQL 12.15 is no longer supported by Amazon RDS.
36025
+
36026
+ :stability: deprecated
36027
+ '''
35836
36028
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_12_15"))
35837
36029
 
35838
36030
  @jsii.python.classproperty
35839
36031
  @jsii.member(jsii_name="VER_12_16")
35840
36032
  def VER_12_16(cls) -> "PostgresEngineVersion":
35841
- '''Version "12.16".'''
36033
+ '''(deprecated) Version "12.16".
36034
+
36035
+ :deprecated: PostgreSQL 12.16 is no longer supported by Amazon RDS.
36036
+
36037
+ :stability: deprecated
36038
+ '''
35842
36039
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_12_16"))
35843
36040
 
35844
36041
  @jsii.python.classproperty
35845
36042
  @jsii.member(jsii_name="VER_12_17")
35846
36043
  def VER_12_17(cls) -> "PostgresEngineVersion":
35847
- '''Version "12.17".'''
36044
+ '''(deprecated) Version "12.17".
36045
+
36046
+ :deprecated: PostgreSQL 12.17 is no longer supported by Amazon RDS.
36047
+
36048
+ :stability: deprecated
36049
+ '''
35848
36050
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_12_17"))
35849
36051
 
35850
36052
  @jsii.python.classproperty
35851
36053
  @jsii.member(jsii_name="VER_12_18")
35852
36054
  def VER_12_18(cls) -> "PostgresEngineVersion":
35853
- '''Version "12.18".'''
36055
+ '''(deprecated) Version "12.18".
36056
+
36057
+ :deprecated: PostgreSQL 12.18 is no longer supported by Amazon RDS.
36058
+
36059
+ :stability: deprecated
36060
+ '''
35854
36061
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_12_18"))
35855
36062
 
35856
36063
  @jsii.python.classproperty
35857
36064
  @jsii.member(jsii_name="VER_12_19")
35858
36065
  def VER_12_19(cls) -> "PostgresEngineVersion":
35859
- '''Version "12.19".'''
36066
+ '''(deprecated) Version "12.19".
36067
+
36068
+ :deprecated: PostgreSQL 12.19 is no longer supported by Amazon RDS.
36069
+
36070
+ :stability: deprecated
36071
+ '''
35860
36072
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_12_19"))
35861
36073
 
35862
36074
  @jsii.python.classproperty
@@ -35873,13 +36085,23 @@ class PostgresEngineVersion(
35873
36085
  @jsii.python.classproperty
35874
36086
  @jsii.member(jsii_name="VER_12_20")
35875
36087
  def VER_12_20(cls) -> "PostgresEngineVersion":
35876
- '''Version "12.20".'''
36088
+ '''(deprecated) Version "12.20".
36089
+
36090
+ :deprecated: PostgreSQL 12.20 is no longer supported by Amazon RDS.
36091
+
36092
+ :stability: deprecated
36093
+ '''
35877
36094
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_12_20"))
35878
36095
 
35879
36096
  @jsii.python.classproperty
35880
36097
  @jsii.member(jsii_name="VER_12_21")
35881
36098
  def VER_12_21(cls) -> "PostgresEngineVersion":
35882
- '''Version "12.21".'''
36099
+ '''(deprecated) Version "12.21".
36100
+
36101
+ :deprecated: PostgreSQL 12.21 is no longer supported by Amazon RDS.
36102
+
36103
+ :stability: deprecated
36104
+ '''
35883
36105
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_12_21"))
35884
36106
 
35885
36107
  @jsii.python.classproperty
@@ -36029,7 +36251,12 @@ class PostgresEngineVersion(
36029
36251
  @jsii.python.classproperty
36030
36252
  @jsii.member(jsii_name="VER_13_14")
36031
36253
  def VER_13_14(cls) -> "PostgresEngineVersion":
36032
- '''Version "13.14".'''
36254
+ '''(deprecated) Version "13.14".
36255
+
36256
+ :deprecated: PostgreSQL 13.14 is no longer supported by Amazon RDS.
36257
+
36258
+ :stability: deprecated
36259
+ '''
36033
36260
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_13_14"))
36034
36261
 
36035
36262
  @jsii.python.classproperty
@@ -36079,6 +36306,12 @@ class PostgresEngineVersion(
36079
36306
  '''Version "13.20".'''
36080
36307
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_13_20"))
36081
36308
 
36309
+ @jsii.python.classproperty
36310
+ @jsii.member(jsii_name="VER_13_21")
36311
+ def VER_13_21(cls) -> "PostgresEngineVersion":
36312
+ '''Version "13.21".'''
36313
+ return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_13_21"))
36314
+
36082
36315
  @jsii.python.classproperty
36083
36316
  @jsii.member(jsii_name="VER_13_3")
36084
36317
  def VER_13_3(cls) -> "PostgresEngineVersion":
@@ -36231,6 +36464,12 @@ class PostgresEngineVersion(
36231
36464
  '''Version "14.17".'''
36232
36465
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_14_17"))
36233
36466
 
36467
+ @jsii.python.classproperty
36468
+ @jsii.member(jsii_name="VER_14_18")
36469
+ def VER_14_18(cls) -> "PostgresEngineVersion":
36470
+ '''Version "14.18".'''
36471
+ return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_14_18"))
36472
+
36234
36473
  @jsii.python.classproperty
36235
36474
  @jsii.member(jsii_name="VER_14_2")
36236
36475
  def VER_14_2(cls) -> "PostgresEngineVersion":
@@ -36343,6 +36582,12 @@ class PostgresEngineVersion(
36343
36582
  '''Version "15.12".'''
36344
36583
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_15_12"))
36345
36584
 
36585
+ @jsii.python.classproperty
36586
+ @jsii.member(jsii_name="VER_15_13")
36587
+ def VER_15_13(cls) -> "PostgresEngineVersion":
36588
+ '''Version "15.13".'''
36589
+ return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_15_13"))
36590
+
36346
36591
  @jsii.python.classproperty
36347
36592
  @jsii.member(jsii_name="VER_15_2")
36348
36593
  def VER_15_2(cls) -> "PostgresEngineVersion":
@@ -36480,6 +36725,12 @@ class PostgresEngineVersion(
36480
36725
  '''Version "16.8".'''
36481
36726
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_16_8"))
36482
36727
 
36728
+ @jsii.python.classproperty
36729
+ @jsii.member(jsii_name="VER_16_9")
36730
+ def VER_16_9(cls) -> "PostgresEngineVersion":
36731
+ '''Version "16.9".'''
36732
+ return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_16_9"))
36733
+
36483
36734
  @jsii.python.classproperty
36484
36735
  @jsii.member(jsii_name="VER_17")
36485
36736
  def VER_17(cls) -> "PostgresEngineVersion":
@@ -36510,6 +36761,12 @@ class PostgresEngineVersion(
36510
36761
  '''Version "17.4".'''
36511
36762
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_17_4"))
36512
36763
 
36764
+ @jsii.python.classproperty
36765
+ @jsii.member(jsii_name="VER_17_5")
36766
+ def VER_17_5(cls) -> "PostgresEngineVersion":
36767
+ '''Version "17.5".'''
36768
+ return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_17_5"))
36769
+
36513
36770
  @jsii.python.classproperty
36514
36771
  @jsii.member(jsii_name="VER_9_6_24")
36515
36772
  def VER_9_6_24(cls) -> "PostgresEngineVersion":
@@ -37770,6 +38027,12 @@ class ServerlessCluster(
37770
38027
  check_type(argname="argument grantee", value=grantee, expected_type=type_hints["grantee"])
37771
38028
  return typing.cast(_Grant_a7ae64f8, jsii.invoke(self, "grantDataApiAccess", [grantee]))
37772
38029
 
38030
+ @jsii.python.classproperty
38031
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
38032
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
38033
+ '''Uniquely identifies this class.'''
38034
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
38035
+
37773
38036
  @builtins.property
37774
38037
  @jsii.member(jsii_name="clusterArn")
37775
38038
  def cluster_arn(self) -> builtins.str:
@@ -38076,6 +38339,12 @@ class ServerlessClusterFromSnapshot(
38076
38339
  check_type(argname="argument grantee", value=grantee, expected_type=type_hints["grantee"])
38077
38340
  return typing.cast(_Grant_a7ae64f8, jsii.invoke(self, "grantDataApiAccess", [grantee]))
38078
38341
 
38342
+ @jsii.python.classproperty
38343
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
38344
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
38345
+ '''Uniquely identifies this class.'''
38346
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
38347
+
38079
38348
  @builtins.property
38080
38349
  @jsii.member(jsii_name="clusterArn")
38081
38350
  def cluster_arn(self) -> builtins.str:
@@ -40918,6 +41187,12 @@ class SubnetGroup(
40918
41187
  check_type(argname="argument subnet_group_name", value=subnet_group_name, expected_type=type_hints["subnet_group_name"])
40919
41188
  return typing.cast(ISubnetGroup, jsii.sinvoke(cls, "fromSubnetGroupName", [scope, id, subnet_group_name]))
40920
41189
 
41190
+ @jsii.python.classproperty
41191
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
41192
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
41193
+ '''Uniquely identifies this class.'''
41194
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
41195
+
40921
41196
  @builtins.property
40922
41197
  @jsii.member(jsii_name="subnetGroupName")
40923
41198
  def subnet_group_name(self) -> builtins.str:
@@ -42661,6 +42936,12 @@ class DatabaseClusterFromSnapshot(
42661
42936
 
42662
42937
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricServerlessDatabaseCapacity", [props]))
42663
42938
 
42939
+ @jsii.python.classproperty
42940
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
42941
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
42942
+ '''Uniquely identifies this class.'''
42943
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
42944
+
42664
42945
  @builtins.property
42665
42946
  @jsii.member(jsii_name="cloudwatchLogGroups")
42666
42947
  def cloudwatch_log_groups(
@@ -43848,6 +44129,12 @@ class DatabaseInstanceFromSnapshot(
43848
44129
  def _set_log_retention(self) -> None:
43849
44130
  return typing.cast(None, jsii.invoke(self, "setLogRetention", []))
43850
44131
 
44132
+ @jsii.python.classproperty
44133
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
44134
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
44135
+ '''Uniquely identifies this class.'''
44136
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
44137
+
43851
44138
  @builtins.property
43852
44139
  @jsii.member(jsii_name="cloudwatchLogGroups")
43853
44140
  def cloudwatch_log_groups(
@@ -46067,6 +46354,12 @@ class DatabaseInstanceReadReplica(
46067
46354
  def _set_log_retention(self) -> None:
46068
46355
  return typing.cast(None, jsii.invoke(self, "setLogRetention", []))
46069
46356
 
46357
+ @jsii.python.classproperty
46358
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
46359
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
46360
+ '''Uniquely identifies this class.'''
46361
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
46362
+
46070
46363
  @builtins.property
46071
46364
  @jsii.member(jsii_name="cloudwatchLogGroups")
46072
46365
  def cloudwatch_log_groups(
@@ -46320,6 +46613,12 @@ class DatabaseProxy(
46320
46613
  check_type(argname="argument db_user", value=db_user, expected_type=type_hints["db_user"])
46321
46614
  return typing.cast(_Grant_a7ae64f8, jsii.invoke(self, "grantConnect", [grantee, db_user]))
46322
46615
 
46616
+ @jsii.python.classproperty
46617
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
46618
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
46619
+ '''Uniquely identifies this class.'''
46620
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
46621
+
46323
46622
  @builtins.property
46324
46623
  @jsii.member(jsii_name="connections")
46325
46624
  def connections(self) -> _Connections_0f31fce8:
@@ -46899,6 +47198,12 @@ class DatabaseCluster(
46899
47198
 
46900
47199
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricServerlessDatabaseCapacity", [props]))
46901
47200
 
47201
+ @jsii.python.classproperty
47202
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
47203
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
47204
+ '''Uniquely identifies this class.'''
47205
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
47206
+
46902
47207
  @builtins.property
46903
47208
  @jsii.member(jsii_name="cloudwatchLogGroups")
46904
47209
  def cloudwatch_log_groups(
@@ -47380,6 +47685,12 @@ class DatabaseInstance(
47380
47685
  def _set_log_retention(self) -> None:
47381
47686
  return typing.cast(None, jsii.invoke(self, "setLogRetention", []))
47382
47687
 
47688
+ @jsii.python.classproperty
47689
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
47690
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
47691
+ '''Uniquely identifies this class.'''
47692
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
47693
+
47383
47694
  @builtins.property
47384
47695
  @jsii.member(jsii_name="cloudwatchLogGroups")
47385
47696
  def cloudwatch_log_groups(