@aws-sdk/client-rds 3.439.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.
@@ -9522,6 +9522,13 @@ const se_CreateDBClusterMessage = (input, context) => {
9522
9522
  entries[loc] = value;
9523
9523
  });
9524
9524
  }
9525
+ if (input.RdsCustomClusterConfiguration != null) {
9526
+ const memberEntries = se_RdsCustomClusterConfiguration(input.RdsCustomClusterConfiguration, context);
9527
+ Object.entries(memberEntries).forEach(([key, value]) => {
9528
+ const loc = `RdsCustomClusterConfiguration.${key}`;
9529
+ entries[loc] = value;
9530
+ });
9531
+ }
9525
9532
  if (input.DeletionProtection != null) {
9526
9533
  entries["DeletionProtection"] = input.DeletionProtection;
9527
9534
  }
@@ -12758,6 +12765,16 @@ const se_PurchaseReservedDBInstancesOfferingMessage = (input, context) => {
12758
12765
  }
12759
12766
  return entries;
12760
12767
  };
12768
+ const se_RdsCustomClusterConfiguration = (input, context) => {
12769
+ const entries = {};
12770
+ if (input.InterconnectSubnetId != null) {
12771
+ entries["InterconnectSubnetId"] = input.InterconnectSubnetId;
12772
+ }
12773
+ if (input.TransitGatewayMulticastDomainId != null) {
12774
+ entries["TransitGatewayMulticastDomainId"] = input.TransitGatewayMulticastDomainId;
12775
+ }
12776
+ return entries;
12777
+ };
12761
12778
  const se_RebootDBClusterMessage = (input, context) => {
12762
12779
  const entries = {};
12763
12780
  if (input.DBClusterIdentifier != null) {
@@ -13174,6 +13191,13 @@ const se_RestoreDBClusterFromSnapshotMessage = (input, context) => {
13174
13191
  if (input.NetworkType != null) {
13175
13192
  entries["NetworkType"] = input.NetworkType;
13176
13193
  }
13194
+ if (input.RdsCustomClusterConfiguration != null) {
13195
+ const memberEntries = se_RdsCustomClusterConfiguration(input.RdsCustomClusterConfiguration, context);
13196
+ Object.entries(memberEntries).forEach(([key, value]) => {
13197
+ const loc = `RdsCustomClusterConfiguration.${key}`;
13198
+ entries[loc] = value;
13199
+ });
13200
+ }
13177
13201
  return entries;
13178
13202
  };
13179
13203
  const se_RestoreDBClusterToPointInTimeMessage = (input, context) => {
@@ -13291,6 +13315,13 @@ const se_RestoreDBClusterToPointInTimeMessage = (input, context) => {
13291
13315
  if (input.SourceDbClusterResourceId != null) {
13292
13316
  entries["SourceDbClusterResourceId"] = input.SourceDbClusterResourceId;
13293
13317
  }
13318
+ if (input.RdsCustomClusterConfiguration != null) {
13319
+ const memberEntries = se_RdsCustomClusterConfiguration(input.RdsCustomClusterConfiguration, context);
13320
+ Object.entries(memberEntries).forEach(([key, value]) => {
13321
+ const loc = `RdsCustomClusterConfiguration.${key}`;
13322
+ entries[loc] = value;
13323
+ });
13324
+ }
13294
13325
  return entries;
13295
13326
  };
13296
13327
  const se_RestoreDBInstanceFromDBSnapshotMessage = (input, context) => {
@@ -14438,6 +14469,9 @@ const de_ClusterPendingModifiedValues = (output, context) => {
14438
14469
  if (output["AllocatedStorage"] !== undefined) {
14439
14470
  contents.AllocatedStorage = (0, smithy_client_1.strictParseInt32)(output["AllocatedStorage"]);
14440
14471
  }
14472
+ if (output["RdsCustomClusterConfiguration"] !== undefined) {
14473
+ contents.RdsCustomClusterConfiguration = de_RdsCustomClusterConfiguration(output["RdsCustomClusterConfiguration"], context);
14474
+ }
14441
14475
  if (output["Iops"] !== undefined) {
14442
14476
  contents.Iops = (0, smithy_client_1.strictParseInt32)(output["Iops"]);
14443
14477
  }
@@ -14816,6 +14850,9 @@ const de_DBCluster = (output, context) => {
14816
14850
  if (output["ScalingConfigurationInfo"] !== undefined) {
14817
14851
  contents.ScalingConfigurationInfo = de_ScalingConfigurationInfo(output["ScalingConfigurationInfo"], context);
14818
14852
  }
14853
+ if (output["RdsCustomClusterConfiguration"] !== undefined) {
14854
+ contents.RdsCustomClusterConfiguration = de_RdsCustomClusterConfiguration(output["RdsCustomClusterConfiguration"], context);
14855
+ }
14819
14856
  if (output["DeletionProtection"] !== undefined) {
14820
14857
  contents.DeletionProtection = (0, smithy_client_1.parseBoolean)(output["DeletionProtection"]);
14821
14858
  }
@@ -18988,6 +19025,16 @@ const de_RangeList = (output, context) => {
18988
19025
  return de_Range(entry, context);
18989
19026
  });
18990
19027
  };
19028
+ const de_RdsCustomClusterConfiguration = (output, context) => {
19029
+ const contents = {};
19030
+ if (output["InterconnectSubnetId"] !== undefined) {
19031
+ contents.InterconnectSubnetId = (0, smithy_client_1.expectString)(output["InterconnectSubnetId"]);
19032
+ }
19033
+ if (output["TransitGatewayMulticastDomainId"] !== undefined) {
19034
+ contents.TransitGatewayMulticastDomainId = (0, smithy_client_1.expectString)(output["TransitGatewayMulticastDomainId"]);
19035
+ }
19036
+ return contents;
19037
+ };
18991
19038
  const de_ReadersArnList = (output, context) => {
18992
19039
  return (output || [])
18993
19040
  .filter((e) => e != null)
@@ -9220,6 +9220,13 @@ const se_CreateDBClusterMessage = (input, context) => {
9220
9220
  entries[loc] = value;
9221
9221
  });
9222
9222
  }
9223
+ if (input.RdsCustomClusterConfiguration != null) {
9224
+ const memberEntries = se_RdsCustomClusterConfiguration(input.RdsCustomClusterConfiguration, context);
9225
+ Object.entries(memberEntries).forEach(([key, value]) => {
9226
+ const loc = `RdsCustomClusterConfiguration.${key}`;
9227
+ entries[loc] = value;
9228
+ });
9229
+ }
9223
9230
  if (input.DeletionProtection != null) {
9224
9231
  entries["DeletionProtection"] = input.DeletionProtection;
9225
9232
  }
@@ -12456,6 +12463,16 @@ const se_PurchaseReservedDBInstancesOfferingMessage = (input, context) => {
12456
12463
  }
12457
12464
  return entries;
12458
12465
  };
12466
+ const se_RdsCustomClusterConfiguration = (input, context) => {
12467
+ const entries = {};
12468
+ if (input.InterconnectSubnetId != null) {
12469
+ entries["InterconnectSubnetId"] = input.InterconnectSubnetId;
12470
+ }
12471
+ if (input.TransitGatewayMulticastDomainId != null) {
12472
+ entries["TransitGatewayMulticastDomainId"] = input.TransitGatewayMulticastDomainId;
12473
+ }
12474
+ return entries;
12475
+ };
12459
12476
  const se_RebootDBClusterMessage = (input, context) => {
12460
12477
  const entries = {};
12461
12478
  if (input.DBClusterIdentifier != null) {
@@ -12872,6 +12889,13 @@ const se_RestoreDBClusterFromSnapshotMessage = (input, context) => {
12872
12889
  if (input.NetworkType != null) {
12873
12890
  entries["NetworkType"] = input.NetworkType;
12874
12891
  }
12892
+ if (input.RdsCustomClusterConfiguration != null) {
12893
+ const memberEntries = se_RdsCustomClusterConfiguration(input.RdsCustomClusterConfiguration, context);
12894
+ Object.entries(memberEntries).forEach(([key, value]) => {
12895
+ const loc = `RdsCustomClusterConfiguration.${key}`;
12896
+ entries[loc] = value;
12897
+ });
12898
+ }
12875
12899
  return entries;
12876
12900
  };
12877
12901
  const se_RestoreDBClusterToPointInTimeMessage = (input, context) => {
@@ -12989,6 +13013,13 @@ const se_RestoreDBClusterToPointInTimeMessage = (input, context) => {
12989
13013
  if (input.SourceDbClusterResourceId != null) {
12990
13014
  entries["SourceDbClusterResourceId"] = input.SourceDbClusterResourceId;
12991
13015
  }
13016
+ if (input.RdsCustomClusterConfiguration != null) {
13017
+ const memberEntries = se_RdsCustomClusterConfiguration(input.RdsCustomClusterConfiguration, context);
13018
+ Object.entries(memberEntries).forEach(([key, value]) => {
13019
+ const loc = `RdsCustomClusterConfiguration.${key}`;
13020
+ entries[loc] = value;
13021
+ });
13022
+ }
12992
13023
  return entries;
12993
13024
  };
12994
13025
  const se_RestoreDBInstanceFromDBSnapshotMessage = (input, context) => {
@@ -14136,6 +14167,9 @@ const de_ClusterPendingModifiedValues = (output, context) => {
14136
14167
  if (output["AllocatedStorage"] !== undefined) {
14137
14168
  contents.AllocatedStorage = __strictParseInt32(output["AllocatedStorage"]);
14138
14169
  }
14170
+ if (output["RdsCustomClusterConfiguration"] !== undefined) {
14171
+ contents.RdsCustomClusterConfiguration = de_RdsCustomClusterConfiguration(output["RdsCustomClusterConfiguration"], context);
14172
+ }
14139
14173
  if (output["Iops"] !== undefined) {
14140
14174
  contents.Iops = __strictParseInt32(output["Iops"]);
14141
14175
  }
@@ -14514,6 +14548,9 @@ const de_DBCluster = (output, context) => {
14514
14548
  if (output["ScalingConfigurationInfo"] !== undefined) {
14515
14549
  contents.ScalingConfigurationInfo = de_ScalingConfigurationInfo(output["ScalingConfigurationInfo"], context);
14516
14550
  }
14551
+ if (output["RdsCustomClusterConfiguration"] !== undefined) {
14552
+ contents.RdsCustomClusterConfiguration = de_RdsCustomClusterConfiguration(output["RdsCustomClusterConfiguration"], context);
14553
+ }
14517
14554
  if (output["DeletionProtection"] !== undefined) {
14518
14555
  contents.DeletionProtection = __parseBoolean(output["DeletionProtection"]);
14519
14556
  }
@@ -18686,6 +18723,16 @@ const de_RangeList = (output, context) => {
18686
18723
  return de_Range(entry, context);
18687
18724
  });
18688
18725
  };
18726
+ const de_RdsCustomClusterConfiguration = (output, context) => {
18727
+ const contents = {};
18728
+ if (output["InterconnectSubnetId"] !== undefined) {
18729
+ contents.InterconnectSubnetId = __expectString(output["InterconnectSubnetId"]);
18730
+ }
18731
+ if (output["TransitGatewayMulticastDomainId"] !== undefined) {
18732
+ contents.TransitGatewayMulticastDomainId = __expectString(output["TransitGatewayMulticastDomainId"]);
18733
+ }
18734
+ return contents;
18735
+ };
18689
18736
  const de_ReadersArnList = (output, context) => {
18690
18737
  return (output || [])
18691
18738
  .filter((e) => e != null)
@@ -88,6 +88,10 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M
88
88
  * TimeoutAction: "STRING_VALUE",
89
89
  * SecondsBeforeTimeout: Number("int"),
90
90
  * },
91
+ * RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
92
+ * InterconnectSubnetId: "STRING_VALUE",
93
+ * TransitGatewayMulticastDomainId: "STRING_VALUE",
94
+ * },
91
95
  * DeletionProtection: true || false,
92
96
  * GlobalClusterIdentifier: "STRING_VALUE",
93
97
  * EnableHttpEndpoint: true || false,
@@ -202,6 +206,10 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M
202
206
  * // TimeoutAction: "STRING_VALUE",
203
207
  * // SecondsBeforeTimeout: Number("int"),
204
208
  * // },
209
+ * // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
210
+ * // InterconnectSubnetId: "STRING_VALUE",
211
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
212
+ * // },
205
213
  * // DeletionProtection: true || false,
206
214
  * // HttpEndpointEnabled: true || false,
207
215
  * // ActivityStreamMode: "sync" || "async",
@@ -246,6 +254,10 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M
246
254
  * // EngineVersion: "STRING_VALUE",
247
255
  * // BackupRetentionPeriod: Number("int"),
248
256
  * // AllocatedStorage: Number("int"),
257
+ * // RdsCustomClusterConfiguration: {
258
+ * // InterconnectSubnetId: "STRING_VALUE",
259
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
260
+ * // },
249
261
  * // Iops: Number("int"),
250
262
  * // StorageType: "STRING_VALUE",
251
263
  * // },
@@ -132,6 +132,10 @@ export interface DeleteDBClusterCommandOutput extends DeleteDBClusterResult, __M
132
132
  * // TimeoutAction: "STRING_VALUE",
133
133
  * // SecondsBeforeTimeout: Number("int"),
134
134
  * // },
135
+ * // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
136
+ * // InterconnectSubnetId: "STRING_VALUE",
137
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
138
+ * // },
135
139
  * // DeletionProtection: true || false,
136
140
  * // HttpEndpointEnabled: true || false,
137
141
  * // ActivityStreamMode: "sync" || "async",
@@ -176,6 +180,10 @@ export interface DeleteDBClusterCommandOutput extends DeleteDBClusterResult, __M
176
180
  * // EngineVersion: "STRING_VALUE",
177
181
  * // BackupRetentionPeriod: Number("int"),
178
182
  * // AllocatedStorage: Number("int"),
183
+ * // RdsCustomClusterConfiguration: {
184
+ * // InterconnectSubnetId: "STRING_VALUE",
185
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
186
+ * // },
179
187
  * // Iops: Number("int"),
180
188
  * // StorageType: "STRING_VALUE",
181
189
  * // },
@@ -1,8 +1,7 @@
1
1
  import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
- import { DBClusterParameterGroupDetails } from "../models/models_0";
5
- import { DescribeDBClusterParametersMessage } from "../models/models_1";
4
+ import { DBClusterParameterGroupDetails, DescribeDBClusterParametersMessage } from "../models/models_1";
6
5
  import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
7
6
  /**
8
7
  * @public
@@ -139,6 +139,10 @@ export interface DescribeDBClustersCommandOutput extends DBClusterMessage, __Met
139
139
  * // TimeoutAction: "STRING_VALUE",
140
140
  * // SecondsBeforeTimeout: Number("int"),
141
141
  * // },
142
+ * // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
143
+ * // InterconnectSubnetId: "STRING_VALUE",
144
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
145
+ * // },
142
146
  * // DeletionProtection: true || false,
143
147
  * // HttpEndpointEnabled: true || false,
144
148
  * // ActivityStreamMode: "sync" || "async",
@@ -183,6 +187,10 @@ export interface DescribeDBClustersCommandOutput extends DBClusterMessage, __Met
183
187
  * // EngineVersion: "STRING_VALUE",
184
188
  * // BackupRetentionPeriod: Number("int"),
185
189
  * // AllocatedStorage: Number("int"),
190
+ * // RdsCustomClusterConfiguration: {
191
+ * // InterconnectSubnetId: "STRING_VALUE",
192
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
193
+ * // },
186
194
  * // Iops: Number("int"),
187
195
  * // StorageType: "STRING_VALUE",
188
196
  * // },
@@ -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
  * // },
@@ -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
  * // },
@@ -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
  * // },
@@ -3437,6 +3437,22 @@ export declare class Ec2ImagePropertiesNotSupportedFault extends __BaseException
3437
3437
  */
3438
3438
  constructor(opts: __ExceptionOptionType<Ec2ImagePropertiesNotSupportedFault, __BaseException>);
3439
3439
  }
3440
+ /**
3441
+ * @public
3442
+ * <p>Reserved for future use.</p>
3443
+ */
3444
+ export interface RdsCustomClusterConfiguration {
3445
+ /**
3446
+ * @public
3447
+ * <p>Reserved for future use.</p>
3448
+ */
3449
+ InterconnectSubnetId?: string;
3450
+ /**
3451
+ * @public
3452
+ * <p>Reserved for future use.</p>
3453
+ */
3454
+ TransitGatewayMulticastDomainId?: string;
3455
+ }
3440
3456
  /**
3441
3457
  * @public
3442
3458
  * <p>Contains the scaling configuration of an Aurora Serverless v1 DB cluster.</p>
@@ -3961,6 +3977,11 @@ export interface CreateDBClusterMessage {
3961
3977
  * <p>Valid for Cluster Type: Aurora DB clusters only</p>
3962
3978
  */
3963
3979
  ScalingConfiguration?: ScalingConfiguration;
3980
+ /**
3981
+ * @public
3982
+ * <p>Reserved for future use.</p>
3983
+ */
3984
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
3964
3985
  /**
3965
3986
  * @public
3966
3987
  * <p>Specifies whether the DB cluster has deletion protection enabled.
@@ -4530,6 +4551,11 @@ export interface ClusterPendingModifiedValues {
4530
4551
  * instead automatically adjusts as needed.</p>
4531
4552
  */
4532
4553
  AllocatedStorage?: number;
4554
+ /**
4555
+ * @public
4556
+ * <p>Reserved for future use.</p>
4557
+ */
4558
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
4533
4559
  /**
4534
4560
  * @public
4535
4561
  * <p>The Provisioned IOPS (I/O operations per second) value. This setting is only for non-Aurora Multi-AZ DB clusters.</p>
@@ -4883,6 +4909,11 @@ export interface DBCluster {
4883
4909
  * <i>Amazon Aurora User Guide</i>.</p>
4884
4910
  */
4885
4911
  ScalingConfigurationInfo?: ScalingConfigurationInfo;
4912
+ /**
4913
+ * @public
4914
+ * <p>Reserved for future use.</p>
4915
+ */
4916
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
4886
4917
  /**
4887
4918
  * @public
4888
4919
  * <p>Indicates whether the DB cluster has deletion protection enabled.
@@ -12105,23 +12136,3 @@ export interface Parameter {
12105
12136
  */
12106
12137
  SupportedEngineModes?: string[];
12107
12138
  }
12108
- /**
12109
- * @public
12110
- * <p>Provides details about a DB cluster parameter group including the parameters in the DB cluster parameter group.</p>
12111
- */
12112
- export interface DBClusterParameterGroupDetails {
12113
- /**
12114
- * @public
12115
- * <p>Provides a list of parameters for the DB cluster parameter group.</p>
12116
- */
12117
- Parameters?: Parameter[];
12118
- /**
12119
- * @public
12120
- * <p>An optional pagination token provided by a previous
12121
- * <code>DescribeDBClusterParameters</code> request.
12122
- * If this parameter is specified, the response includes
12123
- * only records beyond the marker,
12124
- * up to the value specified by <code>MaxRecords</code>.</p>
12125
- */
12126
- Marker?: string;
12127
- }
@@ -1,6 +1,26 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, AutomationMode, AvailabilityZone, BlueGreenDeployment, Certificate, DBCluster, DBClusterSnapshot, DBEngineVersion, DBInstance, DBInstanceAutomatedBackup, DBParameterGroup, DBProxy, DBProxyEndpoint, DBSecurityGroup, DBSnapshot, DBSubnetGroup, EventSubscription, ExportSourceType, ExportTask, Filter, GlobalCluster, Integration, OptionGroup, OptionSetting, Parameter, ProcessorFeature, ReplicaMode, ResourcePendingMaintenanceActions, ScalingConfiguration, ServerlessV2ScalingConfiguration, Tag, UserAuthConfig } from "./models_0";
2
+ import { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, AutomationMode, AvailabilityZone, BlueGreenDeployment, Certificate, DBCluster, DBClusterSnapshot, DBEngineVersion, DBInstance, DBInstanceAutomatedBackup, DBParameterGroup, DBProxy, DBProxyEndpoint, DBSecurityGroup, DBSnapshot, DBSubnetGroup, EventSubscription, ExportSourceType, ExportTask, Filter, GlobalCluster, Integration, OptionGroup, OptionSetting, Parameter, ProcessorFeature, RdsCustomClusterConfiguration, ReplicaMode, ResourcePendingMaintenanceActions, ScalingConfiguration, ServerlessV2ScalingConfiguration, Tag, UserAuthConfig } from "./models_0";
3
3
  import { RDSServiceException as __BaseException } from "./RDSServiceException";
4
+ /**
5
+ * @public
6
+ * <p>Provides details about a DB cluster parameter group including the parameters in the DB cluster parameter group.</p>
7
+ */
8
+ export interface DBClusterParameterGroupDetails {
9
+ /**
10
+ * @public
11
+ * <p>Provides a list of parameters for the DB cluster parameter group.</p>
12
+ */
13
+ Parameters?: Parameter[];
14
+ /**
15
+ * @public
16
+ * <p>An optional pagination token provided by a previous
17
+ * <code>DescribeDBClusterParameters</code> request.
18
+ * If this parameter is specified, the response includes
19
+ * only records beyond the marker,
20
+ * up to the value specified by <code>MaxRecords</code>.</p>
21
+ */
22
+ Marker?: string;
23
+ }
4
24
  /**
5
25
  * @public
6
26
  * <p></p>
@@ -8408,6 +8428,11 @@ export interface RestoreDBClusterFromSnapshotMessage {
8408
8428
  * <p>Valid for: Aurora DB clusters only</p>
8409
8429
  */
8410
8430
  NetworkType?: string;
8431
+ /**
8432
+ * @public
8433
+ * <p>Reserved for future use.</p>
8434
+ */
8435
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
8411
8436
  }
8412
8437
  /**
8413
8438
  * @public
@@ -8802,6 +8827,11 @@ export interface RestoreDBClusterToPointInTimeMessage {
8802
8827
  * <p>The resource ID of the source DB cluster from which to restore.</p>
8803
8828
  */
8804
8829
  SourceDbClusterResourceId?: string;
8830
+ /**
8831
+ * @public
8832
+ * <p>Reserved for future use.</p>
8833
+ */
8834
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
8805
8835
  }
8806
8836
  /**
8807
8837
  * @public
@@ -6,8 +6,10 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { DBClusterParameterGroupDetails } from "../models/models_0";
10
- import { DescribeDBClusterParametersMessage } from "../models/models_1";
9
+ import {
10
+ DBClusterParameterGroupDetails,
11
+ DescribeDBClusterParametersMessage,
12
+ } from "../models/models_1";
11
13
  import {
12
14
  RDSClientResolvedConfig,
13
15
  ServiceInputTypes,
@@ -824,6 +824,10 @@ export declare class Ec2ImagePropertiesNotSupportedFault extends __BaseException
824
824
  >
825
825
  );
826
826
  }
827
+ export interface RdsCustomClusterConfiguration {
828
+ InterconnectSubnetId?: string;
829
+ TransitGatewayMulticastDomainId?: string;
830
+ }
827
831
  export interface ScalingConfiguration {
828
832
  MinCapacity?: number;
829
833
  MaxCapacity?: number;
@@ -863,6 +867,7 @@ export interface CreateDBClusterMessage {
863
867
  EnableCloudwatchLogsExports?: string[];
864
868
  EngineMode?: string;
865
869
  ScalingConfiguration?: ScalingConfiguration;
870
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
866
871
  DeletionProtection?: boolean;
867
872
  GlobalClusterIdentifier?: string;
868
873
  EnableHttpEndpoint?: boolean;
@@ -947,6 +952,7 @@ export interface ClusterPendingModifiedValues {
947
952
  EngineVersion?: string;
948
953
  BackupRetentionPeriod?: number;
949
954
  AllocatedStorage?: number;
955
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
950
956
  Iops?: number;
951
957
  StorageType?: string;
952
958
  }
@@ -1007,6 +1013,7 @@ export interface DBCluster {
1007
1013
  Capacity?: number;
1008
1014
  EngineMode?: string;
1009
1015
  ScalingConfigurationInfo?: ScalingConfigurationInfo;
1016
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
1010
1017
  DeletionProtection?: boolean;
1011
1018
  HttpEndpointEnabled?: boolean;
1012
1019
  ActivityStreamMode?: ActivityStreamMode;
@@ -2445,7 +2452,3 @@ export interface Parameter {
2445
2452
  ApplyMethod?: ApplyMethod;
2446
2453
  SupportedEngineModes?: string[];
2447
2454
  }
2448
- export interface DBClusterParameterGroupDetails {
2449
- Parameters?: Parameter[];
2450
- Marker?: string;
2451
- }
@@ -28,6 +28,7 @@ import {
28
28
  OptionSetting,
29
29
  Parameter,
30
30
  ProcessorFeature,
31
+ RdsCustomClusterConfiguration,
31
32
  ReplicaMode,
32
33
  ResourcePendingMaintenanceActions,
33
34
  ScalingConfiguration,
@@ -36,6 +37,10 @@ import {
36
37
  UserAuthConfig,
37
38
  } from "./models_0";
38
39
  import { RDSServiceException as __BaseException } from "./RDSServiceException";
40
+ export interface DBClusterParameterGroupDetails {
41
+ Parameters?: Parameter[];
42
+ Marker?: string;
43
+ }
39
44
  export interface DescribeDBClusterParametersMessage {
40
45
  DBClusterParameterGroupName: string | undefined;
41
46
  Source?: string;
@@ -1287,6 +1292,7 @@ export interface RestoreDBClusterFromSnapshotMessage {
1287
1292
  PubliclyAccessible?: boolean;
1288
1293
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
1289
1294
  NetworkType?: string;
1295
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
1290
1296
  }
1291
1297
  export interface RestoreDBClusterFromSnapshotResult {
1292
1298
  DBCluster?: DBCluster;
@@ -1320,6 +1326,7 @@ export interface RestoreDBClusterToPointInTimeMessage {
1320
1326
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
1321
1327
  NetworkType?: string;
1322
1328
  SourceDbClusterResourceId?: string;
1329
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
1323
1330
  }
1324
1331
  export interface RestoreDBClusterToPointInTimeResult {
1325
1332
  DBCluster?: DBCluster;
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.439.0",
4
+ "version": "3.441.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.438.0",
25
- "@aws-sdk/core": "3.436.0",
26
- "@aws-sdk/credential-provider-node": "3.438.0",
24
+ "@aws-sdk/client-sts": "3.441.0",
25
+ "@aws-sdk/core": "3.441.0",
26
+ "@aws-sdk/credential-provider-node": "3.441.0",
27
27
  "@aws-sdk/middleware-host-header": "3.433.0",
28
28
  "@aws-sdk/middleware-logger": "3.433.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.433.0",