@aws-sdk/client-rds 3.741.0 → 3.742.1
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.
|
@@ -36,17 +36,6 @@ declare const CreateDBParameterGroupCommand_base: {
|
|
|
36
36
|
* a new DB parameter group with a running DB instance, you need to reboot the DB
|
|
37
37
|
* instance without failover for the new DB parameter group and associated settings to take effect.</p>
|
|
38
38
|
* <p>This command doesn't apply to RDS Custom.</p>
|
|
39
|
-
* <important>
|
|
40
|
-
* <p>After you create a DB parameter group, you should wait at least 5 minutes
|
|
41
|
-
* before creating your first DB instance that uses that DB parameter group as the default parameter
|
|
42
|
-
* group. This allows Amazon RDS to fully complete the create action before the parameter
|
|
43
|
-
* group is used as the default for a new DB instance. This is especially important for parameters
|
|
44
|
-
* that are critical when creating the default database for a DB instance, such as the character set
|
|
45
|
-
* for the default database defined by the <code>character_set_database</code> parameter. You can use the
|
|
46
|
-
* <i>Parameter Groups</i> option of the <a href="https://console.aws.amazon.com/rds/">Amazon RDS console</a> or the
|
|
47
|
-
* <i>DescribeDBParameters</i> command to verify
|
|
48
|
-
* that your DB parameter group has been created or modified.</p>
|
|
49
|
-
* </important>
|
|
50
39
|
* @example
|
|
51
40
|
* Use a bare-bones client and the command you need to make an API call.
|
|
52
41
|
* ```javascript
|
|
@@ -29,9 +29,6 @@ declare const ModifyIntegrationCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
/**
|
|
31
31
|
* <p>Modifies a zero-ETL integration with Amazon Redshift.</p>
|
|
32
|
-
* <note>
|
|
33
|
-
* <p>Currently, you can only modify integrations that have Aurora MySQL source DB clusters. Integrations with Aurora PostgreSQL and RDS sources currently don't support modifying the integration.</p>
|
|
34
|
-
* </note>
|
|
35
32
|
* @example
|
|
36
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
37
34
|
* ```javascript
|
|
@@ -5133,9 +5133,9 @@ export interface DBClusterStatusInfo {
|
|
|
5133
5133
|
*/
|
|
5134
5134
|
export interface DBCluster {
|
|
5135
5135
|
/**
|
|
5136
|
-
* <p>
|
|
5137
|
-
*
|
|
5138
|
-
*
|
|
5136
|
+
* <p>
|
|
5137
|
+
* <code>AllocatedStorage</code> specifies the allocated storage size in gibibytes (GiB).
|
|
5138
|
+
* For Aurora, <code>AllocatedStorage</code> can vary because Aurora DB cluster storage size adjusts as needed.</p>
|
|
5139
5139
|
* @public
|
|
5140
5140
|
*/
|
|
5141
5141
|
AllocatedStorage?: number | undefined;
|
|
@@ -11057,9 +11057,10 @@ export interface CreateIntegrationMessage {
|
|
|
11057
11057
|
Tags?: Tag[] | undefined;
|
|
11058
11058
|
/**
|
|
11059
11059
|
* <p>Data filtering options for the integration. For more information, see
|
|
11060
|
-
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.filtering.html">Data filtering for Aurora zero-ETL integrations with Amazon Redshift</a
|
|
11060
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.filtering.html">Data filtering for Aurora zero-ETL integrations with Amazon Redshift</a>
|
|
11061
|
+
* or
|
|
11062
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/zero-etl.filtering.html">Data filtering for Amazon RDS zero-ETL integrations with Amazon Redshift</a>.
|
|
11061
11063
|
* </p>
|
|
11062
|
-
* <p>Valid for: Integrations with Aurora MySQL source DB clusters only</p>
|
|
11063
11064
|
* @public
|
|
11064
11065
|
*/
|
|
11065
11066
|
DataFilter?: string | undefined;
|
|
@@ -11713,7 +11714,8 @@ export interface DeleteDBClusterMessage {
|
|
|
11713
11714
|
/**
|
|
11714
11715
|
* <p>Specifies whether to remove automated backups immediately after the DB
|
|
11715
11716
|
* cluster is deleted. This parameter isn't case-sensitive. The default is to remove
|
|
11716
|
-
* automated backups immediately after the DB cluster is deleted
|
|
11717
|
+
* automated backups immediately after the DB cluster is deleted, unless the Amazon Web Services Backup
|
|
11718
|
+
* policy specifies a point-in-time restore rule.</p>
|
|
11717
11719
|
* @public
|
|
11718
11720
|
*/
|
|
11719
11721
|
DeleteAutomatedBackups?: boolean | undefined;
|
|
@@ -8853,6 +8853,7 @@ export interface ModifyDBProxyTargetGroupRequest {
|
|
|
8853
8853
|
ConnectionPoolConfig?: ConnectionPoolConfiguration | undefined;
|
|
8854
8854
|
/**
|
|
8855
8855
|
* <p>The new name for the modified <code>DBProxyTarget</code>. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.</p>
|
|
8856
|
+
* <p>You can't rename the <code>default</code> target group.</p>
|
|
8856
8857
|
* @public
|
|
8857
8858
|
*/
|
|
8858
8859
|
NewName?: string | undefined;
|
|
@@ -9298,8 +9299,9 @@ export interface ModifyIntegrationMessage {
|
|
|
9298
9299
|
*/
|
|
9299
9300
|
IntegrationName?: string | undefined;
|
|
9300
9301
|
/**
|
|
9301
|
-
* <p>A new data filter for the integration. For more information, see
|
|
9302
|
-
*
|
|
9302
|
+
* <p>A new data filter for the integration. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Zero_ETL_Filtering.html">Data filtering
|
|
9303
|
+
* for Aurora zero-ETL integrations with Amazon Redshift</a> or <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/zero-etl.filtering.html">Data
|
|
9304
|
+
* filtering for Amazon RDS zero-ETL integrations with Amazon Redshift</a>.</p>
|
|
9303
9305
|
* @public
|
|
9304
9306
|
*/
|
|
9305
9307
|
DataFilter?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rds",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rds Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.742.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-rds",
|