@aws-sdk/client-rds 3.438.0 → 3.441.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.
- package/README.md +24 -0
- package/dist-cjs/RDS.js +6 -0
- package/dist-cjs/commands/CreateIntegrationCommand.js +51 -0
- package/dist-cjs/commands/DeleteIntegrationCommand.js +51 -0
- package/dist-cjs/commands/DescribeIntegrationsCommand.js +51 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +77 -3
- package/dist-cjs/pagination/DescribeIntegrationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_query.js +466 -6
- package/dist-es/RDS.js +6 -0
- package/dist-es/commands/CreateIntegrationCommand.js +47 -0
- package/dist-es/commands/DeleteIntegrationCommand.js +47 -0
- package/dist-es/commands/DescribeIntegrationsCommand.js +47 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +69 -0
- package/dist-es/pagination/DescribeIntegrationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_query.js +455 -1
- package/dist-types/RDS.d.ts +21 -0
- package/dist-types/RDSClient.d.ts +5 -2
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +3 -0
- package/dist-types/commands/CreateCustomDBEngineVersionCommand.d.ts +2 -0
- package/dist-types/commands/CreateDBClusterCommand.d.ts +12 -0
- package/dist-types/commands/CreateIntegrationCommand.d.ts +130 -0
- package/dist-types/commands/DeleteCustomDBEngineVersionCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/DeleteIntegrationCommand.d.ts +107 -0
- package/dist-types/commands/DescribeDBClusterParametersCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClustersCommand.d.ts +9 -1
- package/dist-types/commands/DescribeDBEngineVersionsCommand.d.ts +3 -2
- package/dist-types/commands/DescribeIntegrationsCommand.d.ts +115 -0
- package/dist-types/commands/FailoverDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/ModifyCustomDBEngineVersionCommand.d.ts +2 -0
- package/dist-types/commands/ModifyDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/PromoteReadReplicaDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/RebootDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +3 -0
- package/dist-types/commands/RestoreDBClusterFromS3Command.d.ts +8 -0
- package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +12 -0
- package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +12 -0
- package/dist-types/commands/StartDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/StopDBClusterCommand.d.ts +8 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +256 -423
- package/dist-types/models/models_1.d.ts +481 -1
- package/dist-types/pagination/DescribeIntegrationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_query.d.ts +27 -0
- package/dist-types/ts3.4/RDS.d.ts +51 -0
- package/dist-types/ts3.4/RDSClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/CreateIntegrationCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DescribeDBClusterParametersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBClusterSnapshotsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBClustersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBEngineVersionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeIntegrationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +85 -55
- package/dist-types/ts3.4/models/models_1.d.ts +71 -1
- package/dist-types/ts3.4/pagination/DescribeIntegrationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +36 -0
- package/package.json +4 -4
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { DescribeIntegrationsMessage, DescribeIntegrationsResponse } from "../models/models_1";
|
|
5
|
+
import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DescribeIntegrationsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DescribeIntegrationsCommandInput extends DescribeIntegrationsMessage {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DescribeIntegrationsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeIntegrationsCommandOutput extends DescribeIntegrationsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Describe one or more zero-ETL integration with Amazon Redshift. For more information,
|
|
27
|
+
* see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.describingmonitoring.html">Viewing and monitoring Amazon Aurora zero-ETL integrations with Amazon Redshift</a> in
|
|
28
|
+
* the <i>Amazon Aurora User Guide</i>
|
|
29
|
+
* </p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { RDSClient, DescribeIntegrationsCommand } from "@aws-sdk/client-rds"; // ES Modules import
|
|
34
|
+
* // const { RDSClient, DescribeIntegrationsCommand } = require("@aws-sdk/client-rds"); // CommonJS import
|
|
35
|
+
* const client = new RDSClient(config);
|
|
36
|
+
* const input = { // DescribeIntegrationsMessage
|
|
37
|
+
* IntegrationIdentifier: "STRING_VALUE",
|
|
38
|
+
* Filters: [ // FilterList
|
|
39
|
+
* { // Filter
|
|
40
|
+
* Name: "STRING_VALUE", // required
|
|
41
|
+
* Values: [ // FilterValueList // required
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* },
|
|
45
|
+
* ],
|
|
46
|
+
* MaxRecords: Number("int"),
|
|
47
|
+
* Marker: "STRING_VALUE",
|
|
48
|
+
* };
|
|
49
|
+
* const command = new DescribeIntegrationsCommand(input);
|
|
50
|
+
* const response = await client.send(command);
|
|
51
|
+
* // { // DescribeIntegrationsResponse
|
|
52
|
+
* // Marker: "STRING_VALUE",
|
|
53
|
+
* // Integrations: [ // IntegrationList
|
|
54
|
+
* // { // Integration
|
|
55
|
+
* // SourceArn: "STRING_VALUE",
|
|
56
|
+
* // TargetArn: "STRING_VALUE",
|
|
57
|
+
* // IntegrationName: "STRING_VALUE",
|
|
58
|
+
* // IntegrationArn: "STRING_VALUE",
|
|
59
|
+
* // KMSKeyId: "STRING_VALUE",
|
|
60
|
+
* // AdditionalEncryptionContext: { // EncryptionContextMap
|
|
61
|
+
* // "<keys>": "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // Status: "creating" || "active" || "modifying" || "failed" || "deleting" || "syncing" || "needs_attention",
|
|
64
|
+
* // Tags: [ // TagList
|
|
65
|
+
* // { // Tag
|
|
66
|
+
* // Key: "STRING_VALUE",
|
|
67
|
+
* // Value: "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // ],
|
|
70
|
+
* // CreateTime: new Date("TIMESTAMP"),
|
|
71
|
+
* // Errors: [ // IntegrationErrorList
|
|
72
|
+
* // { // IntegrationError
|
|
73
|
+
* // ErrorCode: "STRING_VALUE", // required
|
|
74
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // ],
|
|
77
|
+
* // },
|
|
78
|
+
* // ],
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
81
|
+
* ```
|
|
82
|
+
*
|
|
83
|
+
* @param DescribeIntegrationsCommandInput - {@link DescribeIntegrationsCommandInput}
|
|
84
|
+
* @returns {@link DescribeIntegrationsCommandOutput}
|
|
85
|
+
* @see {@link DescribeIntegrationsCommandInput} for command's `input` shape.
|
|
86
|
+
* @see {@link DescribeIntegrationsCommandOutput} for command's `response` shape.
|
|
87
|
+
* @see {@link RDSClientResolvedConfig | config} for RDSClient's `config` shape.
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link IntegrationNotFoundFault} (client fault)
|
|
90
|
+
* <p>The specified integration could not be found.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link RDSServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
94
|
+
*
|
|
95
|
+
*/
|
|
96
|
+
export declare class DescribeIntegrationsCommand extends $Command<DescribeIntegrationsCommandInput, DescribeIntegrationsCommandOutput, RDSClientResolvedConfig> {
|
|
97
|
+
readonly input: DescribeIntegrationsCommandInput;
|
|
98
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
constructor(input: DescribeIntegrationsCommandInput);
|
|
103
|
+
/**
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
106
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RDSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeIntegrationsCommandInput, DescribeIntegrationsCommandOutput>;
|
|
107
|
+
/**
|
|
108
|
+
* @internal
|
|
109
|
+
*/
|
|
110
|
+
private serialize;
|
|
111
|
+
/**
|
|
112
|
+
* @internal
|
|
113
|
+
*/
|
|
114
|
+
private deserialize;
|
|
115
|
+
}
|
|
@@ -136,6 +136,10 @@ export interface FailoverDBClusterCommandOutput extends FailoverDBClusterResult,
|
|
|
136
136
|
* // TimeoutAction: "STRING_VALUE",
|
|
137
137
|
* // SecondsBeforeTimeout: Number("int"),
|
|
138
138
|
* // },
|
|
139
|
+
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
|
|
140
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
141
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
142
|
+
* // },
|
|
139
143
|
* // DeletionProtection: true || false,
|
|
140
144
|
* // HttpEndpointEnabled: true || false,
|
|
141
145
|
* // ActivityStreamMode: "sync" || "async",
|
|
@@ -180,6 +184,10 @@ export interface FailoverDBClusterCommandOutput extends FailoverDBClusterResult,
|
|
|
180
184
|
* // EngineVersion: "STRING_VALUE",
|
|
181
185
|
* // BackupRetentionPeriod: Number("int"),
|
|
182
186
|
* // AllocatedStorage: Number("int"),
|
|
187
|
+
* // RdsCustomClusterConfiguration: {
|
|
188
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
189
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
190
|
+
* // },
|
|
183
191
|
* // Iops: Number("int"),
|
|
184
192
|
* // StorageType: "STRING_VALUE",
|
|
185
193
|
* // },
|
|
@@ -85,6 +85,9 @@ export interface ListTagsForResourceCommandOutput extends TagListMessage, __Meta
|
|
|
85
85
|
* <p>
|
|
86
86
|
* <code>DBSnapshotIdentifier</code> doesn't refer to an existing DB snapshot.</p>
|
|
87
87
|
*
|
|
88
|
+
* @throws {@link IntegrationNotFoundFault} (client fault)
|
|
89
|
+
* <p>The specified integration could not be found.</p>
|
|
90
|
+
*
|
|
88
91
|
* @throws {@link RDSServiceException}
|
|
89
92
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
90
93
|
*
|
|
@@ -90,6 +90,7 @@ export interface ModifyCustomDBEngineVersionCommandOutput extends DBEngineVersio
|
|
|
90
90
|
* // SupportsGlobalDatabases: true || false,
|
|
91
91
|
* // SupportsBabelfish: true || false,
|
|
92
92
|
* // SupportsLocalWriteForwarding: true || false,
|
|
93
|
+
* // SupportsIntegrations: true || false,
|
|
93
94
|
* // },
|
|
94
95
|
* // ],
|
|
95
96
|
* // SupportedTimezones: [ // SupportedTimezonesList
|
|
@@ -130,6 +131,7 @@ export interface ModifyCustomDBEngineVersionCommandOutput extends DBEngineVersio
|
|
|
130
131
|
* // "STRING_VALUE",
|
|
131
132
|
* // ],
|
|
132
133
|
* // SupportsLocalWriteForwarding: true || false,
|
|
134
|
+
* // SupportsIntegrations: true || false,
|
|
133
135
|
* // };
|
|
134
136
|
*
|
|
135
137
|
* ```
|
|
@@ -188,6 +188,10 @@ export interface ModifyDBClusterCommandOutput extends ModifyDBClusterResult, __M
|
|
|
188
188
|
* // TimeoutAction: "STRING_VALUE",
|
|
189
189
|
* // SecondsBeforeTimeout: Number("int"),
|
|
190
190
|
* // },
|
|
191
|
+
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
|
|
192
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
193
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
194
|
+
* // },
|
|
191
195
|
* // DeletionProtection: true || false,
|
|
192
196
|
* // HttpEndpointEnabled: true || false,
|
|
193
197
|
* // ActivityStreamMode: "sync" || "async",
|
|
@@ -232,6 +236,10 @@ export interface ModifyDBClusterCommandOutput extends ModifyDBClusterResult, __M
|
|
|
232
236
|
* // EngineVersion: "STRING_VALUE",
|
|
233
237
|
* // BackupRetentionPeriod: Number("int"),
|
|
234
238
|
* // AllocatedStorage: Number("int"),
|
|
239
|
+
* // RdsCustomClusterConfiguration: {
|
|
240
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
241
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
242
|
+
* // },
|
|
235
243
|
* // Iops: Number("int"),
|
|
236
244
|
* // StorageType: "STRING_VALUE",
|
|
237
245
|
* // },
|
|
@@ -119,6 +119,10 @@ export interface PromoteReadReplicaDBClusterCommandOutput extends PromoteReadRep
|
|
|
119
119
|
* // TimeoutAction: "STRING_VALUE",
|
|
120
120
|
* // SecondsBeforeTimeout: Number("int"),
|
|
121
121
|
* // },
|
|
122
|
+
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
|
|
123
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
124
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
125
|
+
* // },
|
|
122
126
|
* // DeletionProtection: true || false,
|
|
123
127
|
* // HttpEndpointEnabled: true || false,
|
|
124
128
|
* // ActivityStreamMode: "sync" || "async",
|
|
@@ -163,6 +167,10 @@ export interface PromoteReadReplicaDBClusterCommandOutput extends PromoteReadRep
|
|
|
163
167
|
* // EngineVersion: "STRING_VALUE",
|
|
164
168
|
* // BackupRetentionPeriod: Number("int"),
|
|
165
169
|
* // AllocatedStorage: Number("int"),
|
|
170
|
+
* // RdsCustomClusterConfiguration: {
|
|
171
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
172
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
173
|
+
* // },
|
|
166
174
|
* // Iops: Number("int"),
|
|
167
175
|
* // StorageType: "STRING_VALUE",
|
|
168
176
|
* // },
|
|
@@ -129,6 +129,10 @@ export interface RebootDBClusterCommandOutput extends RebootDBClusterResult, __M
|
|
|
129
129
|
* // TimeoutAction: "STRING_VALUE",
|
|
130
130
|
* // SecondsBeforeTimeout: Number("int"),
|
|
131
131
|
* // },
|
|
132
|
+
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
|
|
133
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
134
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
135
|
+
* // },
|
|
132
136
|
* // DeletionProtection: true || false,
|
|
133
137
|
* // HttpEndpointEnabled: true || false,
|
|
134
138
|
* // ActivityStreamMode: "sync" || "async",
|
|
@@ -173,6 +177,10 @@ export interface RebootDBClusterCommandOutput extends RebootDBClusterResult, __M
|
|
|
173
177
|
* // EngineVersion: "STRING_VALUE",
|
|
174
178
|
* // BackupRetentionPeriod: Number("int"),
|
|
175
179
|
* // AllocatedStorage: Number("int"),
|
|
180
|
+
* // RdsCustomClusterConfiguration: {
|
|
181
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
182
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
183
|
+
* // },
|
|
176
184
|
* // Iops: Number("int"),
|
|
177
185
|
* // StorageType: "STRING_VALUE",
|
|
178
186
|
* // },
|
|
@@ -74,6 +74,9 @@ export interface RemoveTagsFromResourceCommandOutput extends __MetadataBearer {
|
|
|
74
74
|
* <p>
|
|
75
75
|
* <code>DBSnapshotIdentifier</code> doesn't refer to an existing DB snapshot.</p>
|
|
76
76
|
*
|
|
77
|
+
* @throws {@link IntegrationNotFoundFault} (client fault)
|
|
78
|
+
* <p>The specified integration could not be found.</p>
|
|
79
|
+
*
|
|
77
80
|
* @throws {@link RDSServiceException}
|
|
78
81
|
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
79
82
|
*
|
|
@@ -185,6 +185,10 @@ export interface RestoreDBClusterFromS3CommandOutput extends RestoreDBClusterFro
|
|
|
185
185
|
* // TimeoutAction: "STRING_VALUE",
|
|
186
186
|
* // SecondsBeforeTimeout: Number("int"),
|
|
187
187
|
* // },
|
|
188
|
+
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
|
|
189
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
190
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
191
|
+
* // },
|
|
188
192
|
* // DeletionProtection: true || false,
|
|
189
193
|
* // HttpEndpointEnabled: true || false,
|
|
190
194
|
* // ActivityStreamMode: "sync" || "async",
|
|
@@ -229,6 +233,10 @@ export interface RestoreDBClusterFromS3CommandOutput extends RestoreDBClusterFro
|
|
|
229
233
|
* // EngineVersion: "STRING_VALUE",
|
|
230
234
|
* // BackupRetentionPeriod: Number("int"),
|
|
231
235
|
* // AllocatedStorage: Number("int"),
|
|
236
|
+
* // RdsCustomClusterConfiguration: {
|
|
237
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
238
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
239
|
+
* // },
|
|
232
240
|
* // Iops: Number("int"),
|
|
233
241
|
* // StorageType: "STRING_VALUE",
|
|
234
242
|
* // },
|
|
@@ -98,6 +98,10 @@ export interface RestoreDBClusterFromSnapshotCommandOutput extends RestoreDBClus
|
|
|
98
98
|
* MaxCapacity: Number("double"),
|
|
99
99
|
* },
|
|
100
100
|
* NetworkType: "STRING_VALUE",
|
|
101
|
+
* RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
|
|
102
|
+
* InterconnectSubnetId: "STRING_VALUE",
|
|
103
|
+
* TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
104
|
+
* },
|
|
101
105
|
* };
|
|
102
106
|
* const command = new RestoreDBClusterFromSnapshotCommand(input);
|
|
103
107
|
* const response = await client.send(command);
|
|
@@ -185,6 +189,10 @@ export interface RestoreDBClusterFromSnapshotCommandOutput extends RestoreDBClus
|
|
|
185
189
|
* // TimeoutAction: "STRING_VALUE",
|
|
186
190
|
* // SecondsBeforeTimeout: Number("int"),
|
|
187
191
|
* // },
|
|
192
|
+
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
|
|
193
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
194
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
195
|
+
* // },
|
|
188
196
|
* // DeletionProtection: true || false,
|
|
189
197
|
* // HttpEndpointEnabled: true || false,
|
|
190
198
|
* // ActivityStreamMode: "sync" || "async",
|
|
@@ -229,6 +237,10 @@ export interface RestoreDBClusterFromSnapshotCommandOutput extends RestoreDBClus
|
|
|
229
237
|
* // EngineVersion: "STRING_VALUE",
|
|
230
238
|
* // BackupRetentionPeriod: Number("int"),
|
|
231
239
|
* // AllocatedStorage: Number("int"),
|
|
240
|
+
* // RdsCustomClusterConfiguration: {
|
|
241
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
242
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
243
|
+
* // },
|
|
232
244
|
* // Iops: Number("int"),
|
|
233
245
|
* // StorageType: "STRING_VALUE",
|
|
234
246
|
* // },
|
|
@@ -97,6 +97,10 @@ export interface RestoreDBClusterToPointInTimeCommandOutput extends RestoreDBClu
|
|
|
97
97
|
* },
|
|
98
98
|
* NetworkType: "STRING_VALUE",
|
|
99
99
|
* SourceDbClusterResourceId: "STRING_VALUE",
|
|
100
|
+
* RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
|
|
101
|
+
* InterconnectSubnetId: "STRING_VALUE",
|
|
102
|
+
* TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
103
|
+
* },
|
|
100
104
|
* };
|
|
101
105
|
* const command = new RestoreDBClusterToPointInTimeCommand(input);
|
|
102
106
|
* const response = await client.send(command);
|
|
@@ -184,6 +188,10 @@ export interface RestoreDBClusterToPointInTimeCommandOutput extends RestoreDBClu
|
|
|
184
188
|
* // TimeoutAction: "STRING_VALUE",
|
|
185
189
|
* // SecondsBeforeTimeout: Number("int"),
|
|
186
190
|
* // },
|
|
191
|
+
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
|
|
192
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
193
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
194
|
+
* // },
|
|
187
195
|
* // DeletionProtection: true || false,
|
|
188
196
|
* // HttpEndpointEnabled: true || false,
|
|
189
197
|
* // ActivityStreamMode: "sync" || "async",
|
|
@@ -228,6 +236,10 @@ export interface RestoreDBClusterToPointInTimeCommandOutput extends RestoreDBClu
|
|
|
228
236
|
* // EngineVersion: "STRING_VALUE",
|
|
229
237
|
* // BackupRetentionPeriod: Number("int"),
|
|
230
238
|
* // AllocatedStorage: Number("int"),
|
|
239
|
+
* // RdsCustomClusterConfiguration: {
|
|
240
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
241
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
242
|
+
* // },
|
|
231
243
|
* // Iops: Number("int"),
|
|
232
244
|
* // StorageType: "STRING_VALUE",
|
|
233
245
|
* // },
|
|
@@ -126,6 +126,10 @@ export interface StartDBClusterCommandOutput extends StartDBClusterResult, __Met
|
|
|
126
126
|
* // TimeoutAction: "STRING_VALUE",
|
|
127
127
|
* // SecondsBeforeTimeout: Number("int"),
|
|
128
128
|
* // },
|
|
129
|
+
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
|
|
130
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
131
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
132
|
+
* // },
|
|
129
133
|
* // DeletionProtection: true || false,
|
|
130
134
|
* // HttpEndpointEnabled: true || false,
|
|
131
135
|
* // ActivityStreamMode: "sync" || "async",
|
|
@@ -170,6 +174,10 @@ export interface StartDBClusterCommandOutput extends StartDBClusterResult, __Met
|
|
|
170
174
|
* // EngineVersion: "STRING_VALUE",
|
|
171
175
|
* // BackupRetentionPeriod: Number("int"),
|
|
172
176
|
* // AllocatedStorage: Number("int"),
|
|
177
|
+
* // RdsCustomClusterConfiguration: {
|
|
178
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
179
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
180
|
+
* // },
|
|
173
181
|
* // Iops: Number("int"),
|
|
174
182
|
* // StorageType: "STRING_VALUE",
|
|
175
183
|
* // },
|
|
@@ -127,6 +127,10 @@ export interface StopDBClusterCommandOutput extends StopDBClusterResult, __Metad
|
|
|
127
127
|
* // TimeoutAction: "STRING_VALUE",
|
|
128
128
|
* // SecondsBeforeTimeout: Number("int"),
|
|
129
129
|
* // },
|
|
130
|
+
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
|
|
131
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
132
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
133
|
+
* // },
|
|
130
134
|
* // DeletionProtection: true || false,
|
|
131
135
|
* // HttpEndpointEnabled: true || false,
|
|
132
136
|
* // ActivityStreamMode: "sync" || "async",
|
|
@@ -171,6 +175,10 @@ export interface StopDBClusterCommandOutput extends StopDBClusterResult, __Metad
|
|
|
171
175
|
* // EngineVersion: "STRING_VALUE",
|
|
172
176
|
* // BackupRetentionPeriod: Number("int"),
|
|
173
177
|
* // AllocatedStorage: Number("int"),
|
|
178
|
+
* // RdsCustomClusterConfiguration: {
|
|
179
|
+
* // InterconnectSubnetId: "STRING_VALUE",
|
|
180
|
+
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
|
|
181
|
+
* // },
|
|
174
182
|
* // Iops: Number("int"),
|
|
175
183
|
* // StorageType: "STRING_VALUE",
|
|
176
184
|
* // },
|
|
@@ -27,6 +27,7 @@ export * from "./CreateDBSnapshotCommand";
|
|
|
27
27
|
export * from "./CreateDBSubnetGroupCommand";
|
|
28
28
|
export * from "./CreateEventSubscriptionCommand";
|
|
29
29
|
export * from "./CreateGlobalClusterCommand";
|
|
30
|
+
export * from "./CreateIntegrationCommand";
|
|
30
31
|
export * from "./CreateOptionGroupCommand";
|
|
31
32
|
export * from "./DeleteBlueGreenDeploymentCommand";
|
|
32
33
|
export * from "./DeleteCustomDBEngineVersionCommand";
|
|
@@ -45,6 +46,7 @@ export * from "./DeleteDBSnapshotCommand";
|
|
|
45
46
|
export * from "./DeleteDBSubnetGroupCommand";
|
|
46
47
|
export * from "./DeleteEventSubscriptionCommand";
|
|
47
48
|
export * from "./DeleteGlobalClusterCommand";
|
|
49
|
+
export * from "./DeleteIntegrationCommand";
|
|
48
50
|
export * from "./DeleteOptionGroupCommand";
|
|
49
51
|
export * from "./DeregisterDBProxyTargetsCommand";
|
|
50
52
|
export * from "./DescribeAccountAttributesCommand";
|
|
@@ -79,6 +81,7 @@ export * from "./DescribeEventSubscriptionsCommand";
|
|
|
79
81
|
export * from "./DescribeEventsCommand";
|
|
80
82
|
export * from "./DescribeExportTasksCommand";
|
|
81
83
|
export * from "./DescribeGlobalClustersCommand";
|
|
84
|
+
export * from "./DescribeIntegrationsCommand";
|
|
82
85
|
export * from "./DescribeOptionGroupOptionsCommand";
|
|
83
86
|
export * from "./DescribeOptionGroupsCommand";
|
|
84
87
|
export * from "./DescribeOrderableDBInstanceOptionsCommand";
|