aws-cdk-lib 2.207.0__py3-none-any.whl → 2.209.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.
- aws_cdk/__init__.py +31 -3
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.207.0.jsii.tgz → aws-cdk-lib@2.209.0.jsii.tgz} +0 -0
- aws_cdk/aws_aiops/__init__.py +16 -12
- aws_cdk/aws_amazonmq/__init__.py +8 -18
- aws_cdk/aws_appstream/__init__.py +36 -4
- aws_cdk/aws_bedrock/__init__.py +227 -102
- aws_cdk/aws_certificatemanager/__init__.py +45 -0
- aws_cdk/aws_cloudfront/__init__.py +12 -2
- aws_cdk/aws_connect/__init__.py +107 -3
- aws_cdk/aws_customerprofiles/__init__.py +27 -22
- aws_cdk/aws_docdb/__init__.py +5 -3
- aws_cdk/aws_ec2/__init__.py +58 -16
- aws_cdk/aws_ecs/__init__.py +1554 -78
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +27 -15
- aws_cdk/aws_events/__init__.py +142 -0
- aws_cdk/aws_gamelift/__init__.py +2 -2
- aws_cdk/aws_guardduty/__init__.py +86 -0
- aws_cdk/aws_kinesisfirehose/__init__.py +377 -4
- aws_cdk/aws_lambda/__init__.py +76 -67
- aws_cdk/aws_logs/__init__.py +53 -4
- aws_cdk/aws_mediapackagev2/__init__.py +881 -0
- aws_cdk/aws_omics/__init__.py +13 -10
- aws_cdk/aws_quicksight/__init__.py +111 -4
- aws_cdk/aws_rds/__init__.py +214 -10
- aws_cdk/aws_route53/__init__.py +97 -41
- aws_cdk/aws_s3/__init__.py +775 -5
- aws_cdk/aws_s3express/__init__.py +61 -3
- aws_cdk/aws_s3tables/__init__.py +254 -0
- aws_cdk/aws_sagemaker/__init__.py +524 -137
- aws_cdk/aws_ssm/__init__.py +48 -0
- aws_cdk/aws_transfer/__init__.py +49 -0
- aws_cdk/aws_wisdom/__init__.py +1185 -100
- aws_cdk/cloud_assembly_schema/__init__.py +28 -2
- aws_cdk/custom_resources/__init__.py +1 -1
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/RECORD +41 -41
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_rds/__init__.py
CHANGED
|
@@ -3221,6 +3221,12 @@ class AuroraMysqlEngineVersion(
|
|
|
3221
3221
|
'''Version "8.0.mysql_aurora.3.09.0".'''
|
|
3222
3222
|
return typing.cast("AuroraMysqlEngineVersion", jsii.sget(cls, "VER_3_09_0"))
|
|
3223
3223
|
|
|
3224
|
+
@jsii.python.classproperty
|
|
3225
|
+
@jsii.member(jsii_name="VER_3_10_0")
|
|
3226
|
+
def VER_3_10_0(cls) -> "AuroraMysqlEngineVersion":
|
|
3227
|
+
'''Version "8.0.mysql_aurora.3.10.0".'''
|
|
3228
|
+
return typing.cast("AuroraMysqlEngineVersion", jsii.sget(cls, "VER_3_10_0"))
|
|
3229
|
+
|
|
3224
3230
|
@jsii.python.classproperty
|
|
3225
3231
|
@jsii.member(jsii_name="VER_5_7_12")
|
|
3226
3232
|
def VER_5_7_12(cls) -> "AuroraMysqlEngineVersion":
|
|
@@ -5369,6 +5375,7 @@ class CfnDBCluster(
|
|
|
5369
5375
|
db_instance_parameter_group_name="dbInstanceParameterGroupName",
|
|
5370
5376
|
db_subnet_group_name="dbSubnetGroupName",
|
|
5371
5377
|
db_system_id="dbSystemId",
|
|
5378
|
+
delete_automated_backups=False,
|
|
5372
5379
|
deletion_protection=False,
|
|
5373
5380
|
domain="domain",
|
|
5374
5381
|
domain_iam_role_name="domainIamRoleName",
|
|
@@ -5452,6 +5459,7 @@ class CfnDBCluster(
|
|
|
5452
5459
|
db_instance_parameter_group_name: typing.Optional[builtins.str] = None,
|
|
5453
5460
|
db_subnet_group_name: typing.Optional[builtins.str] = None,
|
|
5454
5461
|
db_system_id: typing.Optional[builtins.str] = None,
|
|
5462
|
+
delete_automated_backups: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5455
5463
|
deletion_protection: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5456
5464
|
domain: typing.Optional[builtins.str] = None,
|
|
5457
5465
|
domain_iam_role_name: typing.Optional[builtins.str] = None,
|
|
@@ -5514,6 +5522,7 @@ class CfnDBCluster(
|
|
|
5514
5522
|
: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
5523
|
: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
5524
|
:param db_system_id: Reserved for future use.
|
|
5525
|
+
: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
5526
|
: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
5527
|
: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
5528
|
: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 +5587,7 @@ class CfnDBCluster(
|
|
|
5578
5587
|
db_instance_parameter_group_name=db_instance_parameter_group_name,
|
|
5579
5588
|
db_subnet_group_name=db_subnet_group_name,
|
|
5580
5589
|
db_system_id=db_system_id,
|
|
5590
|
+
delete_automated_backups=delete_automated_backups,
|
|
5581
5591
|
deletion_protection=deletion_protection,
|
|
5582
5592
|
domain=domain,
|
|
5583
5593
|
domain_iam_role_name=domain_iam_role_name,
|
|
@@ -6000,6 +6010,24 @@ class CfnDBCluster(
|
|
|
6000
6010
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6001
6011
|
jsii.set(self, "dbSystemId", value) # pyright: ignore[reportArgumentType]
|
|
6002
6012
|
|
|
6013
|
+
@builtins.property
|
|
6014
|
+
@jsii.member(jsii_name="deleteAutomatedBackups")
|
|
6015
|
+
def delete_automated_backups(
|
|
6016
|
+
self,
|
|
6017
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
6018
|
+
'''Specifies whether to remove automated backups immediately after the DB cluster is deleted.'''
|
|
6019
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "deleteAutomatedBackups"))
|
|
6020
|
+
|
|
6021
|
+
@delete_automated_backups.setter
|
|
6022
|
+
def delete_automated_backups(
|
|
6023
|
+
self,
|
|
6024
|
+
value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
|
|
6025
|
+
) -> None:
|
|
6026
|
+
if __debug__:
|
|
6027
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9e8a2ba2ab46cead449dbe97283d45de5dd8c86ea7d68521f70c997f8eb39235)
|
|
6028
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6029
|
+
jsii.set(self, "deleteAutomatedBackups", value) # pyright: ignore[reportArgumentType]
|
|
6030
|
+
|
|
6003
6031
|
@builtins.property
|
|
6004
6032
|
@jsii.member(jsii_name="deletionProtection")
|
|
6005
6033
|
def deletion_protection(
|
|
@@ -7583,6 +7611,7 @@ class CfnDBClusterParameterGroupProps:
|
|
|
7583
7611
|
"db_instance_parameter_group_name": "dbInstanceParameterGroupName",
|
|
7584
7612
|
"db_subnet_group_name": "dbSubnetGroupName",
|
|
7585
7613
|
"db_system_id": "dbSystemId",
|
|
7614
|
+
"delete_automated_backups": "deleteAutomatedBackups",
|
|
7586
7615
|
"deletion_protection": "deletionProtection",
|
|
7587
7616
|
"domain": "domain",
|
|
7588
7617
|
"domain_iam_role_name": "domainIamRoleName",
|
|
@@ -7647,6 +7676,7 @@ class CfnDBClusterProps:
|
|
|
7647
7676
|
db_instance_parameter_group_name: typing.Optional[builtins.str] = None,
|
|
7648
7677
|
db_subnet_group_name: typing.Optional[builtins.str] = None,
|
|
7649
7678
|
db_system_id: typing.Optional[builtins.str] = None,
|
|
7679
|
+
delete_automated_backups: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
7650
7680
|
deletion_protection: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
7651
7681
|
domain: typing.Optional[builtins.str] = None,
|
|
7652
7682
|
domain_iam_role_name: typing.Optional[builtins.str] = None,
|
|
@@ -7708,6 +7738,7 @@ class CfnDBClusterProps:
|
|
|
7708
7738
|
: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
7739
|
: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
7740
|
:param db_system_id: Reserved for future use.
|
|
7741
|
+
: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
7742
|
: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
7743
|
: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
7744
|
: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 +7813,7 @@ class CfnDBClusterProps:
|
|
|
7782
7813
|
db_instance_parameter_group_name="dbInstanceParameterGroupName",
|
|
7783
7814
|
db_subnet_group_name="dbSubnetGroupName",
|
|
7784
7815
|
db_system_id="dbSystemId",
|
|
7816
|
+
delete_automated_backups=False,
|
|
7785
7817
|
deletion_protection=False,
|
|
7786
7818
|
domain="domain",
|
|
7787
7819
|
domain_iam_role_name="domainIamRoleName",
|
|
@@ -7861,6 +7893,7 @@ class CfnDBClusterProps:
|
|
|
7861
7893
|
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
7894
|
check_type(argname="argument db_subnet_group_name", value=db_subnet_group_name, expected_type=type_hints["db_subnet_group_name"])
|
|
7863
7895
|
check_type(argname="argument db_system_id", value=db_system_id, expected_type=type_hints["db_system_id"])
|
|
7896
|
+
check_type(argname="argument delete_automated_backups", value=delete_automated_backups, expected_type=type_hints["delete_automated_backups"])
|
|
7864
7897
|
check_type(argname="argument deletion_protection", value=deletion_protection, expected_type=type_hints["deletion_protection"])
|
|
7865
7898
|
check_type(argname="argument domain", value=domain, expected_type=type_hints["domain"])
|
|
7866
7899
|
check_type(argname="argument domain_iam_role_name", value=domain_iam_role_name, expected_type=type_hints["domain_iam_role_name"])
|
|
@@ -7936,6 +7969,8 @@ class CfnDBClusterProps:
|
|
|
7936
7969
|
self._values["db_subnet_group_name"] = db_subnet_group_name
|
|
7937
7970
|
if db_system_id is not None:
|
|
7938
7971
|
self._values["db_system_id"] = db_system_id
|
|
7972
|
+
if delete_automated_backups is not None:
|
|
7973
|
+
self._values["delete_automated_backups"] = delete_automated_backups
|
|
7939
7974
|
if deletion_protection is not None:
|
|
7940
7975
|
self._values["deletion_protection"] = deletion_protection
|
|
7941
7976
|
if domain is not None:
|
|
@@ -8268,6 +8303,19 @@ class CfnDBClusterProps:
|
|
|
8268
8303
|
result = self._values.get("db_system_id")
|
|
8269
8304
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
8270
8305
|
|
|
8306
|
+
@builtins.property
|
|
8307
|
+
def delete_automated_backups(
|
|
8308
|
+
self,
|
|
8309
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
8310
|
+
'''Specifies whether to remove automated backups immediately after the DB cluster is deleted.
|
|
8311
|
+
|
|
8312
|
+
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.
|
|
8313
|
+
|
|
8314
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deleteautomatedbackups
|
|
8315
|
+
'''
|
|
8316
|
+
result = self._values.get("delete_automated_backups")
|
|
8317
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
8318
|
+
|
|
8271
8319
|
@builtins.property
|
|
8272
8320
|
def deletion_protection(
|
|
8273
8321
|
self,
|
|
@@ -9549,6 +9597,15 @@ class CfnDBInstance(
|
|
|
9549
9597
|
'''
|
|
9550
9598
|
return typing.cast(builtins.str, jsii.get(self, "attrDbInstanceArn"))
|
|
9551
9599
|
|
|
9600
|
+
@builtins.property
|
|
9601
|
+
@jsii.member(jsii_name="attrDbInstanceStatus")
|
|
9602
|
+
def attr_db_instance_status(self) -> builtins.str:
|
|
9603
|
+
'''The current state of this DB instance.
|
|
9604
|
+
|
|
9605
|
+
:cloudformationAttribute: DBInstanceStatus
|
|
9606
|
+
'''
|
|
9607
|
+
return typing.cast(builtins.str, jsii.get(self, "attrDbInstanceStatus"))
|
|
9608
|
+
|
|
9552
9609
|
@builtins.property
|
|
9553
9610
|
@jsii.member(jsii_name="attrDbiResourceId")
|
|
9554
9611
|
def attr_dbi_resource_id(self) -> builtins.str:
|
|
@@ -9621,6 +9678,77 @@ class CfnDBInstance(
|
|
|
9621
9678
|
'''
|
|
9622
9679
|
return typing.cast(builtins.str, jsii.get(self, "attrEndpointPort"))
|
|
9623
9680
|
|
|
9681
|
+
@builtins.property
|
|
9682
|
+
@jsii.member(jsii_name="attrInstanceCreateTime")
|
|
9683
|
+
def attr_instance_create_time(self) -> builtins.str:
|
|
9684
|
+
'''The date and time when the DB instance was created.
|
|
9685
|
+
|
|
9686
|
+
:cloudformationAttribute: InstanceCreateTime
|
|
9687
|
+
'''
|
|
9688
|
+
return typing.cast(builtins.str, jsii.get(self, "attrInstanceCreateTime"))
|
|
9689
|
+
|
|
9690
|
+
@builtins.property
|
|
9691
|
+
@jsii.member(jsii_name="attrIsStorageConfigUpgradeAvailable")
|
|
9692
|
+
def attr_is_storage_config_upgrade_available(self) -> _IResolvable_da3f097b:
|
|
9693
|
+
'''Indicates whether an upgrade is recommended for the storage file system configuration on the DB instance.
|
|
9694
|
+
|
|
9695
|
+
:cloudformationAttribute: IsStorageConfigUpgradeAvailable
|
|
9696
|
+
'''
|
|
9697
|
+
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrIsStorageConfigUpgradeAvailable"))
|
|
9698
|
+
|
|
9699
|
+
@builtins.property
|
|
9700
|
+
@jsii.member(jsii_name="attrLatestRestorableTime")
|
|
9701
|
+
def attr_latest_restorable_time(self) -> builtins.str:
|
|
9702
|
+
'''The latest time to which a database in this DB instance can be restored with point-in-time restore.
|
|
9703
|
+
|
|
9704
|
+
:cloudformationAttribute: LatestRestorableTime
|
|
9705
|
+
'''
|
|
9706
|
+
return typing.cast(builtins.str, jsii.get(self, "attrLatestRestorableTime"))
|
|
9707
|
+
|
|
9708
|
+
@builtins.property
|
|
9709
|
+
@jsii.member(jsii_name="attrListenerEndpoint")
|
|
9710
|
+
def attr_listener_endpoint(self) -> _IResolvable_da3f097b:
|
|
9711
|
+
'''This data type represents the information you need to connect to an Amazon RDS DB instance.
|
|
9712
|
+
|
|
9713
|
+
This data type is used as a response element in the following actions:
|
|
9714
|
+
|
|
9715
|
+
- ``CreateDBInstance``
|
|
9716
|
+
- ``DescribeDBInstances``
|
|
9717
|
+
- ``DeleteDBInstance``
|
|
9718
|
+
|
|
9719
|
+
For the data structure that represents Amazon Aurora DB cluster endpoints, see ``DBClusterEndpoint``.
|
|
9720
|
+
|
|
9721
|
+
:cloudformationAttribute: ListenerEndpoint
|
|
9722
|
+
'''
|
|
9723
|
+
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrListenerEndpoint"))
|
|
9724
|
+
|
|
9725
|
+
@builtins.property
|
|
9726
|
+
@jsii.member(jsii_name="attrListenerEndpointAddress")
|
|
9727
|
+
def attr_listener_endpoint_address(self) -> builtins.str:
|
|
9728
|
+
'''Specifies the DNS address of the DB instance.
|
|
9729
|
+
|
|
9730
|
+
:cloudformationAttribute: ListenerEndpoint.Address
|
|
9731
|
+
'''
|
|
9732
|
+
return typing.cast(builtins.str, jsii.get(self, "attrListenerEndpointAddress"))
|
|
9733
|
+
|
|
9734
|
+
@builtins.property
|
|
9735
|
+
@jsii.member(jsii_name="attrListenerEndpointHostedZoneId")
|
|
9736
|
+
def attr_listener_endpoint_hosted_zone_id(self) -> builtins.str:
|
|
9737
|
+
'''Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.
|
|
9738
|
+
|
|
9739
|
+
:cloudformationAttribute: ListenerEndpoint.HostedZoneId
|
|
9740
|
+
'''
|
|
9741
|
+
return typing.cast(builtins.str, jsii.get(self, "attrListenerEndpointHostedZoneId"))
|
|
9742
|
+
|
|
9743
|
+
@builtins.property
|
|
9744
|
+
@jsii.member(jsii_name="attrListenerEndpointPort")
|
|
9745
|
+
def attr_listener_endpoint_port(self) -> builtins.str:
|
|
9746
|
+
'''Specifies the port that the database engine is listening on.
|
|
9747
|
+
|
|
9748
|
+
:cloudformationAttribute: ListenerEndpoint.Port
|
|
9749
|
+
'''
|
|
9750
|
+
return typing.cast(builtins.str, jsii.get(self, "attrListenerEndpointPort"))
|
|
9751
|
+
|
|
9624
9752
|
@builtins.property
|
|
9625
9753
|
@jsii.member(jsii_name="attrMasterUserSecretSecretArn")
|
|
9626
9754
|
def attr_master_user_secret_secret_arn(self) -> builtins.str:
|
|
@@ -9632,6 +9760,24 @@ class CfnDBInstance(
|
|
|
9632
9760
|
'''
|
|
9633
9761
|
return typing.cast(builtins.str, jsii.get(self, "attrMasterUserSecretSecretArn"))
|
|
9634
9762
|
|
|
9763
|
+
@builtins.property
|
|
9764
|
+
@jsii.member(jsii_name="attrReadReplicaDbClusterIdentifiers")
|
|
9765
|
+
def attr_read_replica_db_cluster_identifiers(self) -> typing.List[builtins.str]:
|
|
9766
|
+
'''The identifiers of Aurora DB clusters to which the RDS DB instance is replicated as a read replica.
|
|
9767
|
+
|
|
9768
|
+
:cloudformationAttribute: ReadReplicaDBClusterIdentifiers
|
|
9769
|
+
'''
|
|
9770
|
+
return typing.cast(typing.List[builtins.str], jsii.get(self, "attrReadReplicaDbClusterIdentifiers"))
|
|
9771
|
+
|
|
9772
|
+
@builtins.property
|
|
9773
|
+
@jsii.member(jsii_name="attrReadReplicaDbInstanceIdentifiers")
|
|
9774
|
+
def attr_read_replica_db_instance_identifiers(self) -> typing.List[builtins.str]:
|
|
9775
|
+
'''The identifiers of the read replicas associated with this DB instance.
|
|
9776
|
+
|
|
9777
|
+
:cloudformationAttribute: ReadReplicaDBInstanceIdentifiers
|
|
9778
|
+
'''
|
|
9779
|
+
return typing.cast(typing.List[builtins.str], jsii.get(self, "attrReadReplicaDbInstanceIdentifiers"))
|
|
9780
|
+
|
|
9635
9781
|
@builtins.property
|
|
9636
9782
|
@jsii.member(jsii_name="cfnProperties")
|
|
9637
9783
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -36937,7 +37083,12 @@ class PostgresEngineVersion(
|
|
|
36937
37083
|
@jsii.python.classproperty
|
|
36938
37084
|
@jsii.member(jsii_name="VER_13_17")
|
|
36939
37085
|
def VER_13_17(cls) -> "PostgresEngineVersion":
|
|
36940
|
-
'''Version "13.17".
|
|
37086
|
+
'''(deprecated) Version "13.17".
|
|
37087
|
+
|
|
37088
|
+
:deprecated: PostgreSQL 13.17 is no longer supported by Amazon RDS
|
|
37089
|
+
|
|
37090
|
+
:stability: deprecated
|
|
37091
|
+
'''
|
|
36941
37092
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_13_17"))
|
|
36942
37093
|
|
|
36943
37094
|
@jsii.python.classproperty
|
|
@@ -36949,7 +37100,12 @@ class PostgresEngineVersion(
|
|
|
36949
37100
|
@jsii.python.classproperty
|
|
36950
37101
|
@jsii.member(jsii_name="VER_13_19")
|
|
36951
37102
|
def VER_13_19(cls) -> "PostgresEngineVersion":
|
|
36952
|
-
'''Version "13.19".
|
|
37103
|
+
'''(deprecated) Version "13.19".
|
|
37104
|
+
|
|
37105
|
+
:deprecated: PostgreSQL 13.19 is no longer supported by Amazon RDS
|
|
37106
|
+
|
|
37107
|
+
:stability: deprecated
|
|
37108
|
+
'''
|
|
36953
37109
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_13_19"))
|
|
36954
37110
|
|
|
36955
37111
|
@jsii.python.classproperty
|
|
@@ -37106,7 +37262,12 @@ class PostgresEngineVersion(
|
|
|
37106
37262
|
@jsii.python.classproperty
|
|
37107
37263
|
@jsii.member(jsii_name="VER_14_14")
|
|
37108
37264
|
def VER_14_14(cls) -> "PostgresEngineVersion":
|
|
37109
|
-
'''Version "14.14".
|
|
37265
|
+
'''(deprecated) Version "14.14".
|
|
37266
|
+
|
|
37267
|
+
:deprecated: PostgreSQL 14.14 is no longer supported by Amazon RDS
|
|
37268
|
+
|
|
37269
|
+
:stability: deprecated
|
|
37270
|
+
'''
|
|
37110
37271
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_14_14"))
|
|
37111
37272
|
|
|
37112
37273
|
@jsii.python.classproperty
|
|
@@ -37118,7 +37279,12 @@ class PostgresEngineVersion(
|
|
|
37118
37279
|
@jsii.python.classproperty
|
|
37119
37280
|
@jsii.member(jsii_name="VER_14_16")
|
|
37120
37281
|
def VER_14_16(cls) -> "PostgresEngineVersion":
|
|
37121
|
-
'''Version "14.16".
|
|
37282
|
+
'''(deprecated) Version "14.16".
|
|
37283
|
+
|
|
37284
|
+
:deprecated: PostgreSQL 14.16 is no longer supported by Amazon RDS
|
|
37285
|
+
|
|
37286
|
+
:stability: deprecated
|
|
37287
|
+
'''
|
|
37122
37288
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_14_16"))
|
|
37123
37289
|
|
|
37124
37290
|
@jsii.python.classproperty
|
|
@@ -37236,7 +37402,12 @@ class PostgresEngineVersion(
|
|
|
37236
37402
|
@jsii.python.classproperty
|
|
37237
37403
|
@jsii.member(jsii_name="VER_15_11")
|
|
37238
37404
|
def VER_15_11(cls) -> "PostgresEngineVersion":
|
|
37239
|
-
'''Version "15.11".
|
|
37405
|
+
'''(deprecated) Version "15.11".
|
|
37406
|
+
|
|
37407
|
+
:deprecated: PostgreSQL 15.11 is no longer supported by Amazon RDS
|
|
37408
|
+
|
|
37409
|
+
:stability: deprecated
|
|
37410
|
+
'''
|
|
37240
37411
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_15_11"))
|
|
37241
37412
|
|
|
37242
37413
|
@jsii.python.classproperty
|
|
@@ -37321,7 +37492,12 @@ class PostgresEngineVersion(
|
|
|
37321
37492
|
@jsii.python.classproperty
|
|
37322
37493
|
@jsii.member(jsii_name="VER_15_9")
|
|
37323
37494
|
def VER_15_9(cls) -> "PostgresEngineVersion":
|
|
37324
|
-
'''Version "15.9".
|
|
37495
|
+
'''(deprecated) Version "15.9".
|
|
37496
|
+
|
|
37497
|
+
:deprecated: PostgreSQL 15.9 is no longer supported by Amazon RDS
|
|
37498
|
+
|
|
37499
|
+
:stability: deprecated
|
|
37500
|
+
'''
|
|
37325
37501
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_15_9"))
|
|
37326
37502
|
|
|
37327
37503
|
@jsii.python.classproperty
|
|
@@ -37367,7 +37543,12 @@ class PostgresEngineVersion(
|
|
|
37367
37543
|
@jsii.python.classproperty
|
|
37368
37544
|
@jsii.member(jsii_name="VER_16_5")
|
|
37369
37545
|
def VER_16_5(cls) -> "PostgresEngineVersion":
|
|
37370
|
-
'''Version "16.5".
|
|
37546
|
+
'''(deprecated) Version "16.5".
|
|
37547
|
+
|
|
37548
|
+
:deprecated: PostgreSQL 16.5 is no longer supported by Amazon RDS
|
|
37549
|
+
|
|
37550
|
+
:stability: deprecated
|
|
37551
|
+
'''
|
|
37371
37552
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_16_5"))
|
|
37372
37553
|
|
|
37373
37554
|
@jsii.python.classproperty
|
|
@@ -37379,7 +37560,12 @@ class PostgresEngineVersion(
|
|
|
37379
37560
|
@jsii.python.classproperty
|
|
37380
37561
|
@jsii.member(jsii_name="VER_16_7")
|
|
37381
37562
|
def VER_16_7(cls) -> "PostgresEngineVersion":
|
|
37382
|
-
'''Version "16.7".
|
|
37563
|
+
'''(deprecated) Version "16.7".
|
|
37564
|
+
|
|
37565
|
+
:deprecated: PostgreSQL 16.7 is no longer supported by Amazon RDS
|
|
37566
|
+
|
|
37567
|
+
:stability: deprecated
|
|
37568
|
+
'''
|
|
37383
37569
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_16_7"))
|
|
37384
37570
|
|
|
37385
37571
|
@jsii.python.classproperty
|
|
@@ -37403,7 +37589,12 @@ class PostgresEngineVersion(
|
|
|
37403
37589
|
@jsii.python.classproperty
|
|
37404
37590
|
@jsii.member(jsii_name="VER_17_1")
|
|
37405
37591
|
def VER_17_1(cls) -> "PostgresEngineVersion":
|
|
37406
|
-
'''Version "17.1".
|
|
37592
|
+
'''(deprecated) Version "17.1".
|
|
37593
|
+
|
|
37594
|
+
:deprecated: PostgreSQL 17.1 is no longer supported by Amazon RDS
|
|
37595
|
+
|
|
37596
|
+
:stability: deprecated
|
|
37597
|
+
'''
|
|
37407
37598
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_17_1"))
|
|
37408
37599
|
|
|
37409
37600
|
@jsii.python.classproperty
|
|
@@ -37415,7 +37606,12 @@ class PostgresEngineVersion(
|
|
|
37415
37606
|
@jsii.python.classproperty
|
|
37416
37607
|
@jsii.member(jsii_name="VER_17_3")
|
|
37417
37608
|
def VER_17_3(cls) -> "PostgresEngineVersion":
|
|
37418
|
-
'''Version "17.3".
|
|
37609
|
+
'''(deprecated) Version "17.3".
|
|
37610
|
+
|
|
37611
|
+
:deprecated: PostgreSQL 17.3 is no longer supported by Amazon RDS
|
|
37612
|
+
|
|
37613
|
+
:stability: deprecated
|
|
37614
|
+
'''
|
|
37419
37615
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_17_3"))
|
|
37420
37616
|
|
|
37421
37617
|
@jsii.python.classproperty
|
|
@@ -49147,6 +49343,7 @@ def _typecheckingstub__1eb14b9dcc306eabcc2963c7b6ef9b87bf8d616bb5691dbc6656242be
|
|
|
49147
49343
|
db_instance_parameter_group_name: typing.Optional[builtins.str] = None,
|
|
49148
49344
|
db_subnet_group_name: typing.Optional[builtins.str] = None,
|
|
49149
49345
|
db_system_id: typing.Optional[builtins.str] = None,
|
|
49346
|
+
delete_automated_backups: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
49150
49347
|
deletion_protection: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
49151
49348
|
domain: typing.Optional[builtins.str] = None,
|
|
49152
49349
|
domain_iam_role_name: typing.Optional[builtins.str] = None,
|
|
@@ -49301,6 +49498,12 @@ def _typecheckingstub__41f2773ed2c93659b8bf06ee2830b9675bbe867fb30ad2e89f77f72a4
|
|
|
49301
49498
|
"""Type checking stubs"""
|
|
49302
49499
|
pass
|
|
49303
49500
|
|
|
49501
|
+
def _typecheckingstub__9e8a2ba2ab46cead449dbe97283d45de5dd8c86ea7d68521f70c997f8eb39235(
|
|
49502
|
+
value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
|
|
49503
|
+
) -> None:
|
|
49504
|
+
"""Type checking stubs"""
|
|
49505
|
+
pass
|
|
49506
|
+
|
|
49304
49507
|
def _typecheckingstub__a96b132db813926d0ef31c223b961804a782255c93a76d8ab91de8c2ca7b0f35(
|
|
49305
49508
|
value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
|
|
49306
49509
|
) -> None:
|
|
@@ -49689,6 +49892,7 @@ def _typecheckingstub__aaf089104646bb0ea95e48cd2107d642585c3eb3785a21112fc029b15
|
|
|
49689
49892
|
db_instance_parameter_group_name: typing.Optional[builtins.str] = None,
|
|
49690
49893
|
db_subnet_group_name: typing.Optional[builtins.str] = None,
|
|
49691
49894
|
db_system_id: typing.Optional[builtins.str] = None,
|
|
49895
|
+
delete_automated_backups: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
49692
49896
|
deletion_protection: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
49693
49897
|
domain: typing.Optional[builtins.str] = None,
|
|
49694
49898
|
domain_iam_role_name: typing.Optional[builtins.str] = None,
|