You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/client-rds/src/RDS.ts
+16-12Lines changed: 16 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -1353,13 +1353,14 @@ export class RDS extends RDSClient {
1353
1353
* request creates a writer and two reader DB instances for you, each in a different
1354
1354
* Availability Zone.</p>
1355
1355
* <p>You can use the <code>ReplicationSourceIdentifier</code> parameter to create an Amazon
1356
-
* Aurora DB cluster as a read replica of another DB cluster or Amazon RDS MySQL or
1356
+
* Aurora DB cluster as a read replica of another DB cluster or Amazon RDS for MySQL or
1357
1357
* PostgreSQL DB instance. For more information about Amazon Aurora, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">What is Amazon Aurora?</a> in the <i>Amazon Aurora User
1358
-
* Guide</i>.</p>
1358
+
* Guide</i>.</p>
1359
1359
* <p>You can also use the <code>ReplicationSourceIdentifier</code> parameter to create a
1360
-
* Multi-AZ DB cluster read replica with an RDS for PostgreSQL DB instance as the source.
1361
-
* For more information about Multi-AZ DB clusters, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">Multi-AZ DB cluster deployments</a> in the <i>Amazon
1362
-
* RDS User Guide</i>.</p>
1360
+
* Multi-AZ DB cluster read replica with an RDS for MySQL or PostgreSQL DB instance as the
1361
+
* source. For more information about Multi-AZ DB clusters, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">Multi-AZ DB
1362
+
* cluster deployments</a> in the <i>Amazon RDS User
1363
+
* Guide</i>.</p>
1363
1364
*/
1364
1365
publiccreateDBCluster(
1365
1366
args: CreateDBClusterCommandInput,
@@ -1570,16 +1571,17 @@ export class RDS extends RDSClient {
1570
1571
/**
1571
1572
* @public
1572
1573
* <p>Creates a new DB instance that acts as a read replica for an existing source DB
1573
-
* instance. You can create a read replica for a DB instance running MySQL, MariaDB,
1574
-
* Oracle, PostgreSQL, or SQL Server. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReadRepl.html">Working with Read
1575
-
* Replicas</a> in the <i>Amazon RDS User Guide</i>.</p>
1574
+
* instance or Multi-AZ DB cluster. You can create a read replica for a DB instance running
1575
+
* MySQL, MariaDB, Oracle, PostgreSQL, or SQL Server. You can create a read replica for a
1576
+
* Multi-AZ DB cluster running MySQL or PostgreSQL. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReadRepl.html">Working
1577
+
* with read replicas</a> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html#multi-az-db-clusters-migrating-to-instance-with-read-replica">Migrating from a Multi-AZ DB cluster to a DB instance using a read replica</a> in the <i>Amazon RDS User Guide</i>.</p>
1576
1578
* <p>Amazon Aurora doesn't support this operation. Call the <code>CreateDBInstance</code>
1577
1579
* operation to create a DB instance for an Aurora DB cluster.</p>
1578
-
* <p>All read replica DB instances are created with backups disabled. All other DB
1579
-
* instance attributes (including DB security groups and DB parameter groups) are inherited
1580
-
* from the source DB instance, except as specified.</p>
1580
+
* <p>All read replica DB instances are created with backups disabled. All other attributes
1581
+
* (including DB security groups and DB parameter groups) are inherited from the source DB
1582
+
* instance or cluster, except as specified.</p>
1581
1583
* <important>
1582
-
* <p>Your source DB instance must have backup retention enabled.</p>
1584
+
* <p>Your source DB instance or cluster must have backup retention enabled.</p>
1583
1585
* </important>
1584
1586
*/
1585
1587
publiccreateDBInstanceReadReplica(
@@ -2070,6 +2072,8 @@ export class RDS extends RDSClient {
2070
2072
* <p>The DeleteDBCluster action deletes a previously provisioned DB cluster.
2071
2073
* When you delete a DB cluster, all automated backups for that DB cluster are deleted and can't be recovered.
2072
2074
* Manual DB cluster snapshots of the specified DB cluster are not deleted.</p>
2075
+
* <p>If you're deleting a Multi-AZ DB cluster with read replicas, all cluster members are
2076
+
* terminated and read replicas are promoted to standalone instances.</p>
* request creates a writer and two reader DB instances for you, each in a different
43
43
* Availability Zone.</p>
44
44
* <p>You can use the <code>ReplicationSourceIdentifier</code> parameter to create an Amazon
45
-
* Aurora DB cluster as a read replica of another DB cluster or Amazon RDS MySQL or
45
+
* Aurora DB cluster as a read replica of another DB cluster or Amazon RDS for MySQL or
46
46
* PostgreSQL DB instance. For more information about Amazon Aurora, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">What is Amazon Aurora?</a> in the <i>Amazon Aurora User
47
-
* Guide</i>.</p>
47
+
* Guide</i>.</p>
48
48
* <p>You can also use the <code>ReplicationSourceIdentifier</code> parameter to create a
49
-
* Multi-AZ DB cluster read replica with an RDS for PostgreSQL DB instance as the source.
50
-
* For more information about Multi-AZ DB clusters, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">Multi-AZ DB cluster deployments</a> in the <i>Amazon
51
-
* RDS User Guide</i>.</p>
49
+
* Multi-AZ DB cluster read replica with an RDS for MySQL or PostgreSQL DB instance as the
50
+
* source. For more information about Multi-AZ DB clusters, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">Multi-AZ DB
51
+
* cluster deployments</a> in the <i>Amazon RDS User
52
+
* Guide</i>.</p>
52
53
* @example
53
54
* Use a bare-bones client and the command you need to make an API call.
* <p>Creates a new DB instance that acts as a read replica for an existing source DB
40
-
* instance. You can create a read replica for a DB instance running MySQL, MariaDB,
41
-
* Oracle, PostgreSQL, or SQL Server. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReadRepl.html">Working with Read
42
-
* Replicas</a> in the <i>Amazon RDS User Guide</i>.</p>
40
+
* instance or Multi-AZ DB cluster. You can create a read replica for a DB instance running
41
+
* MySQL, MariaDB, Oracle, PostgreSQL, or SQL Server. You can create a read replica for a
42
+
* Multi-AZ DB cluster running MySQL or PostgreSQL. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReadRepl.html">Working
43
+
* with read replicas</a> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html#multi-az-db-clusters-migrating-to-instance-with-read-replica">Migrating from a Multi-AZ DB cluster to a DB instance using a read replica</a> in the <i>Amazon RDS User Guide</i>.</p>
43
44
* <p>Amazon Aurora doesn't support this operation. Call the <code>CreateDBInstance</code>
44
45
* operation to create a DB instance for an Aurora DB cluster.</p>
45
-
* <p>All read replica DB instances are created with backups disabled. All other DB
46
-
* instance attributes (including DB security groups and DB parameter groups) are inherited
47
-
* from the source DB instance, except as specified.</p>
46
+
* <p>All read replica DB instances are created with backups disabled. All other attributes
47
+
* (including DB security groups and DB parameter groups) are inherited from the source DB
48
+
* instance or cluster, except as specified.</p>
48
49
* <important>
49
-
* <p>Your source DB instance must have backup retention enabled.</p>
50
+
* <p>Your source DB instance or cluster must have backup retention enabled.</p>
50
51
* </important>
51
52
* @example
52
53
* Use a bare-bones client and the command you need to make an API call.
0 commit comments