@aws-sdk/client-rds 3.499.0 → 3.501.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.
|
@@ -108,6 +108,30 @@ declare const CreateIntegrationCommand_base: {
|
|
|
108
108
|
* @throws {@link RDSServiceException}
|
|
109
109
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
110
110
|
*
|
|
111
|
+
* @example To create a zero-ETL integration
|
|
112
|
+
* ```javascript
|
|
113
|
+
* // The following example creates a zero-ETL integration with Amazon Redshift.
|
|
114
|
+
* const input = {
|
|
115
|
+
* "IntegrationName": "my-integration",
|
|
116
|
+
* "SourceArn": "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
|
|
117
|
+
* "TargetArn": "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8"
|
|
118
|
+
* };
|
|
119
|
+
* const command = new CreateIntegrationCommand(input);
|
|
120
|
+
* const response = await client.send(command);
|
|
121
|
+
* /* response ==
|
|
122
|
+
* {
|
|
123
|
+
* "CreateTime": "2023-12-28T17:20:20.629Z",
|
|
124
|
+
* "IntegrationName": "my-integration",
|
|
125
|
+
* "KMSKeyId": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
|
|
126
|
+
* "SourceArn": "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
|
|
127
|
+
* "Status": "creating",
|
|
128
|
+
* "Tags": [],
|
|
129
|
+
* "TargetArn": "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8"
|
|
130
|
+
* }
|
|
131
|
+
* *\/
|
|
132
|
+
* // example id: to-create-a-zero-etl-integration-1679688377231
|
|
133
|
+
* ```
|
|
134
|
+
*
|
|
111
135
|
*/
|
|
112
136
|
export declare class CreateIntegrationCommand extends CreateIntegrationCommand_base {
|
|
113
137
|
}
|
|
@@ -85,6 +85,28 @@ declare const DeleteIntegrationCommand_base: {
|
|
|
85
85
|
* @throws {@link RDSServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
87
87
|
*
|
|
88
|
+
* @example To delete a zero-ETL integration
|
|
89
|
+
* ```javascript
|
|
90
|
+
* // The following example deletes a zero-ETL integration with Amazon Redshift.
|
|
91
|
+
* const input = {
|
|
92
|
+
* "IntegrationIdentifier": "5b9f3d79-7392-4a3e-896c-58eaa1b53231"
|
|
93
|
+
* };
|
|
94
|
+
* const command = new DeleteIntegrationCommand(input);
|
|
95
|
+
* const response = await client.send(command);
|
|
96
|
+
* /* response ==
|
|
97
|
+
* {
|
|
98
|
+
* "CreateTime": "2023-12-28T17:20:20.629Z",
|
|
99
|
+
* "IntegrationName": "my-integration",
|
|
100
|
+
* "KMSKeyId": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
|
|
101
|
+
* "SourceArn": "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
|
|
102
|
+
* "Status": "deleting",
|
|
103
|
+
* "Tags": [],
|
|
104
|
+
* "TargetArn": "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8"
|
|
105
|
+
* }
|
|
106
|
+
* *\/
|
|
107
|
+
* // example id: to-delete-a-zero-etl-integration-1679688377231
|
|
108
|
+
* ```
|
|
109
|
+
*
|
|
88
110
|
*/
|
|
89
111
|
export declare class DeleteIntegrationCommand extends DeleteIntegrationCommand_base {
|
|
90
112
|
}
|
|
@@ -92,6 +92,32 @@ declare const DescribeIntegrationsCommand_base: {
|
|
|
92
92
|
* @throws {@link RDSServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
94
94
|
*
|
|
95
|
+
* @example To describe a zero-ETL integration
|
|
96
|
+
* ```javascript
|
|
97
|
+
* // The following example retrieves information about a zero-ETL integration with Amazon Redshift.
|
|
98
|
+
* const input = {
|
|
99
|
+
* "IntegrationIdentifier": "5b9f3d79-7392-4a3e-896c-58eaa1b53231"
|
|
100
|
+
* };
|
|
101
|
+
* const command = new DescribeIntegrationsCommand(input);
|
|
102
|
+
* const response = await client.send(command);
|
|
103
|
+
* /* response ==
|
|
104
|
+
* {
|
|
105
|
+
* "Integrations": [
|
|
106
|
+
* {
|
|
107
|
+
* "CreateTime": "2023-12-28T17:20:20.629Z",
|
|
108
|
+
* "IntegrationName": "my-integration",
|
|
109
|
+
* "KMSKeyId": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
|
|
110
|
+
* "SourceArn": "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
|
|
111
|
+
* "Status": "active",
|
|
112
|
+
* "Tags": [],
|
|
113
|
+
* "TargetArn": "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8"
|
|
114
|
+
* }
|
|
115
|
+
* ]
|
|
116
|
+
* }
|
|
117
|
+
* *\/
|
|
118
|
+
* // example id: to-describe-a-zero-etl-integration-1679688377231
|
|
119
|
+
* ```
|
|
120
|
+
*
|
|
95
121
|
*/
|
|
96
122
|
export declare class DescribeIntegrationsCommand extends DescribeIntegrationsCommand_base {
|
|
97
123
|
}
|
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.501.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",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.501.0",
|
|
24
24
|
"@aws-sdk/core": "3.496.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.501.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.496.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.496.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.496.0",
|