aws-cdk-lib 2.182.0__py3-none-any.whl → 2.184.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 +459 -33
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.182.0.jsii.tgz → aws-cdk-lib@2.184.0.jsii.tgz} +0 -0
- aws_cdk/aws_batch/__init__.py +15 -9
- aws_cdk/aws_bedrock/__init__.py +5804 -2325
- aws_cdk/aws_ce/__init__.py +141 -3
- aws_cdk/aws_cloudformation/__init__.py +26 -33
- aws_cdk/aws_cloudfront/experimental/__init__.py +2 -2
- aws_cdk/aws_cloudtrail/__init__.py +4 -4
- aws_cdk/aws_codebuild/__init__.py +4 -10
- aws_cdk/aws_cognito/__init__.py +3 -3
- aws_cdk/aws_dms/__init__.py +350 -0
- aws_cdk/aws_ec2/__init__.py +63 -5
- aws_cdk/aws_elasticache/__init__.py +3 -3
- aws_cdk/aws_emr/__init__.py +9 -3
- aws_cdk/aws_events/__init__.py +3 -1
- aws_cdk/aws_events_targets/__init__.py +31 -7
- aws_cdk/aws_gameliftstreams/__init__.py +1205 -0
- aws_cdk/aws_iam/__init__.py +290 -35
- aws_cdk/aws_inspector/__init__.py +13 -10
- aws_cdk/aws_iot/__init__.py +616 -22
- aws_cdk/aws_iotfleetwise/__init__.py +72 -10
- aws_cdk/aws_iotsitewise/__init__.py +12 -8
- aws_cdk/aws_kafkaconnect/__init__.py +4 -2
- aws_cdk/aws_kinesisfirehose/__init__.py +45 -51
- aws_cdk/aws_lambda/__init__.py +27 -18
- aws_cdk/aws_lambda_event_sources/__init__.py +14 -14
- aws_cdk/aws_logs/__init__.py +133 -0
- aws_cdk/aws_medialive/__init__.py +86 -86
- aws_cdk/aws_msk/__init__.py +236 -128
- aws_cdk/aws_neptunegraph/__init__.py +3 -3
- aws_cdk/aws_opensearchserverless/__init__.py +1031 -0
- aws_cdk/aws_quicksight/__init__.py +6511 -20331
- aws_cdk/aws_rds/__init__.py +264 -32
- aws_cdk/aws_redshift/__init__.py +8 -8
- aws_cdk/aws_sagemaker/__init__.py +12 -5
- aws_cdk/aws_securitylake/__init__.py +3 -0
- aws_cdk/aws_synthetics/__init__.py +2 -0
- aws_cdk/aws_transfer/__init__.py +241 -40
- aws_cdk/aws_wafv2/__init__.py +118 -30
- aws_cdk/aws_xray/__init__.py +195 -0
- aws_cdk/cloud_assembly_schema/__init__.py +2 -2
- aws_cdk/custom_resources/__init__.py +65 -8
- {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.184.0.dist-info}/METADATA +5 -6
- {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.184.0.dist-info}/RECORD +49 -48
- {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.184.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.184.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.184.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.184.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_rds/__init__.py
CHANGED
|
@@ -68,6 +68,22 @@ By default, the master password will be generated and stored in AWS Secrets Mana
|
|
|
68
68
|
Your cluster will be empty by default. To add a default database upon construction, specify the
|
|
69
69
|
`defaultDatabaseName` attribute.
|
|
70
70
|
|
|
71
|
+
When you create a DB instance in your cluster, Aurora automatically chooses an appropriate AZ for that instance if you don't specify an AZ.
|
|
72
|
+
You can place each instance in fixed availability zone by specifying `availabilityZone` property.
|
|
73
|
+
For details, see [Regions and Availability Zones](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
74
|
+
|
|
75
|
+
```python
|
|
76
|
+
# vpc: ec2.Vpc
|
|
77
|
+
|
|
78
|
+
cluster = rds.DatabaseCluster(self, "Database",
|
|
79
|
+
engine=rds.DatabaseClusterEngine.aurora_mysql(version=rds.AuroraMysqlEngineVersion.VER_3_02_1),
|
|
80
|
+
writer=rds.ClusterInstance.provisioned("writer",
|
|
81
|
+
availability_zone="us-east-1a"
|
|
82
|
+
),
|
|
83
|
+
vpc=vpc
|
|
84
|
+
)
|
|
85
|
+
```
|
|
86
|
+
|
|
71
87
|
To use dual-stack mode, specify `NetworkType.DUAL` on the `networkType` property:
|
|
72
88
|
|
|
73
89
|
```python
|
|
@@ -532,6 +548,19 @@ instance = rds.DatabaseInstance(self, "Instance",
|
|
|
532
548
|
)
|
|
533
549
|
```
|
|
534
550
|
|
|
551
|
+
When you create a DB instance, you can choose an Availability Zone or have Amazon RDS choose one for you randomly.
|
|
552
|
+
For details, see [Regions, Availability Zones, and Local Zones](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
553
|
+
|
|
554
|
+
```python
|
|
555
|
+
# vpc: ec2.Vpc
|
|
556
|
+
|
|
557
|
+
instance = rds.DatabaseInstance(self, "Instance",
|
|
558
|
+
engine=rds.DatabaseInstanceEngine.postgres(version=rds.PostgresEngineVersion.VER_16_3),
|
|
559
|
+
vpc=vpc,
|
|
560
|
+
availability_zone="us-east-1a"
|
|
561
|
+
)
|
|
562
|
+
```
|
|
563
|
+
|
|
535
564
|
To use dual-stack mode, specify `NetworkType.DUAL` on the `networkType` property:
|
|
536
565
|
|
|
537
566
|
```python
|
|
@@ -2259,11 +2288,14 @@ class AuroraMysqlClusterEngineProps:
|
|
|
2259
2288
|
|
|
2260
2289
|
cluster = rds.DatabaseCluster(self, "Database",
|
|
2261
2290
|
engine=rds.DatabaseClusterEngine.aurora_mysql(version=rds.AuroraMysqlEngineVersion.VER_3_01_0),
|
|
2262
|
-
writer=rds.ClusterInstance.provisioned("
|
|
2263
|
-
|
|
2291
|
+
writer=rds.ClusterInstance.provisioned("writer",
|
|
2292
|
+
ca_certificate=rds.CaCertificate.RDS_CA_RSA2048_G1
|
|
2264
2293
|
),
|
|
2265
|
-
readers=[
|
|
2266
|
-
|
|
2294
|
+
readers=[
|
|
2295
|
+
rds.ClusterInstance.serverless_v2("reader",
|
|
2296
|
+
ca_certificate=rds.CaCertificate.of("custom-ca")
|
|
2297
|
+
)
|
|
2298
|
+
],
|
|
2267
2299
|
vpc=vpc
|
|
2268
2300
|
)
|
|
2269
2301
|
'''
|
|
@@ -8970,7 +9002,7 @@ class CfnDBInstance(
|
|
|
8970
9002
|
:param db_parameter_group_name: The name of an existing DB parameter group or a reference to an `AWS::RDS::DBParameterGroup <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html>`_ resource created in the template. To list all of the available DB parameter group names, use the following command: ``aws rds describe-db-parameter-groups --query "DBParameterGroups[].DBParameterGroupName" --output text`` .. epigraph:: If any of the data members of the referenced parameter group are changed during an update, the DB instance might need to be restarted, which causes some interruption. If the parameter group contains static parameters, whether they were changed or not, an update triggers a reboot. If you don't specify a value for ``DBParameterGroupName`` property, the default DB parameter group for the specified engine and engine version is used.
|
|
8971
9003
|
:param db_security_groups: A list of the DB security groups to assign to the DB instance. The list can include both the name of existing DB security groups or references to AWS::RDS::DBSecurityGroup resources created in the template. If you set DBSecurityGroups, you must not set VPCSecurityGroups, and vice versa. Also, note that the DBSecurityGroups property exists only for backwards compatibility with older regions and is no longer recommended for providing security information to an RDS DB instance. Instead, use VPCSecurityGroups. .. epigraph:: If you specify this property, AWS CloudFormation sends only the following properties (if specified) to Amazon RDS during create operations: - ``AllocatedStorage`` - ``AutoMinorVersionUpgrade`` - ``AvailabilityZone`` - ``BackupRetentionPeriod`` - ``CharacterSetName`` - ``DBInstanceClass`` - ``DBName`` - ``DBParameterGroupName`` - ``DBSecurityGroups`` - ``DBSubnetGroupName`` - ``Engine`` - ``EngineVersion`` - ``Iops`` - ``LicenseModel`` - ``MasterUsername`` - ``MasterUserPassword`` - ``MultiAZ`` - ``OptionGroupName`` - ``PreferredBackupWindow`` - ``PreferredMaintenanceWindow`` All other properties are ignored. Specify a virtual private cloud (VPC) security group if you want to submit other properties, such as ``StorageType`` , ``StorageEncrypted`` , or ``KmsKeyId`` . If you're already using the ``DBSecurityGroups`` property, you can't use these other properties by updating your DB instance to use a VPC security group. You must recreate the DB instance.
|
|
8972
9004
|
:param db_snapshot_identifier: The name or Amazon Resource Name (ARN) of the DB snapshot that's used to restore the DB instance. If you're restoring from a shared manual DB snapshot, you must specify the ARN of the snapshot. By specifying this property, you can create a DB instance from the specified DB snapshot. If the ``DBSnapshotIdentifier`` property is an empty string or the ``AWS::RDS::DBInstance`` declaration has no ``DBSnapshotIdentifier`` property, AWS CloudFormation creates a new database. If the property contains a value (other than an empty string), AWS CloudFormation creates a database from the specified snapshot. If a snapshot with the specified name doesn't exist, AWS CloudFormation can't create the database and it rolls back the stack. Some DB instance properties aren't valid when you restore from a snapshot, such as the ``MasterUsername`` and ``MasterUserPassword`` properties, and the point-in-time recovery properties ``RestoreTime`` and ``UseLatestRestorableTime`` . For information about the properties that you can specify, see the ```RestoreDBInstanceFromDBSnapshot`` <https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_RestoreDBInstanceFromDBSnapshot.html>`_ action in the *Amazon RDS API Reference* . After you restore a DB instance with a ``DBSnapshotIdentifier`` property, you must specify the same ``DBSnapshotIdentifier`` property for any future updates to the DB instance. When you specify this property for an update, the DB instance is not restored from the DB snapshot again, and the data in the database is not changed. However, if you don't specify the ``DBSnapshotIdentifier`` property, an empty DB instance is created, and the original DB instance is deleted. If you specify a property that is different from the previous snapshot restore property, a new DB instance is restored from the specified ``DBSnapshotIdentifier`` property, and the original DB instance is deleted. If you specify the ``DBSnapshotIdentifier`` property to restore a DB instance (as opposed to specifying it for DB instance updates), then don't specify the following properties: - ``CharacterSetName`` - ``DBClusterIdentifier`` - ``DBName`` - ``KmsKeyId`` - ``MasterUsername`` - ``MasterUserPassword`` - ``PromotionTier`` - ``SourceDBInstanceIdentifier`` - ``SourceRegion`` - ``StorageEncrypted`` (for an unencrypted snapshot) - ``Timezone`` *Amazon Aurora* Not applicable. Snapshot restore is managed by the DB cluster.
|
|
8973
|
-
:param db_subnet_group_name: A DB subnet group to associate with the DB instance. If you update this value, the new subnet group must be a subnet group in a new VPC. If
|
|
9005
|
+
:param db_subnet_group_name: A DB subnet group to associate with the DB instance. If you update this value, the new subnet group must be a subnet group in a new VPC. If you don't specify a DB subnet group, RDS uses the default DB subnet group if one exists. If a default DB subnet group does not exist, and you don't specify a ``DBSubnetGroupName`` , the DB instance fails to launch. For more information about using Amazon RDS in a VPC, see `Amazon VPC and Amazon RDS <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.html>`_ in the *Amazon RDS User Guide* . This setting doesn't apply to Amazon Aurora DB instances. The DB subnet group is managed by the DB cluster. If specified, the setting must match the DB cluster setting.
|
|
8974
9006
|
:param db_system_id: The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database files. In this context, the term "Oracle database instance" refers exclusively to the system global area (SGA) and Oracle background processes. If you don't specify a SID, the value defaults to ``RDSCDB`` . The Oracle SID is also the name of your CDB.
|
|
8975
9007
|
:param dedicated_log_volume: Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
|
|
8976
9008
|
:param delete_automated_backups: A value that indicates whether to remove automated backups immediately after the DB instance is deleted. This parameter isn't case-sensitive. The default is to remove automated backups immediately after the DB instance is deleted. *Amazon Aurora* Not applicable. When you delete a DB cluster, all automated backups for that DB cluster are deleted and can't be recovered. Manual DB cluster snapshots of the DB cluster are not deleted.
|
|
@@ -11042,7 +11074,7 @@ class CfnDBInstanceProps:
|
|
|
11042
11074
|
:param db_parameter_group_name: The name of an existing DB parameter group or a reference to an `AWS::RDS::DBParameterGroup <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html>`_ resource created in the template. To list all of the available DB parameter group names, use the following command: ``aws rds describe-db-parameter-groups --query "DBParameterGroups[].DBParameterGroupName" --output text`` .. epigraph:: If any of the data members of the referenced parameter group are changed during an update, the DB instance might need to be restarted, which causes some interruption. If the parameter group contains static parameters, whether they were changed or not, an update triggers a reboot. If you don't specify a value for ``DBParameterGroupName`` property, the default DB parameter group for the specified engine and engine version is used.
|
|
11043
11075
|
:param db_security_groups: A list of the DB security groups to assign to the DB instance. The list can include both the name of existing DB security groups or references to AWS::RDS::DBSecurityGroup resources created in the template. If you set DBSecurityGroups, you must not set VPCSecurityGroups, and vice versa. Also, note that the DBSecurityGroups property exists only for backwards compatibility with older regions and is no longer recommended for providing security information to an RDS DB instance. Instead, use VPCSecurityGroups. .. epigraph:: If you specify this property, AWS CloudFormation sends only the following properties (if specified) to Amazon RDS during create operations: - ``AllocatedStorage`` - ``AutoMinorVersionUpgrade`` - ``AvailabilityZone`` - ``BackupRetentionPeriod`` - ``CharacterSetName`` - ``DBInstanceClass`` - ``DBName`` - ``DBParameterGroupName`` - ``DBSecurityGroups`` - ``DBSubnetGroupName`` - ``Engine`` - ``EngineVersion`` - ``Iops`` - ``LicenseModel`` - ``MasterUsername`` - ``MasterUserPassword`` - ``MultiAZ`` - ``OptionGroupName`` - ``PreferredBackupWindow`` - ``PreferredMaintenanceWindow`` All other properties are ignored. Specify a virtual private cloud (VPC) security group if you want to submit other properties, such as ``StorageType`` , ``StorageEncrypted`` , or ``KmsKeyId`` . If you're already using the ``DBSecurityGroups`` property, you can't use these other properties by updating your DB instance to use a VPC security group. You must recreate the DB instance.
|
|
11044
11076
|
:param db_snapshot_identifier: The name or Amazon Resource Name (ARN) of the DB snapshot that's used to restore the DB instance. If you're restoring from a shared manual DB snapshot, you must specify the ARN of the snapshot. By specifying this property, you can create a DB instance from the specified DB snapshot. If the ``DBSnapshotIdentifier`` property is an empty string or the ``AWS::RDS::DBInstance`` declaration has no ``DBSnapshotIdentifier`` property, AWS CloudFormation creates a new database. If the property contains a value (other than an empty string), AWS CloudFormation creates a database from the specified snapshot. If a snapshot with the specified name doesn't exist, AWS CloudFormation can't create the database and it rolls back the stack. Some DB instance properties aren't valid when you restore from a snapshot, such as the ``MasterUsername`` and ``MasterUserPassword`` properties, and the point-in-time recovery properties ``RestoreTime`` and ``UseLatestRestorableTime`` . For information about the properties that you can specify, see the ```RestoreDBInstanceFromDBSnapshot`` <https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_RestoreDBInstanceFromDBSnapshot.html>`_ action in the *Amazon RDS API Reference* . After you restore a DB instance with a ``DBSnapshotIdentifier`` property, you must specify the same ``DBSnapshotIdentifier`` property for any future updates to the DB instance. When you specify this property for an update, the DB instance is not restored from the DB snapshot again, and the data in the database is not changed. However, if you don't specify the ``DBSnapshotIdentifier`` property, an empty DB instance is created, and the original DB instance is deleted. If you specify a property that is different from the previous snapshot restore property, a new DB instance is restored from the specified ``DBSnapshotIdentifier`` property, and the original DB instance is deleted. If you specify the ``DBSnapshotIdentifier`` property to restore a DB instance (as opposed to specifying it for DB instance updates), then don't specify the following properties: - ``CharacterSetName`` - ``DBClusterIdentifier`` - ``DBName`` - ``KmsKeyId`` - ``MasterUsername`` - ``MasterUserPassword`` - ``PromotionTier`` - ``SourceDBInstanceIdentifier`` - ``SourceRegion`` - ``StorageEncrypted`` (for an unencrypted snapshot) - ``Timezone`` *Amazon Aurora* Not applicable. Snapshot restore is managed by the DB cluster.
|
|
11045
|
-
:param db_subnet_group_name: A DB subnet group to associate with the DB instance. If you update this value, the new subnet group must be a subnet group in a new VPC. If
|
|
11077
|
+
:param db_subnet_group_name: A DB subnet group to associate with the DB instance. If you update this value, the new subnet group must be a subnet group in a new VPC. If you don't specify a DB subnet group, RDS uses the default DB subnet group if one exists. If a default DB subnet group does not exist, and you don't specify a ``DBSubnetGroupName`` , the DB instance fails to launch. For more information about using Amazon RDS in a VPC, see `Amazon VPC and Amazon RDS <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.html>`_ in the *Amazon RDS User Guide* . This setting doesn't apply to Amazon Aurora DB instances. The DB subnet group is managed by the DB cluster. If specified, the setting must match the DB cluster setting.
|
|
11046
11078
|
:param db_system_id: The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database files. In this context, the term "Oracle database instance" refers exclusively to the system global area (SGA) and Oracle background processes. If you don't specify a SID, the value defaults to ``RDSCDB`` . The Oracle SID is also the name of your CDB.
|
|
11047
11079
|
:param dedicated_log_volume: Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
|
|
11048
11080
|
:param delete_automated_backups: A value that indicates whether to remove automated backups immediately after the DB instance is deleted. This parameter isn't case-sensitive. The default is to remove automated backups immediately after the DB instance is deleted. *Amazon Aurora* Not applicable. When you delete a DB cluster, all automated backups for that DB cluster are deleted and can't be recovered. Manual DB cluster snapshots of the DB cluster are not deleted.
|
|
@@ -11963,7 +11995,7 @@ class CfnDBInstanceProps:
|
|
|
11963
11995
|
|
|
11964
11996
|
If you update this value, the new subnet group must be a subnet group in a new VPC.
|
|
11965
11997
|
|
|
11966
|
-
If
|
|
11998
|
+
If you don't specify a DB subnet group, RDS uses the default DB subnet group if one exists. If a default DB subnet group does not exist, and you don't specify a ``DBSubnetGroupName`` , the DB instance fails to launch.
|
|
11967
11999
|
|
|
11968
12000
|
For more information about using Amazon RDS in a VPC, see `Amazon VPC and Amazon RDS <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.html>`_ in the *Amazon RDS User Guide* .
|
|
11969
12001
|
|
|
@@ -14861,7 +14893,7 @@ class CfnDBProxyTargetGroup(
|
|
|
14861
14893
|
'''Specifies the settings that control the size and behavior of the connection pool associated with a ``DBProxyTargetGroup`` .
|
|
14862
14894
|
|
|
14863
14895
|
:param connection_borrow_timeout: The number of seconds for a proxy to wait for a connection to become available in the connection pool. This setting only applies when the proxy has opened its maximum number of connections and all connections are busy with client sessions. Default: ``120`` Constraints: - Must be between 0 and 3600.
|
|
14864
|
-
:param init_query:
|
|
14896
|
+
:param init_query: Add an initialization query, or modify the current one. You can specify one or more SQL statements for the proxy to run when opening each new database connection. The setting is typically used with ``SET`` statements to make sure that each connection has identical settings. Make sure that the query you add is valid. To include multiple variables in a single ``SET`` statement, use comma separators. For example: ``SET variable1=value1, variable2=value2`` For multiple statements, use semicolons as the separator. Default: no initialization query
|
|
14865
14897
|
:param max_connections_percent: The maximum size of the connection pool for each target in a target group. The value is expressed as a percentage of the ``max_connections`` setting for the RDS DB instance or Aurora DB cluster used by the target group. If you specify ``MaxIdleConnectionsPercent`` , then you must also include a value for this parameter. Default: ``10`` for RDS for Microsoft SQL Server, and ``100`` for all other engines Constraints: - Must be between 1 and 100.
|
|
14866
14898
|
:param max_idle_connections_percent: A value that controls how actively the proxy closes idle database connections in the connection pool. The value is expressed as a percentage of the ``max_connections`` setting for the RDS DB instance or Aurora DB cluster used by the target group. With a high value, the proxy leaves a high percentage of idle database connections open. A low value causes the proxy to close more idle connections and return them to the database. If you specify this parameter, then you must also include a value for ``MaxConnectionsPercent`` . Default: The default value is half of the value of ``MaxConnectionsPercent`` . For example, if ``MaxConnectionsPercent`` is 80, then the default value of ``MaxIdleConnectionsPercent`` is 40. If the value of ``MaxConnectionsPercent`` isn't specified, then for SQL Server, ``MaxIdleConnectionsPercent`` is ``5`` , and for all other engines, the default is ``50`` . Constraints: - Must be between 0 and the value of ``MaxConnectionsPercent`` .
|
|
14867
14899
|
:param session_pinning_filters: Each item in the list represents a class of SQL operations that normally cause all later statements in a session using a proxy to be pinned to the same underlying database connection. Including an item in the list exempts that class of SQL operations from the pinning behavior. Default: no session pinning filters
|
|
@@ -14921,9 +14953,13 @@ class CfnDBProxyTargetGroup(
|
|
|
14921
14953
|
|
|
14922
14954
|
@builtins.property
|
|
14923
14955
|
def init_query(self) -> typing.Optional[builtins.str]:
|
|
14924
|
-
'''
|
|
14956
|
+
'''Add an initialization query, or modify the current one.
|
|
14957
|
+
|
|
14958
|
+
You can specify one or more SQL statements for the proxy to run when opening each new database connection. The setting is typically used with ``SET`` statements to make sure that each connection has identical settings. Make sure that the query you add is valid. To include multiple variables in a single ``SET`` statement, use comma separators.
|
|
14959
|
+
|
|
14960
|
+
For example: ``SET variable1=value1, variable2=value2``
|
|
14925
14961
|
|
|
14926
|
-
|
|
14962
|
+
For multiple statements, use semicolons as the separator.
|
|
14927
14963
|
|
|
14928
14964
|
Default: no initialization query
|
|
14929
14965
|
|
|
@@ -18988,6 +19024,7 @@ class ClusterInstanceBindOptions:
|
|
|
18988
19024
|
"allow_major_version_upgrade": "allowMajorVersionUpgrade",
|
|
18989
19025
|
"apply_immediately": "applyImmediately",
|
|
18990
19026
|
"auto_minor_version_upgrade": "autoMinorVersionUpgrade",
|
|
19027
|
+
"availability_zone": "availabilityZone",
|
|
18991
19028
|
"ca_certificate": "caCertificate",
|
|
18992
19029
|
"enable_performance_insights": "enablePerformanceInsights",
|
|
18993
19030
|
"instance_identifier": "instanceIdentifier",
|
|
@@ -19007,6 +19044,7 @@ class ClusterInstanceOptions:
|
|
|
19007
19044
|
allow_major_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
19008
19045
|
apply_immediately: typing.Optional[builtins.bool] = None,
|
|
19009
19046
|
auto_minor_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
19047
|
+
availability_zone: typing.Optional[builtins.str] = None,
|
|
19010
19048
|
ca_certificate: typing.Optional[CaCertificate] = None,
|
|
19011
19049
|
enable_performance_insights: typing.Optional[builtins.bool] = None,
|
|
19012
19050
|
instance_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -19023,6 +19061,7 @@ class ClusterInstanceOptions:
|
|
|
19023
19061
|
:param allow_major_version_upgrade: Whether to allow upgrade of major version for the DB instance. Default: - false
|
|
19024
19062
|
:param apply_immediately: Specifies whether changes to the DB instance and any pending modifications are applied immediately, regardless of the ``preferredMaintenanceWindow`` setting. If set to ``false``, changes are applied during the next maintenance window. Until RDS applies the changes, the DB instance remains in a drift state. As a result, the configuration doesn't fully reflect the requested modifications and temporarily diverges from the intended state. This property also determines whether the DB instance reboots when a static parameter is modified in the associated DB parameter group. Default: - Changes will be applied immediately
|
|
19025
19063
|
:param auto_minor_version_upgrade: Whether to enable automatic upgrade of minor version for the DB instance. Default: - true
|
|
19064
|
+
:param availability_zone: The Availability Zone (AZ) where the database will be created. For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones. Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one. Default: - A random, system-chosen Availability Zone in the endpointʼs AWS Region.
|
|
19026
19065
|
:param ca_certificate: The identifier of the CA certificate for this DB cluster's instances. Specifying or updating this property triggers a reboot. For RDS DB engines: Default: - RDS will choose a certificate authority
|
|
19027
19066
|
:param enable_performance_insights: Whether to enable Performance Insights for the DB instance. Default: - false, unless ``performanceInsightRetention`` or ``performanceInsightEncryptionKey`` is set.
|
|
19028
19067
|
:param instance_identifier: The identifier for the database instance. Default: - CloudFormation generated identifier
|
|
@@ -19051,6 +19090,7 @@ class ClusterInstanceOptions:
|
|
|
19051
19090
|
allow_major_version_upgrade=False,
|
|
19052
19091
|
apply_immediately=False,
|
|
19053
19092
|
auto_minor_version_upgrade=False,
|
|
19093
|
+
availability_zone="availabilityZone",
|
|
19054
19094
|
ca_certificate=ca_certificate,
|
|
19055
19095
|
enable_performance_insights=False,
|
|
19056
19096
|
instance_identifier="instanceIdentifier",
|
|
@@ -19070,6 +19110,7 @@ class ClusterInstanceOptions:
|
|
|
19070
19110
|
check_type(argname="argument allow_major_version_upgrade", value=allow_major_version_upgrade, expected_type=type_hints["allow_major_version_upgrade"])
|
|
19071
19111
|
check_type(argname="argument apply_immediately", value=apply_immediately, expected_type=type_hints["apply_immediately"])
|
|
19072
19112
|
check_type(argname="argument auto_minor_version_upgrade", value=auto_minor_version_upgrade, expected_type=type_hints["auto_minor_version_upgrade"])
|
|
19113
|
+
check_type(argname="argument availability_zone", value=availability_zone, expected_type=type_hints["availability_zone"])
|
|
19073
19114
|
check_type(argname="argument ca_certificate", value=ca_certificate, expected_type=type_hints["ca_certificate"])
|
|
19074
19115
|
check_type(argname="argument enable_performance_insights", value=enable_performance_insights, expected_type=type_hints["enable_performance_insights"])
|
|
19075
19116
|
check_type(argname="argument instance_identifier", value=instance_identifier, expected_type=type_hints["instance_identifier"])
|
|
@@ -19087,6 +19128,8 @@ class ClusterInstanceOptions:
|
|
|
19087
19128
|
self._values["apply_immediately"] = apply_immediately
|
|
19088
19129
|
if auto_minor_version_upgrade is not None:
|
|
19089
19130
|
self._values["auto_minor_version_upgrade"] = auto_minor_version_upgrade
|
|
19131
|
+
if availability_zone is not None:
|
|
19132
|
+
self._values["availability_zone"] = availability_zone
|
|
19090
19133
|
if ca_certificate is not None:
|
|
19091
19134
|
self._values["ca_certificate"] = ca_certificate
|
|
19092
19135
|
if enable_performance_insights is not None:
|
|
@@ -19144,6 +19187,20 @@ class ClusterInstanceOptions:
|
|
|
19144
19187
|
result = self._values.get("auto_minor_version_upgrade")
|
|
19145
19188
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
19146
19189
|
|
|
19190
|
+
@builtins.property
|
|
19191
|
+
def availability_zone(self) -> typing.Optional[builtins.str]:
|
|
19192
|
+
'''The Availability Zone (AZ) where the database will be created.
|
|
19193
|
+
|
|
19194
|
+
For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones.
|
|
19195
|
+
Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one.
|
|
19196
|
+
|
|
19197
|
+
:default: - A random, system-chosen Availability Zone in the endpointʼs AWS Region.
|
|
19198
|
+
|
|
19199
|
+
:see: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html
|
|
19200
|
+
'''
|
|
19201
|
+
result = self._values.get("availability_zone")
|
|
19202
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
19203
|
+
|
|
19147
19204
|
@builtins.property
|
|
19148
19205
|
def ca_certificate(self) -> typing.Optional[CaCertificate]:
|
|
19149
19206
|
'''The identifier of the CA certificate for this DB cluster's instances.
|
|
@@ -19321,6 +19378,7 @@ class ClusterInstanceOptions:
|
|
|
19321
19378
|
"allow_major_version_upgrade": "allowMajorVersionUpgrade",
|
|
19322
19379
|
"apply_immediately": "applyImmediately",
|
|
19323
19380
|
"auto_minor_version_upgrade": "autoMinorVersionUpgrade",
|
|
19381
|
+
"availability_zone": "availabilityZone",
|
|
19324
19382
|
"ca_certificate": "caCertificate",
|
|
19325
19383
|
"enable_performance_insights": "enablePerformanceInsights",
|
|
19326
19384
|
"instance_identifier": "instanceIdentifier",
|
|
@@ -19342,6 +19400,7 @@ class ClusterInstanceProps(ClusterInstanceOptions):
|
|
|
19342
19400
|
allow_major_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
19343
19401
|
apply_immediately: typing.Optional[builtins.bool] = None,
|
|
19344
19402
|
auto_minor_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
19403
|
+
availability_zone: typing.Optional[builtins.str] = None,
|
|
19345
19404
|
ca_certificate: typing.Optional[CaCertificate] = None,
|
|
19346
19405
|
enable_performance_insights: typing.Optional[builtins.bool] = None,
|
|
19347
19406
|
instance_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -19360,6 +19419,7 @@ class ClusterInstanceProps(ClusterInstanceOptions):
|
|
|
19360
19419
|
:param allow_major_version_upgrade: Whether to allow upgrade of major version for the DB instance. Default: - false
|
|
19361
19420
|
:param apply_immediately: Specifies whether changes to the DB instance and any pending modifications are applied immediately, regardless of the ``preferredMaintenanceWindow`` setting. If set to ``false``, changes are applied during the next maintenance window. Until RDS applies the changes, the DB instance remains in a drift state. As a result, the configuration doesn't fully reflect the requested modifications and temporarily diverges from the intended state. This property also determines whether the DB instance reboots when a static parameter is modified in the associated DB parameter group. Default: - Changes will be applied immediately
|
|
19362
19421
|
:param auto_minor_version_upgrade: Whether to enable automatic upgrade of minor version for the DB instance. Default: - true
|
|
19422
|
+
:param availability_zone: The Availability Zone (AZ) where the database will be created. For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones. Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one. Default: - A random, system-chosen Availability Zone in the endpointʼs AWS Region.
|
|
19363
19423
|
:param ca_certificate: The identifier of the CA certificate for this DB cluster's instances. Specifying or updating this property triggers a reboot. For RDS DB engines: Default: - RDS will choose a certificate authority
|
|
19364
19424
|
:param enable_performance_insights: Whether to enable Performance Insights for the DB instance. Default: - false, unless ``performanceInsightRetention`` or ``performanceInsightEncryptionKey`` is set.
|
|
19365
19425
|
:param instance_identifier: The identifier for the database instance. Default: - CloudFormation generated identifier
|
|
@@ -19394,6 +19454,7 @@ class ClusterInstanceProps(ClusterInstanceOptions):
|
|
|
19394
19454
|
allow_major_version_upgrade=False,
|
|
19395
19455
|
apply_immediately=False,
|
|
19396
19456
|
auto_minor_version_upgrade=False,
|
|
19457
|
+
availability_zone="availabilityZone",
|
|
19397
19458
|
ca_certificate=ca_certificate,
|
|
19398
19459
|
enable_performance_insights=False,
|
|
19399
19460
|
instance_identifier="instanceIdentifier",
|
|
@@ -19414,6 +19475,7 @@ class ClusterInstanceProps(ClusterInstanceOptions):
|
|
|
19414
19475
|
check_type(argname="argument allow_major_version_upgrade", value=allow_major_version_upgrade, expected_type=type_hints["allow_major_version_upgrade"])
|
|
19415
19476
|
check_type(argname="argument apply_immediately", value=apply_immediately, expected_type=type_hints["apply_immediately"])
|
|
19416
19477
|
check_type(argname="argument auto_minor_version_upgrade", value=auto_minor_version_upgrade, expected_type=type_hints["auto_minor_version_upgrade"])
|
|
19478
|
+
check_type(argname="argument availability_zone", value=availability_zone, expected_type=type_hints["availability_zone"])
|
|
19417
19479
|
check_type(argname="argument ca_certificate", value=ca_certificate, expected_type=type_hints["ca_certificate"])
|
|
19418
19480
|
check_type(argname="argument enable_performance_insights", value=enable_performance_insights, expected_type=type_hints["enable_performance_insights"])
|
|
19419
19481
|
check_type(argname="argument instance_identifier", value=instance_identifier, expected_type=type_hints["instance_identifier"])
|
|
@@ -19435,6 +19497,8 @@ class ClusterInstanceProps(ClusterInstanceOptions):
|
|
|
19435
19497
|
self._values["apply_immediately"] = apply_immediately
|
|
19436
19498
|
if auto_minor_version_upgrade is not None:
|
|
19437
19499
|
self._values["auto_minor_version_upgrade"] = auto_minor_version_upgrade
|
|
19500
|
+
if availability_zone is not None:
|
|
19501
|
+
self._values["availability_zone"] = availability_zone
|
|
19438
19502
|
if ca_certificate is not None:
|
|
19439
19503
|
self._values["ca_certificate"] = ca_certificate
|
|
19440
19504
|
if enable_performance_insights is not None:
|
|
@@ -19494,6 +19558,20 @@ class ClusterInstanceProps(ClusterInstanceOptions):
|
|
|
19494
19558
|
result = self._values.get("auto_minor_version_upgrade")
|
|
19495
19559
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
19496
19560
|
|
|
19561
|
+
@builtins.property
|
|
19562
|
+
def availability_zone(self) -> typing.Optional[builtins.str]:
|
|
19563
|
+
'''The Availability Zone (AZ) where the database will be created.
|
|
19564
|
+
|
|
19565
|
+
For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones.
|
|
19566
|
+
Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one.
|
|
19567
|
+
|
|
19568
|
+
:default: - A random, system-chosen Availability Zone in the endpointʼs AWS Region.
|
|
19569
|
+
|
|
19570
|
+
:see: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html
|
|
19571
|
+
'''
|
|
19572
|
+
result = self._values.get("availability_zone")
|
|
19573
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
19574
|
+
|
|
19497
19575
|
@builtins.property
|
|
19498
19576
|
def ca_certificate(self) -> typing.Optional[CaCertificate]:
|
|
19499
19577
|
'''The identifier of the CA certificate for this DB cluster's instances.
|
|
@@ -20845,20 +20923,19 @@ class DatabaseClusterEngine(
|
|
|
20845
20923
|
# vpc: ec2.Vpc
|
|
20846
20924
|
|
|
20847
20925
|
cluster = rds.DatabaseCluster(self, "Database",
|
|
20848
|
-
engine=rds.DatabaseClusterEngine.aurora_mysql(
|
|
20849
|
-
|
|
20850
|
-
writer=rds.ClusterInstance.provisioned("writer",
|
|
20851
|
-
publicly_accessible=False
|
|
20852
|
-
),
|
|
20853
|
-
readers=[
|
|
20854
|
-
rds.ClusterInstance.provisioned("reader1", promotion_tier=1),
|
|
20855
|
-
rds.ClusterInstance.serverless_v2("reader2")
|
|
20856
|
-
],
|
|
20857
|
-
vpc_subnets=ec2.SubnetSelection(
|
|
20858
|
-
subnet_type=ec2.SubnetType.PRIVATE_WITH_EGRESS
|
|
20926
|
+
engine=rds.DatabaseClusterEngine.aurora_mysql(
|
|
20927
|
+
version=rds.AuroraMysqlEngineVersion.VER_3_03_0
|
|
20859
20928
|
),
|
|
20929
|
+
writer=rds.ClusterInstance.provisioned("writer"),
|
|
20860
20930
|
vpc=vpc
|
|
20861
20931
|
)
|
|
20932
|
+
|
|
20933
|
+
proxy = rds.DatabaseProxy(self, "Proxy",
|
|
20934
|
+
proxy_target=rds.ProxyTarget.from_cluster(cluster),
|
|
20935
|
+
secrets=[cluster.secret],
|
|
20936
|
+
vpc=vpc,
|
|
20937
|
+
client_password_auth_type=rds.ClientPasswordAuthType.MYSQL_NATIVE_PASSWORD
|
|
20938
|
+
)
|
|
20862
20939
|
'''
|
|
20863
20940
|
|
|
20864
20941
|
def __init__(self) -> None:
|
|
@@ -31204,6 +31281,12 @@ class MariaDbEngineVersion(
|
|
|
31204
31281
|
'''Version "10.11.10".'''
|
|
31205
31282
|
return typing.cast("MariaDbEngineVersion", jsii.sget(cls, "VER_10_11_10"))
|
|
31206
31283
|
|
|
31284
|
+
@jsii.python.classproperty
|
|
31285
|
+
@jsii.member(jsii_name="VER_10_11_11")
|
|
31286
|
+
def VER_10_11_11(cls) -> "MariaDbEngineVersion":
|
|
31287
|
+
'''Version "10.11.11".'''
|
|
31288
|
+
return typing.cast("MariaDbEngineVersion", jsii.sget(cls, "VER_10_11_11"))
|
|
31289
|
+
|
|
31207
31290
|
@jsii.python.classproperty
|
|
31208
31291
|
@jsii.member(jsii_name="VER_10_11_4")
|
|
31209
31292
|
def VER_10_11_4(cls) -> "MariaDbEngineVersion":
|
|
@@ -31809,6 +31892,12 @@ class MariaDbEngineVersion(
|
|
|
31809
31892
|
'''Version "10.5.27".'''
|
|
31810
31893
|
return typing.cast("MariaDbEngineVersion", jsii.sget(cls, "VER_10_5_27"))
|
|
31811
31894
|
|
|
31895
|
+
@jsii.python.classproperty
|
|
31896
|
+
@jsii.member(jsii_name="VER_10_5_28")
|
|
31897
|
+
def VER_10_5_28(cls) -> "MariaDbEngineVersion":
|
|
31898
|
+
'''Version "10.5.28".'''
|
|
31899
|
+
return typing.cast("MariaDbEngineVersion", jsii.sget(cls, "VER_10_5_28"))
|
|
31900
|
+
|
|
31812
31901
|
@jsii.python.classproperty
|
|
31813
31902
|
@jsii.member(jsii_name="VER_10_5_8")
|
|
31814
31903
|
def VER_10_5_8(cls) -> "MariaDbEngineVersion":
|
|
@@ -31918,6 +32007,12 @@ class MariaDbEngineVersion(
|
|
|
31918
32007
|
'''Version "10.6.20".'''
|
|
31919
32008
|
return typing.cast("MariaDbEngineVersion", jsii.sget(cls, "VER_10_6_20"))
|
|
31920
32009
|
|
|
32010
|
+
@jsii.python.classproperty
|
|
32011
|
+
@jsii.member(jsii_name="VER_10_6_21")
|
|
32012
|
+
def VER_10_6_21(cls) -> "MariaDbEngineVersion":
|
|
32013
|
+
'''Version "10.6.21".'''
|
|
32014
|
+
return typing.cast("MariaDbEngineVersion", jsii.sget(cls, "VER_10_6_21"))
|
|
32015
|
+
|
|
31921
32016
|
@jsii.python.classproperty
|
|
31922
32017
|
@jsii.member(jsii_name="VER_10_6_5")
|
|
31923
32018
|
def VER_10_6_5(cls) -> "MariaDbEngineVersion":
|
|
@@ -31963,6 +32058,12 @@ class MariaDbEngineVersion(
|
|
|
31963
32058
|
'''Version "11.4.4".'''
|
|
31964
32059
|
return typing.cast("MariaDbEngineVersion", jsii.sget(cls, "VER_11_4_4"))
|
|
31965
32060
|
|
|
32061
|
+
@jsii.python.classproperty
|
|
32062
|
+
@jsii.member(jsii_name="VER_11_4_5")
|
|
32063
|
+
def VER_11_4_5(cls) -> "MariaDbEngineVersion":
|
|
32064
|
+
'''Version "11.4.5".'''
|
|
32065
|
+
return typing.cast("MariaDbEngineVersion", jsii.sget(cls, "VER_11_4_5"))
|
|
32066
|
+
|
|
31966
32067
|
@builtins.property
|
|
31967
32068
|
@jsii.member(jsii_name="mariaDbFullVersion")
|
|
31968
32069
|
def maria_db_full_version(self) -> builtins.str:
|
|
@@ -32419,6 +32520,18 @@ class MysqlEngineVersion(
|
|
|
32419
32520
|
'''Version "5.7.44-rds.20240808".'''
|
|
32420
32521
|
return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_5_7_44_RDS_20240808"))
|
|
32421
32522
|
|
|
32523
|
+
@jsii.python.classproperty
|
|
32524
|
+
@jsii.member(jsii_name="VER_5_7_44_RDS_20250103")
|
|
32525
|
+
def VER_5_7_44_RDS_20250103(cls) -> "MysqlEngineVersion":
|
|
32526
|
+
'''Version "5.7.44-rds.20250103".'''
|
|
32527
|
+
return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_5_7_44_RDS_20250103"))
|
|
32528
|
+
|
|
32529
|
+
@jsii.python.classproperty
|
|
32530
|
+
@jsii.member(jsii_name="VER_5_7_44_RDS_20250213")
|
|
32531
|
+
def VER_5_7_44_RDS_20250213(cls) -> "MysqlEngineVersion":
|
|
32532
|
+
'''Version "5.7.44-rds.20250213".'''
|
|
32533
|
+
return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_5_7_44_RDS_20250213"))
|
|
32534
|
+
|
|
32422
32535
|
@jsii.python.classproperty
|
|
32423
32536
|
@jsii.member(jsii_name="VER_8_0")
|
|
32424
32537
|
def VER_8_0(cls) -> "MysqlEngineVersion":
|
|
@@ -32649,12 +32762,24 @@ class MysqlEngineVersion(
|
|
|
32649
32762
|
'''Version "8.0.40".'''
|
|
32650
32763
|
return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_8_0_40"))
|
|
32651
32764
|
|
|
32765
|
+
@jsii.python.classproperty
|
|
32766
|
+
@jsii.member(jsii_name="VER_8_0_41")
|
|
32767
|
+
def VER_8_0_41(cls) -> "MysqlEngineVersion":
|
|
32768
|
+
'''Version "8.0.41".'''
|
|
32769
|
+
return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_8_0_41"))
|
|
32770
|
+
|
|
32652
32771
|
@jsii.python.classproperty
|
|
32653
32772
|
@jsii.member(jsii_name="VER_8_4_3")
|
|
32654
32773
|
def VER_8_4_3(cls) -> "MysqlEngineVersion":
|
|
32655
32774
|
'''Version "8.4.3".'''
|
|
32656
32775
|
return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_8_4_3"))
|
|
32657
32776
|
|
|
32777
|
+
@jsii.python.classproperty
|
|
32778
|
+
@jsii.member(jsii_name="VER_8_4_4")
|
|
32779
|
+
def VER_8_4_4(cls) -> "MysqlEngineVersion":
|
|
32780
|
+
'''Version "8.4.4".'''
|
|
32781
|
+
return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_8_4_4"))
|
|
32782
|
+
|
|
32658
32783
|
@builtins.property
|
|
32659
32784
|
@jsii.member(jsii_name="mysqlFullVersion")
|
|
32660
32785
|
def mysql_full_version(self) -> builtins.str:
|
|
@@ -35677,19 +35802,34 @@ class PostgresEngineVersion(
|
|
|
35677
35802
|
@jsii.python.classproperty
|
|
35678
35803
|
@jsii.member(jsii_name="VER_13_11")
|
|
35679
35804
|
def VER_13_11(cls) -> "PostgresEngineVersion":
|
|
35680
|
-
'''Version "13.11".
|
|
35805
|
+
'''(deprecated) Version "13.11".
|
|
35806
|
+
|
|
35807
|
+
:deprecated: PostgreSQL 13.11 is no longer supported by Amazon RDS.
|
|
35808
|
+
|
|
35809
|
+
:stability: deprecated
|
|
35810
|
+
'''
|
|
35681
35811
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_13_11"))
|
|
35682
35812
|
|
|
35683
35813
|
@jsii.python.classproperty
|
|
35684
35814
|
@jsii.member(jsii_name="VER_13_12")
|
|
35685
35815
|
def VER_13_12(cls) -> "PostgresEngineVersion":
|
|
35686
|
-
'''Version "13.12".
|
|
35816
|
+
'''(deprecated) Version "13.12".
|
|
35817
|
+
|
|
35818
|
+
:deprecated: PostgreSQL 13.12 is no longer supported by Amazon RDS.
|
|
35819
|
+
|
|
35820
|
+
:stability: deprecated
|
|
35821
|
+
'''
|
|
35687
35822
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_13_12"))
|
|
35688
35823
|
|
|
35689
35824
|
@jsii.python.classproperty
|
|
35690
35825
|
@jsii.member(jsii_name="VER_13_13")
|
|
35691
35826
|
def VER_13_13(cls) -> "PostgresEngineVersion":
|
|
35692
|
-
'''Version "13.13".
|
|
35827
|
+
'''(deprecated) Version "13.13".
|
|
35828
|
+
|
|
35829
|
+
:deprecated: PostgreSQL 13.13 is no longer supported by Amazon RDS.
|
|
35830
|
+
|
|
35831
|
+
:stability: deprecated
|
|
35832
|
+
'''
|
|
35693
35833
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_13_13"))
|
|
35694
35834
|
|
|
35695
35835
|
@jsii.python.classproperty
|
|
@@ -35842,13 +35982,23 @@ class PostgresEngineVersion(
|
|
|
35842
35982
|
@jsii.python.classproperty
|
|
35843
35983
|
@jsii.member(jsii_name="VER_14_10")
|
|
35844
35984
|
def VER_14_10(cls) -> "PostgresEngineVersion":
|
|
35845
|
-
'''Version "14.10".
|
|
35985
|
+
'''(deprecated) Version "14.10".
|
|
35986
|
+
|
|
35987
|
+
:deprecated: PostgreSQL 14.10 is no longer supported by Amazon RDS.
|
|
35988
|
+
|
|
35989
|
+
:stability: deprecated
|
|
35990
|
+
'''
|
|
35846
35991
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_14_10"))
|
|
35847
35992
|
|
|
35848
35993
|
@jsii.python.classproperty
|
|
35849
35994
|
@jsii.member(jsii_name="VER_14_11")
|
|
35850
35995
|
def VER_14_11(cls) -> "PostgresEngineVersion":
|
|
35851
|
-
'''Version "14.11".
|
|
35996
|
+
'''(deprecated) Version "14.11".
|
|
35997
|
+
|
|
35998
|
+
:deprecated: PostgreSQL 14.11 is no longer supported by Amazon RDS.
|
|
35999
|
+
|
|
36000
|
+
:stability: deprecated
|
|
36001
|
+
'''
|
|
35852
36002
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_14_11"))
|
|
35853
36003
|
|
|
35854
36004
|
@jsii.python.classproperty
|
|
@@ -35967,7 +36117,12 @@ class PostgresEngineVersion(
|
|
|
35967
36117
|
@jsii.python.classproperty
|
|
35968
36118
|
@jsii.member(jsii_name="VER_14_9")
|
|
35969
36119
|
def VER_14_9(cls) -> "PostgresEngineVersion":
|
|
35970
|
-
'''Version "14.9".
|
|
36120
|
+
'''(deprecated) Version "14.9".
|
|
36121
|
+
|
|
36122
|
+
:deprecated: PostgreSQL 14.9 is no longer supported by Amazon RDS.
|
|
36123
|
+
|
|
36124
|
+
:stability: deprecated
|
|
36125
|
+
'''
|
|
35971
36126
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_14_9"))
|
|
35972
36127
|
|
|
35973
36128
|
@jsii.python.classproperty
|
|
@@ -36019,19 +36174,34 @@ class PostgresEngineVersion(
|
|
|
36019
36174
|
@jsii.python.classproperty
|
|
36020
36175
|
@jsii.member(jsii_name="VER_15_4")
|
|
36021
36176
|
def VER_15_4(cls) -> "PostgresEngineVersion":
|
|
36022
|
-
'''Version "15.4".
|
|
36177
|
+
'''(deprecated) Version "15.4".
|
|
36178
|
+
|
|
36179
|
+
:deprecated: PostgreSQL 15.4 is no longer supported by Amazon RDS.
|
|
36180
|
+
|
|
36181
|
+
:stability: deprecated
|
|
36182
|
+
'''
|
|
36023
36183
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_15_4"))
|
|
36024
36184
|
|
|
36025
36185
|
@jsii.python.classproperty
|
|
36026
36186
|
@jsii.member(jsii_name="VER_15_5")
|
|
36027
36187
|
def VER_15_5(cls) -> "PostgresEngineVersion":
|
|
36028
|
-
'''Version "15.5".
|
|
36188
|
+
'''(deprecated) Version "15.5".
|
|
36189
|
+
|
|
36190
|
+
:deprecated: PostgreSQL 15.5 is no longer supported by Amazon RDS
|
|
36191
|
+
|
|
36192
|
+
:stability: deprecated
|
|
36193
|
+
'''
|
|
36029
36194
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_15_5"))
|
|
36030
36195
|
|
|
36031
36196
|
@jsii.python.classproperty
|
|
36032
36197
|
@jsii.member(jsii_name="VER_15_6")
|
|
36033
36198
|
def VER_15_6(cls) -> "PostgresEngineVersion":
|
|
36034
|
-
'''Version "15.6".
|
|
36199
|
+
'''(deprecated) Version "15.6".
|
|
36200
|
+
|
|
36201
|
+
:deprecated: PostgreSQL 15.6 is no longer supported by Amazon RDS
|
|
36202
|
+
|
|
36203
|
+
:stability: deprecated
|
|
36204
|
+
'''
|
|
36035
36205
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_15_6"))
|
|
36036
36206
|
|
|
36037
36207
|
@jsii.python.classproperty
|
|
@@ -36061,13 +36231,23 @@ class PostgresEngineVersion(
|
|
|
36061
36231
|
@jsii.python.classproperty
|
|
36062
36232
|
@jsii.member(jsii_name="VER_16_1")
|
|
36063
36233
|
def VER_16_1(cls) -> "PostgresEngineVersion":
|
|
36064
|
-
'''Version "16.1".
|
|
36234
|
+
'''(deprecated) Version "16.1".
|
|
36235
|
+
|
|
36236
|
+
:deprecated: PostgreSQL 16.1 is no longer supported by Amazon RDS
|
|
36237
|
+
|
|
36238
|
+
:stability: deprecated
|
|
36239
|
+
'''
|
|
36065
36240
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_16_1"))
|
|
36066
36241
|
|
|
36067
36242
|
@jsii.python.classproperty
|
|
36068
36243
|
@jsii.member(jsii_name="VER_16_2")
|
|
36069
36244
|
def VER_16_2(cls) -> "PostgresEngineVersion":
|
|
36070
|
-
'''Version "16.2".
|
|
36245
|
+
'''(deprecated) Version "16.2".
|
|
36246
|
+
|
|
36247
|
+
:deprecated: PostgreSQL 16.2 is no longer supported by Amazon RDS
|
|
36248
|
+
|
|
36249
|
+
:stability: deprecated
|
|
36250
|
+
'''
|
|
36071
36251
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_16_2"))
|
|
36072
36252
|
|
|
36073
36253
|
@jsii.python.classproperty
|
|
@@ -36296,6 +36476,7 @@ class ProcessorFeatures:
|
|
|
36296
36476
|
"allow_major_version_upgrade": "allowMajorVersionUpgrade",
|
|
36297
36477
|
"apply_immediately": "applyImmediately",
|
|
36298
36478
|
"auto_minor_version_upgrade": "autoMinorVersionUpgrade",
|
|
36479
|
+
"availability_zone": "availabilityZone",
|
|
36299
36480
|
"ca_certificate": "caCertificate",
|
|
36300
36481
|
"enable_performance_insights": "enablePerformanceInsights",
|
|
36301
36482
|
"instance_identifier": "instanceIdentifier",
|
|
@@ -36317,6 +36498,7 @@ class ProvisionedClusterInstanceProps(ClusterInstanceOptions):
|
|
|
36317
36498
|
allow_major_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
36318
36499
|
apply_immediately: typing.Optional[builtins.bool] = None,
|
|
36319
36500
|
auto_minor_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
36501
|
+
availability_zone: typing.Optional[builtins.str] = None,
|
|
36320
36502
|
ca_certificate: typing.Optional[CaCertificate] = None,
|
|
36321
36503
|
enable_performance_insights: typing.Optional[builtins.bool] = None,
|
|
36322
36504
|
instance_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -36335,6 +36517,7 @@ class ProvisionedClusterInstanceProps(ClusterInstanceOptions):
|
|
|
36335
36517
|
:param allow_major_version_upgrade: Whether to allow upgrade of major version for the DB instance. Default: - false
|
|
36336
36518
|
:param apply_immediately: Specifies whether changes to the DB instance and any pending modifications are applied immediately, regardless of the ``preferredMaintenanceWindow`` setting. If set to ``false``, changes are applied during the next maintenance window. Until RDS applies the changes, the DB instance remains in a drift state. As a result, the configuration doesn't fully reflect the requested modifications and temporarily diverges from the intended state. This property also determines whether the DB instance reboots when a static parameter is modified in the associated DB parameter group. Default: - Changes will be applied immediately
|
|
36337
36519
|
:param auto_minor_version_upgrade: Whether to enable automatic upgrade of minor version for the DB instance. Default: - true
|
|
36520
|
+
:param availability_zone: The Availability Zone (AZ) where the database will be created. For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones. Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one. Default: - A random, system-chosen Availability Zone in the endpointʼs AWS Region.
|
|
36338
36521
|
:param ca_certificate: The identifier of the CA certificate for this DB cluster's instances. Specifying or updating this property triggers a reboot. For RDS DB engines: Default: - RDS will choose a certificate authority
|
|
36339
36522
|
:param enable_performance_insights: Whether to enable Performance Insights for the DB instance. Default: - false, unless ``performanceInsightRetention`` or ``performanceInsightEncryptionKey`` is set.
|
|
36340
36523
|
:param instance_identifier: The identifier for the database instance. Default: - CloudFormation generated identifier
|
|
@@ -36369,6 +36552,7 @@ class ProvisionedClusterInstanceProps(ClusterInstanceOptions):
|
|
|
36369
36552
|
check_type(argname="argument allow_major_version_upgrade", value=allow_major_version_upgrade, expected_type=type_hints["allow_major_version_upgrade"])
|
|
36370
36553
|
check_type(argname="argument apply_immediately", value=apply_immediately, expected_type=type_hints["apply_immediately"])
|
|
36371
36554
|
check_type(argname="argument auto_minor_version_upgrade", value=auto_minor_version_upgrade, expected_type=type_hints["auto_minor_version_upgrade"])
|
|
36555
|
+
check_type(argname="argument availability_zone", value=availability_zone, expected_type=type_hints["availability_zone"])
|
|
36372
36556
|
check_type(argname="argument ca_certificate", value=ca_certificate, expected_type=type_hints["ca_certificate"])
|
|
36373
36557
|
check_type(argname="argument enable_performance_insights", value=enable_performance_insights, expected_type=type_hints["enable_performance_insights"])
|
|
36374
36558
|
check_type(argname="argument instance_identifier", value=instance_identifier, expected_type=type_hints["instance_identifier"])
|
|
@@ -36388,6 +36572,8 @@ class ProvisionedClusterInstanceProps(ClusterInstanceOptions):
|
|
|
36388
36572
|
self._values["apply_immediately"] = apply_immediately
|
|
36389
36573
|
if auto_minor_version_upgrade is not None:
|
|
36390
36574
|
self._values["auto_minor_version_upgrade"] = auto_minor_version_upgrade
|
|
36575
|
+
if availability_zone is not None:
|
|
36576
|
+
self._values["availability_zone"] = availability_zone
|
|
36391
36577
|
if ca_certificate is not None:
|
|
36392
36578
|
self._values["ca_certificate"] = ca_certificate
|
|
36393
36579
|
if enable_performance_insights is not None:
|
|
@@ -36449,6 +36635,20 @@ class ProvisionedClusterInstanceProps(ClusterInstanceOptions):
|
|
|
36449
36635
|
result = self._values.get("auto_minor_version_upgrade")
|
|
36450
36636
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
36451
36637
|
|
|
36638
|
+
@builtins.property
|
|
36639
|
+
def availability_zone(self) -> typing.Optional[builtins.str]:
|
|
36640
|
+
'''The Availability Zone (AZ) where the database will be created.
|
|
36641
|
+
|
|
36642
|
+
For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones.
|
|
36643
|
+
Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one.
|
|
36644
|
+
|
|
36645
|
+
:default: - A random, system-chosen Availability Zone in the endpointʼs AWS Region.
|
|
36646
|
+
|
|
36647
|
+
:see: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html
|
|
36648
|
+
'''
|
|
36649
|
+
result = self._values.get("availability_zone")
|
|
36650
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
36651
|
+
|
|
36452
36652
|
@builtins.property
|
|
36453
36653
|
def ca_certificate(self) -> typing.Optional[CaCertificate]:
|
|
36454
36654
|
'''The identifier of the CA certificate for this DB cluster's instances.
|
|
@@ -38543,6 +38743,7 @@ class ServerlessScalingOptions:
|
|
|
38543
38743
|
"allow_major_version_upgrade": "allowMajorVersionUpgrade",
|
|
38544
38744
|
"apply_immediately": "applyImmediately",
|
|
38545
38745
|
"auto_minor_version_upgrade": "autoMinorVersionUpgrade",
|
|
38746
|
+
"availability_zone": "availabilityZone",
|
|
38546
38747
|
"ca_certificate": "caCertificate",
|
|
38547
38748
|
"enable_performance_insights": "enablePerformanceInsights",
|
|
38548
38749
|
"instance_identifier": "instanceIdentifier",
|
|
@@ -38563,6 +38764,7 @@ class ServerlessV2ClusterInstanceProps(ClusterInstanceOptions):
|
|
|
38563
38764
|
allow_major_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
38564
38765
|
apply_immediately: typing.Optional[builtins.bool] = None,
|
|
38565
38766
|
auto_minor_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
38767
|
+
availability_zone: typing.Optional[builtins.str] = None,
|
|
38566
38768
|
ca_certificate: typing.Optional[CaCertificate] = None,
|
|
38567
38769
|
enable_performance_insights: typing.Optional[builtins.bool] = None,
|
|
38568
38770
|
instance_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -38580,6 +38782,7 @@ class ServerlessV2ClusterInstanceProps(ClusterInstanceOptions):
|
|
|
38580
38782
|
:param allow_major_version_upgrade: Whether to allow upgrade of major version for the DB instance. Default: - false
|
|
38581
38783
|
:param apply_immediately: Specifies whether changes to the DB instance and any pending modifications are applied immediately, regardless of the ``preferredMaintenanceWindow`` setting. If set to ``false``, changes are applied during the next maintenance window. Until RDS applies the changes, the DB instance remains in a drift state. As a result, the configuration doesn't fully reflect the requested modifications and temporarily diverges from the intended state. This property also determines whether the DB instance reboots when a static parameter is modified in the associated DB parameter group. Default: - Changes will be applied immediately
|
|
38582
38784
|
:param auto_minor_version_upgrade: Whether to enable automatic upgrade of minor version for the DB instance. Default: - true
|
|
38785
|
+
:param availability_zone: The Availability Zone (AZ) where the database will be created. For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones. Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one. Default: - A random, system-chosen Availability Zone in the endpointʼs AWS Region.
|
|
38583
38786
|
:param ca_certificate: The identifier of the CA certificate for this DB cluster's instances. Specifying or updating this property triggers a reboot. For RDS DB engines: Default: - RDS will choose a certificate authority
|
|
38584
38787
|
:param enable_performance_insights: Whether to enable Performance Insights for the DB instance. Default: - false, unless ``performanceInsightRetention`` or ``performanceInsightEncryptionKey`` is set.
|
|
38585
38788
|
:param instance_identifier: The identifier for the database instance. Default: - CloudFormation generated identifier
|
|
@@ -38616,6 +38819,7 @@ class ServerlessV2ClusterInstanceProps(ClusterInstanceOptions):
|
|
|
38616
38819
|
check_type(argname="argument allow_major_version_upgrade", value=allow_major_version_upgrade, expected_type=type_hints["allow_major_version_upgrade"])
|
|
38617
38820
|
check_type(argname="argument apply_immediately", value=apply_immediately, expected_type=type_hints["apply_immediately"])
|
|
38618
38821
|
check_type(argname="argument auto_minor_version_upgrade", value=auto_minor_version_upgrade, expected_type=type_hints["auto_minor_version_upgrade"])
|
|
38822
|
+
check_type(argname="argument availability_zone", value=availability_zone, expected_type=type_hints["availability_zone"])
|
|
38619
38823
|
check_type(argname="argument ca_certificate", value=ca_certificate, expected_type=type_hints["ca_certificate"])
|
|
38620
38824
|
check_type(argname="argument enable_performance_insights", value=enable_performance_insights, expected_type=type_hints["enable_performance_insights"])
|
|
38621
38825
|
check_type(argname="argument instance_identifier", value=instance_identifier, expected_type=type_hints["instance_identifier"])
|
|
@@ -38634,6 +38838,8 @@ class ServerlessV2ClusterInstanceProps(ClusterInstanceOptions):
|
|
|
38634
38838
|
self._values["apply_immediately"] = apply_immediately
|
|
38635
38839
|
if auto_minor_version_upgrade is not None:
|
|
38636
38840
|
self._values["auto_minor_version_upgrade"] = auto_minor_version_upgrade
|
|
38841
|
+
if availability_zone is not None:
|
|
38842
|
+
self._values["availability_zone"] = availability_zone
|
|
38637
38843
|
if ca_certificate is not None:
|
|
38638
38844
|
self._values["ca_certificate"] = ca_certificate
|
|
38639
38845
|
if enable_performance_insights is not None:
|
|
@@ -38693,6 +38899,20 @@ class ServerlessV2ClusterInstanceProps(ClusterInstanceOptions):
|
|
|
38693
38899
|
result = self._values.get("auto_minor_version_upgrade")
|
|
38694
38900
|
return typing.cast(typing.Optional[builtins.bool], result)
|
|
38695
38901
|
|
|
38902
|
+
@builtins.property
|
|
38903
|
+
def availability_zone(self) -> typing.Optional[builtins.str]:
|
|
38904
|
+
'''The Availability Zone (AZ) where the database will be created.
|
|
38905
|
+
|
|
38906
|
+
For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones.
|
|
38907
|
+
Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one.
|
|
38908
|
+
|
|
38909
|
+
:default: - A random, system-chosen Availability Zone in the endpointʼs AWS Region.
|
|
38910
|
+
|
|
38911
|
+
:see: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html
|
|
38912
|
+
'''
|
|
38913
|
+
result = self._values.get("availability_zone")
|
|
38914
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
38915
|
+
|
|
38696
38916
|
@builtins.property
|
|
38697
38917
|
def ca_certificate(self) -> typing.Optional[CaCertificate]:
|
|
38698
38918
|
'''The identifier of the CA certificate for this DB cluster's instances.
|
|
@@ -40708,6 +40928,7 @@ class ClusterInstance(
|
|
|
40708
40928
|
allow_major_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
40709
40929
|
apply_immediately: typing.Optional[builtins.bool] = None,
|
|
40710
40930
|
auto_minor_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
40931
|
+
availability_zone: typing.Optional[builtins.str] = None,
|
|
40711
40932
|
ca_certificate: typing.Optional[CaCertificate] = None,
|
|
40712
40933
|
enable_performance_insights: typing.Optional[builtins.bool] = None,
|
|
40713
40934
|
instance_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -40727,6 +40948,7 @@ class ClusterInstance(
|
|
|
40727
40948
|
:param allow_major_version_upgrade: Whether to allow upgrade of major version for the DB instance. Default: - false
|
|
40728
40949
|
:param apply_immediately: Specifies whether changes to the DB instance and any pending modifications are applied immediately, regardless of the ``preferredMaintenanceWindow`` setting. If set to ``false``, changes are applied during the next maintenance window. Until RDS applies the changes, the DB instance remains in a drift state. As a result, the configuration doesn't fully reflect the requested modifications and temporarily diverges from the intended state. This property also determines whether the DB instance reboots when a static parameter is modified in the associated DB parameter group. Default: - Changes will be applied immediately
|
|
40729
40950
|
:param auto_minor_version_upgrade: Whether to enable automatic upgrade of minor version for the DB instance. Default: - true
|
|
40951
|
+
:param availability_zone: The Availability Zone (AZ) where the database will be created. For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones. Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one. Default: - A random, system-chosen Availability Zone in the endpointʼs AWS Region.
|
|
40730
40952
|
:param ca_certificate: The identifier of the CA certificate for this DB cluster's instances. Specifying or updating this property triggers a reboot. For RDS DB engines: Default: - RDS will choose a certificate authority
|
|
40731
40953
|
:param enable_performance_insights: Whether to enable Performance Insights for the DB instance. Default: - false, unless ``performanceInsightRetention`` or ``performanceInsightEncryptionKey`` is set.
|
|
40732
40954
|
:param instance_identifier: The identifier for the database instance. Default: - CloudFormation generated identifier
|
|
@@ -40753,6 +40975,7 @@ class ClusterInstance(
|
|
|
40753
40975
|
allow_major_version_upgrade=allow_major_version_upgrade,
|
|
40754
40976
|
apply_immediately=apply_immediately,
|
|
40755
40977
|
auto_minor_version_upgrade=auto_minor_version_upgrade,
|
|
40978
|
+
availability_zone=availability_zone,
|
|
40756
40979
|
ca_certificate=ca_certificate,
|
|
40757
40980
|
enable_performance_insights=enable_performance_insights,
|
|
40758
40981
|
instance_identifier=instance_identifier,
|
|
@@ -40777,6 +41000,7 @@ class ClusterInstance(
|
|
|
40777
41000
|
allow_major_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
40778
41001
|
apply_immediately: typing.Optional[builtins.bool] = None,
|
|
40779
41002
|
auto_minor_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
41003
|
+
availability_zone: typing.Optional[builtins.str] = None,
|
|
40780
41004
|
ca_certificate: typing.Optional[CaCertificate] = None,
|
|
40781
41005
|
enable_performance_insights: typing.Optional[builtins.bool] = None,
|
|
40782
41006
|
instance_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -40795,6 +41019,7 @@ class ClusterInstance(
|
|
|
40795
41019
|
:param allow_major_version_upgrade: Whether to allow upgrade of major version for the DB instance. Default: - false
|
|
40796
41020
|
:param apply_immediately: Specifies whether changes to the DB instance and any pending modifications are applied immediately, regardless of the ``preferredMaintenanceWindow`` setting. If set to ``false``, changes are applied during the next maintenance window. Until RDS applies the changes, the DB instance remains in a drift state. As a result, the configuration doesn't fully reflect the requested modifications and temporarily diverges from the intended state. This property also determines whether the DB instance reboots when a static parameter is modified in the associated DB parameter group. Default: - Changes will be applied immediately
|
|
40797
41021
|
:param auto_minor_version_upgrade: Whether to enable automatic upgrade of minor version for the DB instance. Default: - true
|
|
41022
|
+
:param availability_zone: The Availability Zone (AZ) where the database will be created. For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones. Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one. Default: - A random, system-chosen Availability Zone in the endpointʼs AWS Region.
|
|
40798
41023
|
:param ca_certificate: The identifier of the CA certificate for this DB cluster's instances. Specifying or updating this property triggers a reboot. For RDS DB engines: Default: - RDS will choose a certificate authority
|
|
40799
41024
|
:param enable_performance_insights: Whether to enable Performance Insights for the DB instance. Default: - false, unless ``performanceInsightRetention`` or ``performanceInsightEncryptionKey`` is set.
|
|
40800
41025
|
:param instance_identifier: The identifier for the database instance. Default: - CloudFormation generated identifier
|
|
@@ -40820,6 +41045,7 @@ class ClusterInstance(
|
|
|
40820
41045
|
allow_major_version_upgrade=allow_major_version_upgrade,
|
|
40821
41046
|
apply_immediately=apply_immediately,
|
|
40822
41047
|
auto_minor_version_upgrade=auto_minor_version_upgrade,
|
|
41048
|
+
availability_zone=availability_zone,
|
|
40823
41049
|
ca_certificate=ca_certificate,
|
|
40824
41050
|
enable_performance_insights=enable_performance_insights,
|
|
40825
41051
|
instance_identifier=instance_identifier,
|
|
@@ -49706,6 +49932,7 @@ def _typecheckingstub__8cdde1ea7f85160803079277e8fcc0af34768579c1b17b771033b3c63
|
|
|
49706
49932
|
allow_major_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
49707
49933
|
apply_immediately: typing.Optional[builtins.bool] = None,
|
|
49708
49934
|
auto_minor_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
49935
|
+
availability_zone: typing.Optional[builtins.str] = None,
|
|
49709
49936
|
ca_certificate: typing.Optional[CaCertificate] = None,
|
|
49710
49937
|
enable_performance_insights: typing.Optional[builtins.bool] = None,
|
|
49711
49938
|
instance_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -49725,6 +49952,7 @@ def _typecheckingstub__431d59239caf38b9912bfae3130d40eeb8bdb18e013240bac43c98015
|
|
|
49725
49952
|
allow_major_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
49726
49953
|
apply_immediately: typing.Optional[builtins.bool] = None,
|
|
49727
49954
|
auto_minor_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
49955
|
+
availability_zone: typing.Optional[builtins.str] = None,
|
|
49728
49956
|
ca_certificate: typing.Optional[CaCertificate] = None,
|
|
49729
49957
|
enable_performance_insights: typing.Optional[builtins.bool] = None,
|
|
49730
49958
|
instance_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -50625,6 +50853,7 @@ def _typecheckingstub__0d5c78a39da629a585066921d3ee78da795285acdbebe6935198fc929
|
|
|
50625
50853
|
allow_major_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
50626
50854
|
apply_immediately: typing.Optional[builtins.bool] = None,
|
|
50627
50855
|
auto_minor_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
50856
|
+
availability_zone: typing.Optional[builtins.str] = None,
|
|
50628
50857
|
ca_certificate: typing.Optional[CaCertificate] = None,
|
|
50629
50858
|
enable_performance_insights: typing.Optional[builtins.bool] = None,
|
|
50630
50859
|
instance_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -50865,6 +51094,7 @@ def _typecheckingstub__c8fd71a155386e8ce12e74b8c5684dfdd43d26e347ef8bbb979e8a2c3
|
|
|
50865
51094
|
allow_major_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
50866
51095
|
apply_immediately: typing.Optional[builtins.bool] = None,
|
|
50867
51096
|
auto_minor_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
51097
|
+
availability_zone: typing.Optional[builtins.str] = None,
|
|
50868
51098
|
ca_certificate: typing.Optional[CaCertificate] = None,
|
|
50869
51099
|
enable_performance_insights: typing.Optional[builtins.bool] = None,
|
|
50870
51100
|
instance_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -51002,6 +51232,7 @@ def _typecheckingstub__d0d2cd14a2c7ed00bfb6fd9860c31cd0b1af1bff8343258b1b4a8d847
|
|
|
51002
51232
|
allow_major_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
51003
51233
|
apply_immediately: typing.Optional[builtins.bool] = None,
|
|
51004
51234
|
auto_minor_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
51235
|
+
availability_zone: typing.Optional[builtins.str] = None,
|
|
51005
51236
|
ca_certificate: typing.Optional[CaCertificate] = None,
|
|
51006
51237
|
enable_performance_insights: typing.Optional[builtins.bool] = None,
|
|
51007
51238
|
instance_identifier: typing.Optional[builtins.str] = None,
|
|
@@ -51023,6 +51254,7 @@ def _typecheckingstub__95714f22d2724c29931e2710712a92b10932588d2061fa1ceed93097e
|
|
|
51023
51254
|
allow_major_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
51024
51255
|
apply_immediately: typing.Optional[builtins.bool] = None,
|
|
51025
51256
|
auto_minor_version_upgrade: typing.Optional[builtins.bool] = None,
|
|
51257
|
+
availability_zone: typing.Optional[builtins.str] = None,
|
|
51026
51258
|
ca_certificate: typing.Optional[CaCertificate] = None,
|
|
51027
51259
|
enable_performance_insights: typing.Optional[builtins.bool] = None,
|
|
51028
51260
|
instance_identifier: typing.Optional[builtins.str] = None,
|