aws-cdk-lib 2.195.0__py3-none-any.whl → 2.196.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.
- aws_cdk/__init__.py +433 -20
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.195.0.jsii.tgz → aws-cdk-lib@2.196.1.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_amazonmq/__init__.py +2 -2
- aws_cdk/aws_apigateway/__init__.py +148 -69
- aws_cdk/aws_apigatewayv2/__init__.py +155 -24
- aws_cdk/aws_appconfig/__init__.py +24 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +6 -0
- aws_cdk/aws_appmesh/__init__.py +42 -0
- aws_cdk/aws_appsync/__init__.py +92 -20
- aws_cdk/aws_autoscaling/__init__.py +24 -0
- aws_cdk/aws_backup/__init__.py +53 -14
- aws_cdk/aws_batch/__init__.py +72 -0
- aws_cdk/aws_bedrock/__init__.py +620 -14
- aws_cdk/aws_budgets/__init__.py +569 -0
- aws_cdk/aws_certificatemanager/__init__.py +21 -0
- aws_cdk/aws_chatbot/__init__.py +6 -0
- aws_cdk/aws_cloudfront/__init__.py +87 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +6 -0
- aws_cdk/aws_cloudtrail/__init__.py +6 -0
- aws_cdk/aws_cloudwatch/__init__.py +18 -0
- aws_cdk/aws_cloudwatch_actions/__init__.py +75 -1
- aws_cdk/aws_codebuild/__init__.py +48 -0
- aws_cdk/aws_codecommit/__init__.py +6 -0
- aws_cdk/aws_codedeploy/__init__.py +63 -0
- aws_cdk/aws_codeguruprofiler/__init__.py +6 -0
- aws_cdk/aws_codepipeline/__init__.py +6 -0
- aws_cdk/aws_codepipeline_actions/__init__.py +4 -4
- aws_cdk/aws_codestarnotifications/__init__.py +6 -0
- aws_cdk/aws_cognito/__init__.py +91 -12
- aws_cdk/aws_cognito_identitypool/__init__.py +6 -0
- aws_cdk/aws_config/__init__.py +36 -0
- aws_cdk/aws_datazone/__init__.py +557 -14
- aws_cdk/aws_docdb/__init__.py +27 -3
- aws_cdk/aws_dsql/__init__.py +21 -13
- aws_cdk/aws_dynamodb/__init__.py +20 -8
- aws_cdk/aws_ec2/__init__.py +282 -21
- aws_cdk/aws_ecr/__init__.py +6 -0
- aws_cdk/aws_ecr_assets/__init__.py +6 -0
- aws_cdk/aws_ecs/__init__.py +112 -19
- aws_cdk/aws_ecs_patterns/__init__.py +58 -0
- aws_cdk/aws_efs/__init__.py +12 -0
- aws_cdk/aws_eks/__init__.py +42 -0
- aws_cdk/aws_elasticloadbalancing/__init__.py +6 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +112 -9
- aws_cdk/aws_elasticsearch/__init__.py +9 -0
- aws_cdk/aws_events/__init__.py +36 -0
- aws_cdk/aws_events_targets/__init__.py +10 -10
- aws_cdk/aws_fsx/__init__.py +6 -0
- aws_cdk/aws_globalaccelerator/__init__.py +18 -0
- aws_cdk/aws_iam/__init__.py +66 -0
- aws_cdk/aws_imagebuilder/__init__.py +21 -16
- aws_cdk/aws_inspector/__init__.py +6 -0
- aws_cdk/aws_kinesis/__init__.py +19 -1
- aws_cdk/aws_kinesisanalytics/__init__.py +9 -11
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +9 -11
- aws_cdk/aws_kinesisfirehose/__init__.py +6 -0
- aws_cdk/aws_kms/__init__.py +16 -4
- aws_cdk/aws_lambda/__init__.py +76 -6
- aws_cdk/aws_logs/__init__.py +155 -12
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_quicksight/__init__.py +22 -22
- aws_cdk/aws_rds/__init__.py +306 -30
- aws_cdk/aws_redshiftserverless/__init__.py +7 -7
- aws_cdk/aws_route53/__init__.py +723 -25
- aws_cdk/aws_s3/__init__.py +37 -10
- aws_cdk/aws_s3_deployment/__init__.py +6 -0
- aws_cdk/aws_sagemaker/__init__.py +199 -4
- aws_cdk/aws_scheduler/__init__.py +12 -0
- aws_cdk/aws_secretsmanager/__init__.py +24 -0
- aws_cdk/aws_servicecatalog/__init__.py +24 -0
- aws_cdk/aws_servicediscovery/__init__.py +48 -0
- aws_cdk/aws_ses/__init__.py +133 -33
- aws_cdk/aws_signer/__init__.py +6 -0
- aws_cdk/aws_sns/__init__.py +18 -0
- aws_cdk/aws_sns_subscriptions/__init__.py +6 -0
- aws_cdk/aws_sqs/__init__.py +12 -0
- aws_cdk/aws_ssm/__init__.py +12 -0
- aws_cdk/aws_ssmcontacts/__init__.py +53 -2
- aws_cdk/aws_ssmguiconnect/__init__.py +7 -7
- aws_cdk/aws_stepfunctions/__init__.py +153 -7
- aws_cdk/aws_stepfunctions_tasks/__init__.py +46 -10
- aws_cdk/aws_synthetics/__init__.py +32 -0
- aws_cdk/aws_verifiedpermissions/__init__.py +168 -3
- aws_cdk/aws_vpclattice/__init__.py +3 -1
- aws_cdk/aws_wisdom/__init__.py +6 -4
- aws_cdk/custom_resources/__init__.py +18 -0
- aws_cdk/cx_api/__init__.py +33 -0
- aws_cdk/lambda_layer_awscli/__init__.py +6 -0
- aws_cdk/lambda_layer_node_proxy_agent/__init__.py +6 -0
- aws_cdk/pipelines/__init__.py +10 -10
- aws_cdk/triggers/__init__.py +6 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/METADATA +83 -5
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/RECORD +99 -99
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.1.dist-info}/top_level.txt +0 -0
aws_cdk/aws_rds/__init__.py
CHANGED
|
@@ -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
|
|
@@ -4136,6 +4264,12 @@ class AuroraPostgresEngineVersion(
|
|
|
4136
4264
|
'''Version "16.8".'''
|
|
4137
4265
|
return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_16_8"))
|
|
4138
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
|
+
|
|
4139
4273
|
@jsii.python.classproperty
|
|
4140
4274
|
@jsii.member(jsii_name="VER_17_1")
|
|
4141
4275
|
def VER_17_1(cls) -> "AuroraPostgresEngineVersion":
|
|
@@ -27175,6 +27309,12 @@ class DatabaseSecret(
|
|
|
27175
27309
|
|
|
27176
27310
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
27177
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
|
+
|
|
27178
27318
|
|
|
27179
27319
|
@jsii.data_type(
|
|
27180
27320
|
jsii_type="aws-cdk-lib.aws_rds.DatabaseSecretProps",
|
|
@@ -33366,6 +33506,12 @@ class OptionGroup(
|
|
|
33366
33506
|
|
|
33367
33507
|
return typing.cast(builtins.bool, jsii.invoke(self, "addConfiguration", [configuration]))
|
|
33368
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
|
+
|
|
33369
33515
|
@builtins.property
|
|
33370
33516
|
@jsii.member(jsii_name="optionConnections")
|
|
33371
33517
|
def option_connections(self) -> typing.Mapping[builtins.str, _Connections_0f31fce8]:
|
|
@@ -34776,6 +34922,12 @@ class ParameterGroup(
|
|
|
34776
34922
|
|
|
34777
34923
|
return typing.cast("ParameterGroupInstanceConfig", jsii.invoke(self, "bindToInstance", [_options]))
|
|
34778
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
|
+
|
|
34779
34931
|
|
|
34780
34932
|
@jsii.data_type(
|
|
34781
34933
|
jsii_type="aws-cdk-lib.aws_rds.ParameterGroupClusterBindOptions",
|
|
@@ -35867,31 +36019,56 @@ class PostgresEngineVersion(
|
|
|
35867
36019
|
@jsii.python.classproperty
|
|
35868
36020
|
@jsii.member(jsii_name="VER_12_15")
|
|
35869
36021
|
def VER_12_15(cls) -> "PostgresEngineVersion":
|
|
35870
|
-
'''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
|
+
'''
|
|
35871
36028
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_12_15"))
|
|
35872
36029
|
|
|
35873
36030
|
@jsii.python.classproperty
|
|
35874
36031
|
@jsii.member(jsii_name="VER_12_16")
|
|
35875
36032
|
def VER_12_16(cls) -> "PostgresEngineVersion":
|
|
35876
|
-
'''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
|
+
'''
|
|
35877
36039
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_12_16"))
|
|
35878
36040
|
|
|
35879
36041
|
@jsii.python.classproperty
|
|
35880
36042
|
@jsii.member(jsii_name="VER_12_17")
|
|
35881
36043
|
def VER_12_17(cls) -> "PostgresEngineVersion":
|
|
35882
|
-
'''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
|
+
'''
|
|
35883
36050
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_12_17"))
|
|
35884
36051
|
|
|
35885
36052
|
@jsii.python.classproperty
|
|
35886
36053
|
@jsii.member(jsii_name="VER_12_18")
|
|
35887
36054
|
def VER_12_18(cls) -> "PostgresEngineVersion":
|
|
35888
|
-
'''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
|
+
'''
|
|
35889
36061
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_12_18"))
|
|
35890
36062
|
|
|
35891
36063
|
@jsii.python.classproperty
|
|
35892
36064
|
@jsii.member(jsii_name="VER_12_19")
|
|
35893
36065
|
def VER_12_19(cls) -> "PostgresEngineVersion":
|
|
35894
|
-
'''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
|
+
'''
|
|
35895
36072
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_12_19"))
|
|
35896
36073
|
|
|
35897
36074
|
@jsii.python.classproperty
|
|
@@ -35908,13 +36085,23 @@ class PostgresEngineVersion(
|
|
|
35908
36085
|
@jsii.python.classproperty
|
|
35909
36086
|
@jsii.member(jsii_name="VER_12_20")
|
|
35910
36087
|
def VER_12_20(cls) -> "PostgresEngineVersion":
|
|
35911
|
-
'''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
|
+
'''
|
|
35912
36094
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_12_20"))
|
|
35913
36095
|
|
|
35914
36096
|
@jsii.python.classproperty
|
|
35915
36097
|
@jsii.member(jsii_name="VER_12_21")
|
|
35916
36098
|
def VER_12_21(cls) -> "PostgresEngineVersion":
|
|
35917
|
-
'''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
|
+
'''
|
|
35918
36105
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_12_21"))
|
|
35919
36106
|
|
|
35920
36107
|
@jsii.python.classproperty
|
|
@@ -36064,7 +36251,12 @@ class PostgresEngineVersion(
|
|
|
36064
36251
|
@jsii.python.classproperty
|
|
36065
36252
|
@jsii.member(jsii_name="VER_13_14")
|
|
36066
36253
|
def VER_13_14(cls) -> "PostgresEngineVersion":
|
|
36067
|
-
'''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
|
+
'''
|
|
36068
36260
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_13_14"))
|
|
36069
36261
|
|
|
36070
36262
|
@jsii.python.classproperty
|
|
@@ -36114,6 +36306,12 @@ class PostgresEngineVersion(
|
|
|
36114
36306
|
'''Version "13.20".'''
|
|
36115
36307
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_13_20"))
|
|
36116
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
|
+
|
|
36117
36315
|
@jsii.python.classproperty
|
|
36118
36316
|
@jsii.member(jsii_name="VER_13_3")
|
|
36119
36317
|
def VER_13_3(cls) -> "PostgresEngineVersion":
|
|
@@ -36266,6 +36464,12 @@ class PostgresEngineVersion(
|
|
|
36266
36464
|
'''Version "14.17".'''
|
|
36267
36465
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_14_17"))
|
|
36268
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
|
+
|
|
36269
36473
|
@jsii.python.classproperty
|
|
36270
36474
|
@jsii.member(jsii_name="VER_14_2")
|
|
36271
36475
|
def VER_14_2(cls) -> "PostgresEngineVersion":
|
|
@@ -36378,6 +36582,12 @@ class PostgresEngineVersion(
|
|
|
36378
36582
|
'''Version "15.12".'''
|
|
36379
36583
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_15_12"))
|
|
36380
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
|
+
|
|
36381
36591
|
@jsii.python.classproperty
|
|
36382
36592
|
@jsii.member(jsii_name="VER_15_2")
|
|
36383
36593
|
def VER_15_2(cls) -> "PostgresEngineVersion":
|
|
@@ -36515,6 +36725,12 @@ class PostgresEngineVersion(
|
|
|
36515
36725
|
'''Version "16.8".'''
|
|
36516
36726
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_16_8"))
|
|
36517
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
|
+
|
|
36518
36734
|
@jsii.python.classproperty
|
|
36519
36735
|
@jsii.member(jsii_name="VER_17")
|
|
36520
36736
|
def VER_17(cls) -> "PostgresEngineVersion":
|
|
@@ -36545,6 +36761,12 @@ class PostgresEngineVersion(
|
|
|
36545
36761
|
'''Version "17.4".'''
|
|
36546
36762
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_17_4"))
|
|
36547
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
|
+
|
|
36548
36770
|
@jsii.python.classproperty
|
|
36549
36771
|
@jsii.member(jsii_name="VER_9_6_24")
|
|
36550
36772
|
def VER_9_6_24(cls) -> "PostgresEngineVersion":
|
|
@@ -37805,6 +38027,12 @@ class ServerlessCluster(
|
|
|
37805
38027
|
check_type(argname="argument grantee", value=grantee, expected_type=type_hints["grantee"])
|
|
37806
38028
|
return typing.cast(_Grant_a7ae64f8, jsii.invoke(self, "grantDataApiAccess", [grantee]))
|
|
37807
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
|
+
|
|
37808
38036
|
@builtins.property
|
|
37809
38037
|
@jsii.member(jsii_name="clusterArn")
|
|
37810
38038
|
def cluster_arn(self) -> builtins.str:
|
|
@@ -38111,6 +38339,12 @@ class ServerlessClusterFromSnapshot(
|
|
|
38111
38339
|
check_type(argname="argument grantee", value=grantee, expected_type=type_hints["grantee"])
|
|
38112
38340
|
return typing.cast(_Grant_a7ae64f8, jsii.invoke(self, "grantDataApiAccess", [grantee]))
|
|
38113
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
|
+
|
|
38114
38348
|
@builtins.property
|
|
38115
38349
|
@jsii.member(jsii_name="clusterArn")
|
|
38116
38350
|
def cluster_arn(self) -> builtins.str:
|
|
@@ -40953,6 +41187,12 @@ class SubnetGroup(
|
|
|
40953
41187
|
check_type(argname="argument subnet_group_name", value=subnet_group_name, expected_type=type_hints["subnet_group_name"])
|
|
40954
41188
|
return typing.cast(ISubnetGroup, jsii.sinvoke(cls, "fromSubnetGroupName", [scope, id, subnet_group_name]))
|
|
40955
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
|
+
|
|
40956
41196
|
@builtins.property
|
|
40957
41197
|
@jsii.member(jsii_name="subnetGroupName")
|
|
40958
41198
|
def subnet_group_name(self) -> builtins.str:
|
|
@@ -42696,6 +42936,12 @@ class DatabaseClusterFromSnapshot(
|
|
|
42696
42936
|
|
|
42697
42937
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricServerlessDatabaseCapacity", [props]))
|
|
42698
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
|
+
|
|
42699
42945
|
@builtins.property
|
|
42700
42946
|
@jsii.member(jsii_name="cloudwatchLogGroups")
|
|
42701
42947
|
def cloudwatch_log_groups(
|
|
@@ -43883,6 +44129,12 @@ class DatabaseInstanceFromSnapshot(
|
|
|
43883
44129
|
def _set_log_retention(self) -> None:
|
|
43884
44130
|
return typing.cast(None, jsii.invoke(self, "setLogRetention", []))
|
|
43885
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
|
+
|
|
43886
44138
|
@builtins.property
|
|
43887
44139
|
@jsii.member(jsii_name="cloudwatchLogGroups")
|
|
43888
44140
|
def cloudwatch_log_groups(
|
|
@@ -46102,6 +46354,12 @@ class DatabaseInstanceReadReplica(
|
|
|
46102
46354
|
def _set_log_retention(self) -> None:
|
|
46103
46355
|
return typing.cast(None, jsii.invoke(self, "setLogRetention", []))
|
|
46104
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
|
+
|
|
46105
46363
|
@builtins.property
|
|
46106
46364
|
@jsii.member(jsii_name="cloudwatchLogGroups")
|
|
46107
46365
|
def cloudwatch_log_groups(
|
|
@@ -46355,6 +46613,12 @@ class DatabaseProxy(
|
|
|
46355
46613
|
check_type(argname="argument db_user", value=db_user, expected_type=type_hints["db_user"])
|
|
46356
46614
|
return typing.cast(_Grant_a7ae64f8, jsii.invoke(self, "grantConnect", [grantee, db_user]))
|
|
46357
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
|
+
|
|
46358
46622
|
@builtins.property
|
|
46359
46623
|
@jsii.member(jsii_name="connections")
|
|
46360
46624
|
def connections(self) -> _Connections_0f31fce8:
|
|
@@ -46934,6 +47198,12 @@ class DatabaseCluster(
|
|
|
46934
47198
|
|
|
46935
47199
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricServerlessDatabaseCapacity", [props]))
|
|
46936
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
|
+
|
|
46937
47207
|
@builtins.property
|
|
46938
47208
|
@jsii.member(jsii_name="cloudwatchLogGroups")
|
|
46939
47209
|
def cloudwatch_log_groups(
|
|
@@ -47415,6 +47685,12 @@ class DatabaseInstance(
|
|
|
47415
47685
|
def _set_log_retention(self) -> None:
|
|
47416
47686
|
return typing.cast(None, jsii.invoke(self, "setLogRetention", []))
|
|
47417
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
|
+
|
|
47418
47694
|
@builtins.property
|
|
47419
47695
|
@jsii.member(jsii_name="cloudwatchLogGroups")
|
|
47420
47696
|
def cloudwatch_log_groups(
|