aws-cdk-lib 2.207.0__py3-none-any.whl → 2.208.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 (35) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.207.0.jsii.tgz → aws-cdk-lib@2.208.0.jsii.tgz} +0 -0
  3. aws_cdk/aws_aiops/__init__.py +16 -12
  4. aws_cdk/aws_amazonmq/__init__.py +8 -18
  5. aws_cdk/aws_appstream/__init__.py +36 -4
  6. aws_cdk/aws_bedrock/__init__.py +191 -72
  7. aws_cdk/aws_certificatemanager/__init__.py +45 -0
  8. aws_cdk/aws_cloudfront/__init__.py +12 -2
  9. aws_cdk/aws_connect/__init__.py +107 -3
  10. aws_cdk/aws_customerprofiles/__init__.py +27 -22
  11. aws_cdk/aws_docdb/__init__.py +5 -3
  12. aws_cdk/aws_ec2/__init__.py +53 -11
  13. aws_cdk/aws_ecs/__init__.py +118 -29
  14. aws_cdk/aws_events/__init__.py +142 -0
  15. aws_cdk/aws_gamelift/__init__.py +2 -2
  16. aws_cdk/aws_guardduty/__init__.py +86 -0
  17. aws_cdk/aws_kinesisfirehose/__init__.py +377 -4
  18. aws_cdk/aws_logs/__init__.py +53 -4
  19. aws_cdk/aws_mediapackagev2/__init__.py +881 -0
  20. aws_cdk/aws_omics/__init__.py +13 -10
  21. aws_cdk/aws_quicksight/__init__.py +111 -4
  22. aws_cdk/aws_rds/__init__.py +208 -10
  23. aws_cdk/aws_s3/__init__.py +775 -5
  24. aws_cdk/aws_s3express/__init__.py +61 -3
  25. aws_cdk/aws_s3tables/__init__.py +254 -0
  26. aws_cdk/aws_sagemaker/__init__.py +524 -137
  27. aws_cdk/aws_ssm/__init__.py +48 -0
  28. aws_cdk/aws_transfer/__init__.py +49 -0
  29. aws_cdk/aws_wisdom/__init__.py +1185 -100
  30. {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/METADATA +2 -2
  31. {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/RECORD +35 -35
  32. {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/LICENSE +0 -0
  33. {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/NOTICE +0 -0
  34. {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/WHEEL +0 -0
  35. {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/top_level.txt +0 -0
@@ -5369,6 +5369,7 @@ class CfnDBCluster(
5369
5369
  db_instance_parameter_group_name="dbInstanceParameterGroupName",
5370
5370
  db_subnet_group_name="dbSubnetGroupName",
5371
5371
  db_system_id="dbSystemId",
5372
+ delete_automated_backups=False,
5372
5373
  deletion_protection=False,
5373
5374
  domain="domain",
5374
5375
  domain_iam_role_name="domainIamRoleName",
@@ -5452,6 +5453,7 @@ class CfnDBCluster(
5452
5453
  db_instance_parameter_group_name: typing.Optional[builtins.str] = None,
5453
5454
  db_subnet_group_name: typing.Optional[builtins.str] = None,
5454
5455
  db_system_id: typing.Optional[builtins.str] = None,
5456
+ delete_automated_backups: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
5455
5457
  deletion_protection: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
5456
5458
  domain: typing.Optional[builtins.str] = None,
5457
5459
  domain_iam_role_name: typing.Optional[builtins.str] = None,
@@ -5514,6 +5516,7 @@ class CfnDBCluster(
5514
5516
  :param db_instance_parameter_group_name: The name of the DB parameter group to apply to all instances of the DB cluster. .. epigraph:: When you apply a parameter group using the ``DBInstanceParameterGroupName`` parameter, the DB cluster isn't rebooted automatically. Also, parameter changes are applied immediately rather than during the next maintenance window. Valid for Cluster Type: Aurora DB clusters only Default: The existing name setting Constraints: - The DB parameter group must be in the same DB parameter group family as this DB cluster. - The ``DBInstanceParameterGroupName`` parameter is valid in combination with the ``AllowMajorVersionUpgrade`` parameter for a major version upgrade only.
5515
5517
  :param db_subnet_group_name: A DB subnet group that you want to associate with this DB cluster. If you are restoring a DB cluster to a point in time with ``RestoreType`` set to ``copy-on-write`` , and don't specify a DB subnet group name, then the DB cluster is restored with a default DB subnet group. Valid for: Aurora DB clusters and Multi-AZ DB clusters
5516
5518
  :param db_system_id: Reserved for future use.
5519
+ :param delete_automated_backups: Specifies whether to remove automated backups immediately after the DB cluster is deleted. This parameter isn't case-sensitive. The default is to remove automated backups immediately after the DB cluster is deleted, unless the AWS Backup policy specifies a point-in-time restore rule.
5517
5520
  :param deletion_protection: A value that indicates whether the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection is disabled. Valid for: Aurora DB clusters and Multi-AZ DB clusters
5518
5521
  :param domain: Indicates the directory ID of the Active Directory to create the DB cluster. For Amazon Aurora DB clusters, Amazon RDS can use Kerberos authentication to authenticate users that connect to the DB cluster. For more information, see `Kerberos authentication <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html>`_ in the *Amazon Aurora User Guide* . Valid for: Aurora DB clusters only
5519
5522
  :param domain_iam_role_name: Specifies the name of the IAM role to use when making API calls to the Directory Service. Valid for: Aurora DB clusters only
@@ -5578,6 +5581,7 @@ class CfnDBCluster(
5578
5581
  db_instance_parameter_group_name=db_instance_parameter_group_name,
5579
5582
  db_subnet_group_name=db_subnet_group_name,
5580
5583
  db_system_id=db_system_id,
5584
+ delete_automated_backups=delete_automated_backups,
5581
5585
  deletion_protection=deletion_protection,
5582
5586
  domain=domain,
5583
5587
  domain_iam_role_name=domain_iam_role_name,
@@ -6000,6 +6004,24 @@ class CfnDBCluster(
6000
6004
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6001
6005
  jsii.set(self, "dbSystemId", value) # pyright: ignore[reportArgumentType]
6002
6006
 
6007
+ @builtins.property
6008
+ @jsii.member(jsii_name="deleteAutomatedBackups")
6009
+ def delete_automated_backups(
6010
+ self,
6011
+ ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
6012
+ '''Specifies whether to remove automated backups immediately after the DB cluster is deleted.'''
6013
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "deleteAutomatedBackups"))
6014
+
6015
+ @delete_automated_backups.setter
6016
+ def delete_automated_backups(
6017
+ self,
6018
+ value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
6019
+ ) -> None:
6020
+ if __debug__:
6021
+ type_hints = typing.get_type_hints(_typecheckingstub__9e8a2ba2ab46cead449dbe97283d45de5dd8c86ea7d68521f70c997f8eb39235)
6022
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6023
+ jsii.set(self, "deleteAutomatedBackups", value) # pyright: ignore[reportArgumentType]
6024
+
6003
6025
  @builtins.property
6004
6026
  @jsii.member(jsii_name="deletionProtection")
6005
6027
  def deletion_protection(
@@ -7583,6 +7605,7 @@ class CfnDBClusterParameterGroupProps:
7583
7605
  "db_instance_parameter_group_name": "dbInstanceParameterGroupName",
7584
7606
  "db_subnet_group_name": "dbSubnetGroupName",
7585
7607
  "db_system_id": "dbSystemId",
7608
+ "delete_automated_backups": "deleteAutomatedBackups",
7586
7609
  "deletion_protection": "deletionProtection",
7587
7610
  "domain": "domain",
7588
7611
  "domain_iam_role_name": "domainIamRoleName",
@@ -7647,6 +7670,7 @@ class CfnDBClusterProps:
7647
7670
  db_instance_parameter_group_name: typing.Optional[builtins.str] = None,
7648
7671
  db_subnet_group_name: typing.Optional[builtins.str] = None,
7649
7672
  db_system_id: typing.Optional[builtins.str] = None,
7673
+ delete_automated_backups: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
7650
7674
  deletion_protection: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
7651
7675
  domain: typing.Optional[builtins.str] = None,
7652
7676
  domain_iam_role_name: typing.Optional[builtins.str] = None,
@@ -7708,6 +7732,7 @@ class CfnDBClusterProps:
7708
7732
  :param db_instance_parameter_group_name: The name of the DB parameter group to apply to all instances of the DB cluster. .. epigraph:: When you apply a parameter group using the ``DBInstanceParameterGroupName`` parameter, the DB cluster isn't rebooted automatically. Also, parameter changes are applied immediately rather than during the next maintenance window. Valid for Cluster Type: Aurora DB clusters only Default: The existing name setting Constraints: - The DB parameter group must be in the same DB parameter group family as this DB cluster. - The ``DBInstanceParameterGroupName`` parameter is valid in combination with the ``AllowMajorVersionUpgrade`` parameter for a major version upgrade only.
7709
7733
  :param db_subnet_group_name: A DB subnet group that you want to associate with this DB cluster. If you are restoring a DB cluster to a point in time with ``RestoreType`` set to ``copy-on-write`` , and don't specify a DB subnet group name, then the DB cluster is restored with a default DB subnet group. Valid for: Aurora DB clusters and Multi-AZ DB clusters
7710
7734
  :param db_system_id: Reserved for future use.
7735
+ :param delete_automated_backups: Specifies whether to remove automated backups immediately after the DB cluster is deleted. This parameter isn't case-sensitive. The default is to remove automated backups immediately after the DB cluster is deleted, unless the AWS Backup policy specifies a point-in-time restore rule.
7711
7736
  :param deletion_protection: A value that indicates whether the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection is disabled. Valid for: Aurora DB clusters and Multi-AZ DB clusters
7712
7737
  :param domain: Indicates the directory ID of the Active Directory to create the DB cluster. For Amazon Aurora DB clusters, Amazon RDS can use Kerberos authentication to authenticate users that connect to the DB cluster. For more information, see `Kerberos authentication <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html>`_ in the *Amazon Aurora User Guide* . Valid for: Aurora DB clusters only
7713
7738
  :param domain_iam_role_name: Specifies the name of the IAM role to use when making API calls to the Directory Service. Valid for: Aurora DB clusters only
@@ -7782,6 +7807,7 @@ class CfnDBClusterProps:
7782
7807
  db_instance_parameter_group_name="dbInstanceParameterGroupName",
7783
7808
  db_subnet_group_name="dbSubnetGroupName",
7784
7809
  db_system_id="dbSystemId",
7810
+ delete_automated_backups=False,
7785
7811
  deletion_protection=False,
7786
7812
  domain="domain",
7787
7813
  domain_iam_role_name="domainIamRoleName",
@@ -7861,6 +7887,7 @@ class CfnDBClusterProps:
7861
7887
  check_type(argname="argument db_instance_parameter_group_name", value=db_instance_parameter_group_name, expected_type=type_hints["db_instance_parameter_group_name"])
7862
7888
  check_type(argname="argument db_subnet_group_name", value=db_subnet_group_name, expected_type=type_hints["db_subnet_group_name"])
7863
7889
  check_type(argname="argument db_system_id", value=db_system_id, expected_type=type_hints["db_system_id"])
7890
+ check_type(argname="argument delete_automated_backups", value=delete_automated_backups, expected_type=type_hints["delete_automated_backups"])
7864
7891
  check_type(argname="argument deletion_protection", value=deletion_protection, expected_type=type_hints["deletion_protection"])
7865
7892
  check_type(argname="argument domain", value=domain, expected_type=type_hints["domain"])
7866
7893
  check_type(argname="argument domain_iam_role_name", value=domain_iam_role_name, expected_type=type_hints["domain_iam_role_name"])
@@ -7936,6 +7963,8 @@ class CfnDBClusterProps:
7936
7963
  self._values["db_subnet_group_name"] = db_subnet_group_name
7937
7964
  if db_system_id is not None:
7938
7965
  self._values["db_system_id"] = db_system_id
7966
+ if delete_automated_backups is not None:
7967
+ self._values["delete_automated_backups"] = delete_automated_backups
7939
7968
  if deletion_protection is not None:
7940
7969
  self._values["deletion_protection"] = deletion_protection
7941
7970
  if domain is not None:
@@ -8268,6 +8297,19 @@ class CfnDBClusterProps:
8268
8297
  result = self._values.get("db_system_id")
8269
8298
  return typing.cast(typing.Optional[builtins.str], result)
8270
8299
 
8300
+ @builtins.property
8301
+ def delete_automated_backups(
8302
+ self,
8303
+ ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
8304
+ '''Specifies whether to remove automated backups immediately after the DB cluster is deleted.
8305
+
8306
+ This parameter isn't case-sensitive. The default is to remove automated backups immediately after the DB cluster is deleted, unless the AWS Backup policy specifies a point-in-time restore rule.
8307
+
8308
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deleteautomatedbackups
8309
+ '''
8310
+ result = self._values.get("delete_automated_backups")
8311
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
8312
+
8271
8313
  @builtins.property
8272
8314
  def deletion_protection(
8273
8315
  self,
@@ -9549,6 +9591,15 @@ class CfnDBInstance(
9549
9591
  '''
9550
9592
  return typing.cast(builtins.str, jsii.get(self, "attrDbInstanceArn"))
9551
9593
 
9594
+ @builtins.property
9595
+ @jsii.member(jsii_name="attrDbInstanceStatus")
9596
+ def attr_db_instance_status(self) -> builtins.str:
9597
+ '''The current state of this DB instance.
9598
+
9599
+ :cloudformationAttribute: DBInstanceStatus
9600
+ '''
9601
+ return typing.cast(builtins.str, jsii.get(self, "attrDbInstanceStatus"))
9602
+
9552
9603
  @builtins.property
9553
9604
  @jsii.member(jsii_name="attrDbiResourceId")
9554
9605
  def attr_dbi_resource_id(self) -> builtins.str:
@@ -9621,6 +9672,77 @@ class CfnDBInstance(
9621
9672
  '''
9622
9673
  return typing.cast(builtins.str, jsii.get(self, "attrEndpointPort"))
9623
9674
 
9675
+ @builtins.property
9676
+ @jsii.member(jsii_name="attrInstanceCreateTime")
9677
+ def attr_instance_create_time(self) -> builtins.str:
9678
+ '''The date and time when the DB instance was created.
9679
+
9680
+ :cloudformationAttribute: InstanceCreateTime
9681
+ '''
9682
+ return typing.cast(builtins.str, jsii.get(self, "attrInstanceCreateTime"))
9683
+
9684
+ @builtins.property
9685
+ @jsii.member(jsii_name="attrIsStorageConfigUpgradeAvailable")
9686
+ def attr_is_storage_config_upgrade_available(self) -> _IResolvable_da3f097b:
9687
+ '''Indicates whether an upgrade is recommended for the storage file system configuration on the DB instance.
9688
+
9689
+ :cloudformationAttribute: IsStorageConfigUpgradeAvailable
9690
+ '''
9691
+ return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrIsStorageConfigUpgradeAvailable"))
9692
+
9693
+ @builtins.property
9694
+ @jsii.member(jsii_name="attrLatestRestorableTime")
9695
+ def attr_latest_restorable_time(self) -> builtins.str:
9696
+ '''The latest time to which a database in this DB instance can be restored with point-in-time restore.
9697
+
9698
+ :cloudformationAttribute: LatestRestorableTime
9699
+ '''
9700
+ return typing.cast(builtins.str, jsii.get(self, "attrLatestRestorableTime"))
9701
+
9702
+ @builtins.property
9703
+ @jsii.member(jsii_name="attrListenerEndpoint")
9704
+ def attr_listener_endpoint(self) -> _IResolvable_da3f097b:
9705
+ '''This data type represents the information you need to connect to an Amazon RDS DB instance.
9706
+
9707
+ This data type is used as a response element in the following actions:
9708
+
9709
+ - ``CreateDBInstance``
9710
+ - ``DescribeDBInstances``
9711
+ - ``DeleteDBInstance``
9712
+
9713
+ For the data structure that represents Amazon Aurora DB cluster endpoints, see ``DBClusterEndpoint``.
9714
+
9715
+ :cloudformationAttribute: ListenerEndpoint
9716
+ '''
9717
+ return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrListenerEndpoint"))
9718
+
9719
+ @builtins.property
9720
+ @jsii.member(jsii_name="attrListenerEndpointAddress")
9721
+ def attr_listener_endpoint_address(self) -> builtins.str:
9722
+ '''Specifies the DNS address of the DB instance.
9723
+
9724
+ :cloudformationAttribute: ListenerEndpoint.Address
9725
+ '''
9726
+ return typing.cast(builtins.str, jsii.get(self, "attrListenerEndpointAddress"))
9727
+
9728
+ @builtins.property
9729
+ @jsii.member(jsii_name="attrListenerEndpointHostedZoneId")
9730
+ def attr_listener_endpoint_hosted_zone_id(self) -> builtins.str:
9731
+ '''Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.
9732
+
9733
+ :cloudformationAttribute: ListenerEndpoint.HostedZoneId
9734
+ '''
9735
+ return typing.cast(builtins.str, jsii.get(self, "attrListenerEndpointHostedZoneId"))
9736
+
9737
+ @builtins.property
9738
+ @jsii.member(jsii_name="attrListenerEndpointPort")
9739
+ def attr_listener_endpoint_port(self) -> builtins.str:
9740
+ '''Specifies the port that the database engine is listening on.
9741
+
9742
+ :cloudformationAttribute: ListenerEndpoint.Port
9743
+ '''
9744
+ return typing.cast(builtins.str, jsii.get(self, "attrListenerEndpointPort"))
9745
+
9624
9746
  @builtins.property
9625
9747
  @jsii.member(jsii_name="attrMasterUserSecretSecretArn")
9626
9748
  def attr_master_user_secret_secret_arn(self) -> builtins.str:
@@ -9632,6 +9754,24 @@ class CfnDBInstance(
9632
9754
  '''
9633
9755
  return typing.cast(builtins.str, jsii.get(self, "attrMasterUserSecretSecretArn"))
9634
9756
 
9757
+ @builtins.property
9758
+ @jsii.member(jsii_name="attrReadReplicaDbClusterIdentifiers")
9759
+ def attr_read_replica_db_cluster_identifiers(self) -> typing.List[builtins.str]:
9760
+ '''The identifiers of Aurora DB clusters to which the RDS DB instance is replicated as a read replica.
9761
+
9762
+ :cloudformationAttribute: ReadReplicaDBClusterIdentifiers
9763
+ '''
9764
+ return typing.cast(typing.List[builtins.str], jsii.get(self, "attrReadReplicaDbClusterIdentifiers"))
9765
+
9766
+ @builtins.property
9767
+ @jsii.member(jsii_name="attrReadReplicaDbInstanceIdentifiers")
9768
+ def attr_read_replica_db_instance_identifiers(self) -> typing.List[builtins.str]:
9769
+ '''The identifiers of the read replicas associated with this DB instance.
9770
+
9771
+ :cloudformationAttribute: ReadReplicaDBInstanceIdentifiers
9772
+ '''
9773
+ return typing.cast(typing.List[builtins.str], jsii.get(self, "attrReadReplicaDbInstanceIdentifiers"))
9774
+
9635
9775
  @builtins.property
9636
9776
  @jsii.member(jsii_name="cfnProperties")
9637
9777
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -36937,7 +37077,12 @@ class PostgresEngineVersion(
36937
37077
  @jsii.python.classproperty
36938
37078
  @jsii.member(jsii_name="VER_13_17")
36939
37079
  def VER_13_17(cls) -> "PostgresEngineVersion":
36940
- '''Version "13.17".'''
37080
+ '''(deprecated) Version "13.17".
37081
+
37082
+ :deprecated: PostgreSQL 13.17 is no longer supported by Amazon RDS
37083
+
37084
+ :stability: deprecated
37085
+ '''
36941
37086
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_13_17"))
36942
37087
 
36943
37088
  @jsii.python.classproperty
@@ -36949,7 +37094,12 @@ class PostgresEngineVersion(
36949
37094
  @jsii.python.classproperty
36950
37095
  @jsii.member(jsii_name="VER_13_19")
36951
37096
  def VER_13_19(cls) -> "PostgresEngineVersion":
36952
- '''Version "13.19".'''
37097
+ '''(deprecated) Version "13.19".
37098
+
37099
+ :deprecated: PostgreSQL 13.19 is no longer supported by Amazon RDS
37100
+
37101
+ :stability: deprecated
37102
+ '''
36953
37103
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_13_19"))
36954
37104
 
36955
37105
  @jsii.python.classproperty
@@ -37106,7 +37256,12 @@ class PostgresEngineVersion(
37106
37256
  @jsii.python.classproperty
37107
37257
  @jsii.member(jsii_name="VER_14_14")
37108
37258
  def VER_14_14(cls) -> "PostgresEngineVersion":
37109
- '''Version "14.14".'''
37259
+ '''(deprecated) Version "14.14".
37260
+
37261
+ :deprecated: PostgreSQL 14.14 is no longer supported by Amazon RDS
37262
+
37263
+ :stability: deprecated
37264
+ '''
37110
37265
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_14_14"))
37111
37266
 
37112
37267
  @jsii.python.classproperty
@@ -37118,7 +37273,12 @@ class PostgresEngineVersion(
37118
37273
  @jsii.python.classproperty
37119
37274
  @jsii.member(jsii_name="VER_14_16")
37120
37275
  def VER_14_16(cls) -> "PostgresEngineVersion":
37121
- '''Version "14.16".'''
37276
+ '''(deprecated) Version "14.16".
37277
+
37278
+ :deprecated: PostgreSQL 14.16 is no longer supported by Amazon RDS
37279
+
37280
+ :stability: deprecated
37281
+ '''
37122
37282
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_14_16"))
37123
37283
 
37124
37284
  @jsii.python.classproperty
@@ -37236,7 +37396,12 @@ class PostgresEngineVersion(
37236
37396
  @jsii.python.classproperty
37237
37397
  @jsii.member(jsii_name="VER_15_11")
37238
37398
  def VER_15_11(cls) -> "PostgresEngineVersion":
37239
- '''Version "15.11".'''
37399
+ '''(deprecated) Version "15.11".
37400
+
37401
+ :deprecated: PostgreSQL 15.11 is no longer supported by Amazon RDS
37402
+
37403
+ :stability: deprecated
37404
+ '''
37240
37405
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_15_11"))
37241
37406
 
37242
37407
  @jsii.python.classproperty
@@ -37321,7 +37486,12 @@ class PostgresEngineVersion(
37321
37486
  @jsii.python.classproperty
37322
37487
  @jsii.member(jsii_name="VER_15_9")
37323
37488
  def VER_15_9(cls) -> "PostgresEngineVersion":
37324
- '''Version "15.9".'''
37489
+ '''(deprecated) Version "15.9".
37490
+
37491
+ :deprecated: PostgreSQL 15.9 is no longer supported by Amazon RDS
37492
+
37493
+ :stability: deprecated
37494
+ '''
37325
37495
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_15_9"))
37326
37496
 
37327
37497
  @jsii.python.classproperty
@@ -37367,7 +37537,12 @@ class PostgresEngineVersion(
37367
37537
  @jsii.python.classproperty
37368
37538
  @jsii.member(jsii_name="VER_16_5")
37369
37539
  def VER_16_5(cls) -> "PostgresEngineVersion":
37370
- '''Version "16.5".'''
37540
+ '''(deprecated) Version "16.5".
37541
+
37542
+ :deprecated: PostgreSQL 16.5 is no longer supported by Amazon RDS
37543
+
37544
+ :stability: deprecated
37545
+ '''
37371
37546
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_16_5"))
37372
37547
 
37373
37548
  @jsii.python.classproperty
@@ -37379,7 +37554,12 @@ class PostgresEngineVersion(
37379
37554
  @jsii.python.classproperty
37380
37555
  @jsii.member(jsii_name="VER_16_7")
37381
37556
  def VER_16_7(cls) -> "PostgresEngineVersion":
37382
- '''Version "16.7".'''
37557
+ '''(deprecated) Version "16.7".
37558
+
37559
+ :deprecated: PostgreSQL 16.7 is no longer supported by Amazon RDS
37560
+
37561
+ :stability: deprecated
37562
+ '''
37383
37563
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_16_7"))
37384
37564
 
37385
37565
  @jsii.python.classproperty
@@ -37403,7 +37583,12 @@ class PostgresEngineVersion(
37403
37583
  @jsii.python.classproperty
37404
37584
  @jsii.member(jsii_name="VER_17_1")
37405
37585
  def VER_17_1(cls) -> "PostgresEngineVersion":
37406
- '''Version "17.1".'''
37586
+ '''(deprecated) Version "17.1".
37587
+
37588
+ :deprecated: PostgreSQL 17.1 is no longer supported by Amazon RDS
37589
+
37590
+ :stability: deprecated
37591
+ '''
37407
37592
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_17_1"))
37408
37593
 
37409
37594
  @jsii.python.classproperty
@@ -37415,7 +37600,12 @@ class PostgresEngineVersion(
37415
37600
  @jsii.python.classproperty
37416
37601
  @jsii.member(jsii_name="VER_17_3")
37417
37602
  def VER_17_3(cls) -> "PostgresEngineVersion":
37418
- '''Version "17.3".'''
37603
+ '''(deprecated) Version "17.3".
37604
+
37605
+ :deprecated: PostgreSQL 17.3 is no longer supported by Amazon RDS
37606
+
37607
+ :stability: deprecated
37608
+ '''
37419
37609
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_17_3"))
37420
37610
 
37421
37611
  @jsii.python.classproperty
@@ -49147,6 +49337,7 @@ def _typecheckingstub__1eb14b9dcc306eabcc2963c7b6ef9b87bf8d616bb5691dbc6656242be
49147
49337
  db_instance_parameter_group_name: typing.Optional[builtins.str] = None,
49148
49338
  db_subnet_group_name: typing.Optional[builtins.str] = None,
49149
49339
  db_system_id: typing.Optional[builtins.str] = None,
49340
+ delete_automated_backups: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
49150
49341
  deletion_protection: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
49151
49342
  domain: typing.Optional[builtins.str] = None,
49152
49343
  domain_iam_role_name: typing.Optional[builtins.str] = None,
@@ -49301,6 +49492,12 @@ def _typecheckingstub__41f2773ed2c93659b8bf06ee2830b9675bbe867fb30ad2e89f77f72a4
49301
49492
  """Type checking stubs"""
49302
49493
  pass
49303
49494
 
49495
+ def _typecheckingstub__9e8a2ba2ab46cead449dbe97283d45de5dd8c86ea7d68521f70c997f8eb39235(
49496
+ value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
49497
+ ) -> None:
49498
+ """Type checking stubs"""
49499
+ pass
49500
+
49304
49501
  def _typecheckingstub__a96b132db813926d0ef31c223b961804a782255c93a76d8ab91de8c2ca7b0f35(
49305
49502
  value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
49306
49503
  ) -> None:
@@ -49689,6 +49886,7 @@ def _typecheckingstub__aaf089104646bb0ea95e48cd2107d642585c3eb3785a21112fc029b15
49689
49886
  db_instance_parameter_group_name: typing.Optional[builtins.str] = None,
49690
49887
  db_subnet_group_name: typing.Optional[builtins.str] = None,
49691
49888
  db_system_id: typing.Optional[builtins.str] = None,
49889
+ delete_automated_backups: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
49692
49890
  deletion_protection: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
49693
49891
  domain: typing.Optional[builtins.str] = None,
49694
49892
  domain_iam_role_name: typing.Optional[builtins.str] = None,