@aws-sdk/client-rds 3.536.0 → 3.537.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.
|
@@ -95,6 +95,31 @@ declare const ModifyIntegrationCommand_base: {
|
|
|
95
95
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
96
96
|
*
|
|
97
97
|
* @public
|
|
98
|
+
* @example To modify a zero-ETL integration
|
|
99
|
+
* ```javascript
|
|
100
|
+
* // The following example modifies the name of an existing zero-ETL integration.
|
|
101
|
+
* const input = {
|
|
102
|
+
* "IntegrationIdentifier": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
|
|
103
|
+
* "IntegrationName": "my-renamed-integration"
|
|
104
|
+
* };
|
|
105
|
+
* const command = new ModifyIntegrationCommand(input);
|
|
106
|
+
* const response = await client.send(command);
|
|
107
|
+
* /* response ==
|
|
108
|
+
* {
|
|
109
|
+
* "CreateTime": "2023-12-28T17:20:20.629Z",
|
|
110
|
+
* "DataFilter": "include: *.*",
|
|
111
|
+
* "IntegrationArn": "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231",
|
|
112
|
+
* "IntegrationName": "my-renamed-integration",
|
|
113
|
+
* "KMSKeyId": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
|
|
114
|
+
* "SourceArn": "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
|
|
115
|
+
* "Status": "active",
|
|
116
|
+
* "Tags": [],
|
|
117
|
+
* "TargetArn": "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8"
|
|
118
|
+
* }
|
|
119
|
+
* *\/
|
|
120
|
+
* // example id: to-modify-a-zero-etl-integration-1680407173998
|
|
121
|
+
* ```
|
|
122
|
+
*
|
|
98
123
|
*/
|
|
99
124
|
export declare class ModifyIntegrationCommand extends ModifyIntegrationCommand_base {
|
|
100
125
|
}
|
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.537.0",
|
|
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",
|