@aws-sdk/client-rds 3.423.0 → 3.426.0

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.
@@ -255,6 +255,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
255
255
  maxAttempts?: number | __Provider<number>;
256
256
  /**
257
257
  * Specifies which retry algorithm to use.
258
+ * @see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/
259
+ *
258
260
  */
259
261
  retryMode?: string | __Provider<string>;
260
262
  /**
@@ -28,8 +28,8 @@ export interface CreateDBInstanceReadReplicaCommandOutput extends CreateDBInstan
28
28
  * MySQL, MariaDB, Oracle, PostgreSQL, or SQL Server. You can create a read replica for a
29
29
  * 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
30
30
  * 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>
31
- * <p>Amazon Aurora doesn't support this operation. Call the <code>CreateDBInstance</code>
32
- * operation to create a DB instance for an Aurora DB cluster.</p>
31
+ * <p>Amazon Aurora doesn't support this operation. To create a DB instance for an Aurora DB cluster, use the <code>CreateDBInstance</code>
32
+ * operation.</p>
33
33
  * <p>All read replica DB instances are created with backups disabled. All other attributes
34
34
  * (including DB security groups and DB parameter groups) are inherited from the source DB
35
35
  * instance or cluster, except as specified.</p>
@@ -23,12 +23,11 @@ export interface DeleteDBInstanceCommandOutput extends DeleteDBInstanceResult, _
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p>The DeleteDBInstance action deletes a previously provisioned DB instance.
26
+ * <p>Deletes a previously provisioned DB instance.
27
27
  * When you delete a DB instance, all automated backups for that instance are deleted and can't be recovered.
28
- * Manual DB snapshots of the DB instance to be deleted by <code>DeleteDBInstance</code> are not deleted.</p>
29
- * <p>If you request a final DB snapshot
30
- * the status of the Amazon RDS DB instance is <code>deleting</code> until the DB snapshot is created. The API action <code>DescribeDBInstance</code>
31
- * is used to monitor the status of this operation. The action can't be canceled or reverted once submitted.</p>
28
+ * However, manual DB snapshots of the DB instance aren't deleted.</p>
29
+ * <p>If you request a final DB snapshot, the status of the Amazon RDS DB instance is <code>deleting</code> until the DB snapshot is created.
30
+ * This operation can't be canceled or reverted after it begins. To monitor the status of this operation, use <code>DescribeDBInstance</code>.</p>
32
31
  * <p>When a DB instance is in a failure state and has a status of <code>failed</code>, <code>incompatible-restore</code>,
33
32
  * or <code>incompatible-network</code>, you can only delete it when you skip creation of the final snapshot with the <code>SkipFinalSnapshot</code> parameter.</p>
34
33
  * <p>If the specified DB instance is part of an Amazon Aurora DB cluster, you can't delete the DB instance if both of the following
@@ -41,11 +40,12 @@ export interface DeleteDBInstanceCommandOutput extends DeleteDBInstanceResult, _
41
40
  * <p>The DB instance is the only instance in the DB cluster.</p>
42
41
  * </li>
43
42
  * </ul>
44
- * <p>To delete a DB instance in this case, first call the
45
- * <code>PromoteReadReplicaDBCluster</code> API action to promote the DB cluster so
46
- * it's no longer a read replica. After the promotion completes, then call the
47
- * <code>DeleteDBInstance</code> API action to delete the final instance in the DB
48
- * cluster.</p>
43
+ * <p>To delete a DB instance in this case, first use the <code>PromoteReadReplicaDBCluster</code> operation to promote the DB cluster so that it's no longer a read replica.
44
+ * After the promotion completes, use the <code>DeleteDBInstance</code> operation to delete the final instance in the DB cluster.</p>
45
+ * <important>
46
+ * <p>For RDS Custom DB instances, deleting the DB instance permanently deletes the EC2 instance and the associated EBS volumes. Make sure that you don't terminate or delete
47
+ * these resources before you delete the DB instance. Otherwise, deleting the DB instance and creation of the final snapshot might fail.</p>
48
+ * </important>
49
49
  * @example
50
50
  * Use a bare-bones client and the command you need to make an API call.
51
51
  * ```javascript
@@ -24,7 +24,7 @@ export interface DescribeDBEngineVersionsCommandOutput extends DBEngineVersionMe
24
24
  }
25
25
  /**
26
26
  * @public
27
- * <p>Returns a list of the available DB engines.</p>
27
+ * <p>Describes the properties of specific versions of DB engines.</p>
28
28
  * @example
29
29
  * Use a bare-bones client and the command you need to make an API call.
30
30
  * ```javascript