Skip to content

Commit fb8ad1a

Browse files
author
awstools
committed
feat(client-rds): This release adds support for option groups and replica enhancements to Amazon RDS Custom.
1 parent 61b32fe commit fb8ad1a

19 files changed

+358
-58
lines changed

clients/client-rds/src/commands/CopyDBClusterParameterGroupCommand.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ export interface CopyDBClusterParameterGroupCommandOutput extends CopyDBClusterP
3838
/**
3939
* @public
4040
* <p>Copies the specified DB cluster parameter group.</p>
41+
* <note>
42+
* <p>You can't copy a default DB cluster parameter group. Instead, create a new custom DB cluster parameter group, which copies
43+
* the default parameters and values for the specified DB cluster parameter group family.</p>
44+
* </note>
4145
* @example
4246
* Use a bare-bones client and the command you need to make an API call.
4347
* ```javascript

clients/client-rds/src/commands/CopyDBParameterGroupCommand.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ export interface CopyDBParameterGroupCommandOutput extends CopyDBParameterGroupR
3838
/**
3939
* @public
4040
* <p>Copies the specified DB parameter group.</p>
41+
* <note>
42+
* <p>You can't copy a default DB parameter group. Instead, create a new custom DB parameter group, which copies the default
43+
* parameters and values for the specified DB parameter group family.</p>
44+
* </note>
4145
* @example
4246
* Use a bare-bones client and the command you need to make an API call.
4347
* ```javascript

clients/client-rds/src/commands/CreateDBClusterCommand.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M
106106
* RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
107107
* InterconnectSubnetId: "STRING_VALUE",
108108
* TransitGatewayMulticastDomainId: "STRING_VALUE",
109+
* ReplicaMode: "open-read-only" || "mounted",
109110
* },
110111
* DeletionProtection: true || false,
111112
* GlobalClusterIdentifier: "STRING_VALUE",
@@ -176,6 +177,14 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M
176177
* // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
177178
* // "STRING_VALUE",
178179
* // ],
180+
* // StatusInfos: [ // DBClusterStatusInfoList
181+
* // { // DBClusterStatusInfo
182+
* // StatusType: "STRING_VALUE",
183+
* // Normal: true || false,
184+
* // Status: "STRING_VALUE",
185+
* // Message: "STRING_VALUE",
186+
* // },
187+
* // ],
179188
* // DBClusterMembers: [ // DBClusterMemberList
180189
* // { // DBClusterMember
181190
* // DBInstanceIdentifier: "STRING_VALUE",
@@ -224,6 +233,7 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M
224233
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
225234
* // InterconnectSubnetId: "STRING_VALUE",
226235
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
236+
* // ReplicaMode: "open-read-only" || "mounted",
227237
* // },
228238
* // DeletionProtection: true || false,
229239
* // HttpEndpointEnabled: true || false,
@@ -272,6 +282,7 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M
272282
* // RdsCustomClusterConfiguration: {
273283
* // InterconnectSubnetId: "STRING_VALUE",
274284
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
285+
* // ReplicaMode: "open-read-only" || "mounted",
275286
* // },
276287
* // Iops: Number("int"),
277288
* // StorageType: "STRING_VALUE",
@@ -356,6 +367,10 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M
356367
* @throws {@link InvalidDBInstanceStateFault} (client fault)
357368
* <p>The DB instance isn't in a valid state.</p>
358369
*
370+
* @throws {@link InvalidDBSubnetGroupFault} (client fault)
371+
* <p>The DBSubnetGroup doesn't belong to the same VPC as that of an existing
372+
* cross-region read replica of the same source instance.</p>
373+
*
359374
* @throws {@link InvalidDBSubnetGroupStateFault} (client fault)
360375
* <p>The DB subnet group cannot be deleted because it's in use.</p>
361376
*
@@ -372,6 +387,9 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M
372387
* @throws {@link KMSKeyNotAccessibleFault} (client fault)
373388
* <p>An error occurred accessing an Amazon Web Services KMS key.</p>
374389
*
390+
* @throws {@link OptionGroupNotFoundFault} (client fault)
391+
* <p>The specified option group could not be found.</p>
392+
*
375393
* @throws {@link StorageQuotaExceededFault} (client fault)
376394
* <p>The request would result in the user exceeding the allowed amount of storage
377395
* available across all DB instances.</p>

clients/client-rds/src/commands/DeleteDBClusterCommand.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,14 @@ export interface DeleteDBClusterCommandOutput extends DeleteDBClusterResult, __M
101101
* // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
102102
* // "STRING_VALUE",
103103
* // ],
104+
* // StatusInfos: [ // DBClusterStatusInfoList
105+
* // { // DBClusterStatusInfo
106+
* // StatusType: "STRING_VALUE",
107+
* // Normal: true || false,
108+
* // Status: "STRING_VALUE",
109+
* // Message: "STRING_VALUE",
110+
* // },
111+
* // ],
104112
* // DBClusterMembers: [ // DBClusterMemberList
105113
* // { // DBClusterMember
106114
* // DBInstanceIdentifier: "STRING_VALUE",
@@ -149,6 +157,7 @@ export interface DeleteDBClusterCommandOutput extends DeleteDBClusterResult, __M
149157
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
150158
* // InterconnectSubnetId: "STRING_VALUE",
151159
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
160+
* // ReplicaMode: "open-read-only" || "mounted",
152161
* // },
153162
* // DeletionProtection: true || false,
154163
* // HttpEndpointEnabled: true || false,
@@ -197,6 +206,7 @@ export interface DeleteDBClusterCommandOutput extends DeleteDBClusterResult, __M
197206
* // RdsCustomClusterConfiguration: {
198207
* // InterconnectSubnetId: "STRING_VALUE",
199208
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
209+
* // ReplicaMode: "open-read-only" || "mounted",
200210
* // },
201211
* // Iops: Number("int"),
202212
* // StorageType: "STRING_VALUE",

clients/client-rds/src/commands/DescribeDBClusterAutomatedBackupsCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ import {
1414
SMITHY_CONTEXT_KEY,
1515
} from "@smithy/types";
1616

17-
import { DBClusterAutomatedBackupMessage } from "../models/models_0";
18-
import { DescribeDBClusterAutomatedBackupsMessage } from "../models/models_1";
17+
import { DBClusterAutomatedBackupMessage, DescribeDBClusterAutomatedBackupsMessage } from "../models/models_1";
1918
import {
2019
de_DescribeDBClusterAutomatedBackupsCommand,
2120
se_DescribeDBClusterAutomatedBackupsCommand,

clients/client-rds/src/commands/DescribeDBClustersCommand.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,14 @@ export interface DescribeDBClustersCommandOutput extends DBClusterMessage, __Met
108108
* // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
109109
* // "STRING_VALUE",
110110
* // ],
111+
* // StatusInfos: [ // DBClusterStatusInfoList
112+
* // { // DBClusterStatusInfo
113+
* // StatusType: "STRING_VALUE",
114+
* // Normal: true || false,
115+
* // Status: "STRING_VALUE",
116+
* // Message: "STRING_VALUE",
117+
* // },
118+
* // ],
111119
* // DBClusterMembers: [ // DBClusterMemberList
112120
* // { // DBClusterMember
113121
* // DBInstanceIdentifier: "STRING_VALUE",
@@ -156,6 +164,7 @@ export interface DescribeDBClustersCommandOutput extends DBClusterMessage, __Met
156164
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
157165
* // InterconnectSubnetId: "STRING_VALUE",
158166
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
167+
* // ReplicaMode: "open-read-only" || "mounted",
159168
* // },
160169
* // DeletionProtection: true || false,
161170
* // HttpEndpointEnabled: true || false,
@@ -204,6 +213,7 @@ export interface DescribeDBClustersCommandOutput extends DBClusterMessage, __Met
204213
* // RdsCustomClusterConfiguration: {
205214
* // InterconnectSubnetId: "STRING_VALUE",
206215
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
216+
* // ReplicaMode: "open-read-only" || "mounted",
207217
* // },
208218
* // Iops: Number("int"),
209219
* // StorageType: "STRING_VALUE",

clients/client-rds/src/commands/FailoverDBClusterCommand.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,14 @@ export interface FailoverDBClusterCommandOutput extends FailoverDBClusterResult,
105105
* // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
106106
* // "STRING_VALUE",
107107
* // ],
108+
* // StatusInfos: [ // DBClusterStatusInfoList
109+
* // { // DBClusterStatusInfo
110+
* // StatusType: "STRING_VALUE",
111+
* // Normal: true || false,
112+
* // Status: "STRING_VALUE",
113+
* // Message: "STRING_VALUE",
114+
* // },
115+
* // ],
108116
* // DBClusterMembers: [ // DBClusterMemberList
109117
* // { // DBClusterMember
110118
* // DBInstanceIdentifier: "STRING_VALUE",
@@ -153,6 +161,7 @@ export interface FailoverDBClusterCommandOutput extends FailoverDBClusterResult,
153161
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
154162
* // InterconnectSubnetId: "STRING_VALUE",
155163
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
164+
* // ReplicaMode: "open-read-only" || "mounted",
156165
* // },
157166
* // DeletionProtection: true || false,
158167
* // HttpEndpointEnabled: true || false,
@@ -201,6 +210,7 @@ export interface FailoverDBClusterCommandOutput extends FailoverDBClusterResult,
201210
* // RdsCustomClusterConfiguration: {
202211
* // InterconnectSubnetId: "STRING_VALUE",
203212
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
213+
* // ReplicaMode: "open-read-only" || "mounted",
204214
* // },
205215
* // Iops: Number("int"),
206216
* // StorageType: "STRING_VALUE",

clients/client-rds/src/commands/ModifyDBClusterCommand.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,14 @@ export interface ModifyDBClusterCommandOutput extends ModifyDBClusterResult, __M
157157
* // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
158158
* // "STRING_VALUE",
159159
* // ],
160+
* // StatusInfos: [ // DBClusterStatusInfoList
161+
* // { // DBClusterStatusInfo
162+
* // StatusType: "STRING_VALUE",
163+
* // Normal: true || false,
164+
* // Status: "STRING_VALUE",
165+
* // Message: "STRING_VALUE",
166+
* // },
167+
* // ],
160168
* // DBClusterMembers: [ // DBClusterMemberList
161169
* // { // DBClusterMember
162170
* // DBInstanceIdentifier: "STRING_VALUE",
@@ -205,6 +213,7 @@ export interface ModifyDBClusterCommandOutput extends ModifyDBClusterResult, __M
205213
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
206214
* // InterconnectSubnetId: "STRING_VALUE",
207215
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
216+
* // ReplicaMode: "open-read-only" || "mounted",
208217
* // },
209218
* // DeletionProtection: true || false,
210219
* // HttpEndpointEnabled: true || false,
@@ -253,6 +262,7 @@ export interface ModifyDBClusterCommandOutput extends ModifyDBClusterResult, __M
253262
* // RdsCustomClusterConfiguration: {
254263
* // InterconnectSubnetId: "STRING_VALUE",
255264
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
265+
* // ReplicaMode: "open-read-only" || "mounted",
256266
* // },
257267
* // Iops: Number("int"),
258268
* // StorageType: "STRING_VALUE",
@@ -334,6 +344,9 @@ export interface ModifyDBClusterCommandOutput extends ModifyDBClusterResult, __M
334344
* <p>The DB subnet group doesn't cover all Availability Zones after it's
335345
* created because of users' change.</p>
336346
*
347+
* @throws {@link OptionGroupNotFoundFault} (client fault)
348+
* <p>The specified option group could not be found.</p>
349+
*
337350
* @throws {@link StorageQuotaExceededFault} (client fault)
338351
* <p>The request would result in the user exceeding the allowed amount of storage
339352
* available across all DB instances.</p>

clients/client-rds/src/commands/PromoteReadReplicaDBClusterCommand.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,14 @@ export interface PromoteReadReplicaDBClusterCommandOutput extends PromoteReadRep
8888
* // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
8989
* // "STRING_VALUE",
9090
* // ],
91+
* // StatusInfos: [ // DBClusterStatusInfoList
92+
* // { // DBClusterStatusInfo
93+
* // StatusType: "STRING_VALUE",
94+
* // Normal: true || false,
95+
* // Status: "STRING_VALUE",
96+
* // Message: "STRING_VALUE",
97+
* // },
98+
* // ],
9199
* // DBClusterMembers: [ // DBClusterMemberList
92100
* // { // DBClusterMember
93101
* // DBInstanceIdentifier: "STRING_VALUE",
@@ -136,6 +144,7 @@ export interface PromoteReadReplicaDBClusterCommandOutput extends PromoteReadRep
136144
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
137145
* // InterconnectSubnetId: "STRING_VALUE",
138146
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
147+
* // ReplicaMode: "open-read-only" || "mounted",
139148
* // },
140149
* // DeletionProtection: true || false,
141150
* // HttpEndpointEnabled: true || false,
@@ -184,6 +193,7 @@ export interface PromoteReadReplicaDBClusterCommandOutput extends PromoteReadRep
184193
* // RdsCustomClusterConfiguration: {
185194
* // InterconnectSubnetId: "STRING_VALUE",
186195
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
196+
* // ReplicaMode: "open-read-only" || "mounted",
187197
* // },
188198
* // Iops: Number("int"),
189199
* // StorageType: "STRING_VALUE",

clients/client-rds/src/commands/RebootDBClusterCommand.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,14 @@ export interface RebootDBClusterCommandOutput extends RebootDBClusterResult, __M
9898
* // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
9999
* // "STRING_VALUE",
100100
* // ],
101+
* // StatusInfos: [ // DBClusterStatusInfoList
102+
* // { // DBClusterStatusInfo
103+
* // StatusType: "STRING_VALUE",
104+
* // Normal: true || false,
105+
* // Status: "STRING_VALUE",
106+
* // Message: "STRING_VALUE",
107+
* // },
108+
* // ],
101109
* // DBClusterMembers: [ // DBClusterMemberList
102110
* // { // DBClusterMember
103111
* // DBInstanceIdentifier: "STRING_VALUE",
@@ -146,6 +154,7 @@ export interface RebootDBClusterCommandOutput extends RebootDBClusterResult, __M
146154
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
147155
* // InterconnectSubnetId: "STRING_VALUE",
148156
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
157+
* // ReplicaMode: "open-read-only" || "mounted",
149158
* // },
150159
* // DeletionProtection: true || false,
151160
* // HttpEndpointEnabled: true || false,
@@ -194,6 +203,7 @@ export interface RebootDBClusterCommandOutput extends RebootDBClusterResult, __M
194203
* // RdsCustomClusterConfiguration: {
195204
* // InterconnectSubnetId: "STRING_VALUE",
196205
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
206+
* // ReplicaMode: "open-read-only" || "mounted",
197207
* // },
198208
* // Iops: Number("int"),
199209
* // StorageType: "STRING_VALUE",

clients/client-rds/src/commands/RestoreDBClusterFromS3Command.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,14 @@ export interface RestoreDBClusterFromS3CommandOutput extends RestoreDBClusterFro
154154
* // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
155155
* // "STRING_VALUE",
156156
* // ],
157+
* // StatusInfos: [ // DBClusterStatusInfoList
158+
* // { // DBClusterStatusInfo
159+
* // StatusType: "STRING_VALUE",
160+
* // Normal: true || false,
161+
* // Status: "STRING_VALUE",
162+
* // Message: "STRING_VALUE",
163+
* // },
164+
* // ],
157165
* // DBClusterMembers: [ // DBClusterMemberList
158166
* // { // DBClusterMember
159167
* // DBInstanceIdentifier: "STRING_VALUE",
@@ -202,6 +210,7 @@ export interface RestoreDBClusterFromS3CommandOutput extends RestoreDBClusterFro
202210
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
203211
* // InterconnectSubnetId: "STRING_VALUE",
204212
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
213+
* // ReplicaMode: "open-read-only" || "mounted",
205214
* // },
206215
* // DeletionProtection: true || false,
207216
* // HttpEndpointEnabled: true || false,
@@ -250,6 +259,7 @@ export interface RestoreDBClusterFromS3CommandOutput extends RestoreDBClusterFro
250259
* // RdsCustomClusterConfiguration: {
251260
* // InterconnectSubnetId: "STRING_VALUE",
252261
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
262+
* // ReplicaMode: "open-read-only" || "mounted",
253263
* // },
254264
* // Iops: Number("int"),
255265
* // StorageType: "STRING_VALUE",

clients/client-rds/src/commands/RestoreDBClusterFromSnapshotCommand.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ export interface RestoreDBClusterFromSnapshotCommandOutput
117117
* RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
118118
* InterconnectSubnetId: "STRING_VALUE",
119119
* TransitGatewayMulticastDomainId: "STRING_VALUE",
120+
* ReplicaMode: "open-read-only" || "mounted",
120121
* },
121122
* };
122123
* const command = new RestoreDBClusterFromSnapshotCommand(input);
@@ -160,6 +161,14 @@ export interface RestoreDBClusterFromSnapshotCommandOutput
160161
* // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
161162
* // "STRING_VALUE",
162163
* // ],
164+
* // StatusInfos: [ // DBClusterStatusInfoList
165+
* // { // DBClusterStatusInfo
166+
* // StatusType: "STRING_VALUE",
167+
* // Normal: true || false,
168+
* // Status: "STRING_VALUE",
169+
* // Message: "STRING_VALUE",
170+
* // },
171+
* // ],
163172
* // DBClusterMembers: [ // DBClusterMemberList
164173
* // { // DBClusterMember
165174
* // DBInstanceIdentifier: "STRING_VALUE",
@@ -208,6 +217,7 @@ export interface RestoreDBClusterFromSnapshotCommandOutput
208217
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
209218
* // InterconnectSubnetId: "STRING_VALUE",
210219
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
220+
* // ReplicaMode: "open-read-only" || "mounted",
211221
* // },
212222
* // DeletionProtection: true || false,
213223
* // HttpEndpointEnabled: true || false,
@@ -256,6 +266,7 @@ export interface RestoreDBClusterFromSnapshotCommandOutput
256266
* // RdsCustomClusterConfiguration: {
257267
* // InterconnectSubnetId: "STRING_VALUE",
258268
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
269+
* // ReplicaMode: "open-read-only" || "mounted",
259270
* // },
260271
* // Iops: Number("int"),
261272
* // StorageType: "STRING_VALUE",

clients/client-rds/src/commands/RestoreDBClusterToPointInTimeCommand.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ export interface RestoreDBClusterToPointInTimeCommandOutput
119119
* RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
120120
* InterconnectSubnetId: "STRING_VALUE",
121121
* TransitGatewayMulticastDomainId: "STRING_VALUE",
122+
* ReplicaMode: "open-read-only" || "mounted",
122123
* },
123124
* };
124125
* const command = new RestoreDBClusterToPointInTimeCommand(input);
@@ -162,6 +163,14 @@ export interface RestoreDBClusterToPointInTimeCommandOutput
162163
* // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
163164
* // "STRING_VALUE",
164165
* // ],
166+
* // StatusInfos: [ // DBClusterStatusInfoList
167+
* // { // DBClusterStatusInfo
168+
* // StatusType: "STRING_VALUE",
169+
* // Normal: true || false,
170+
* // Status: "STRING_VALUE",
171+
* // Message: "STRING_VALUE",
172+
* // },
173+
* // ],
165174
* // DBClusterMembers: [ // DBClusterMemberList
166175
* // { // DBClusterMember
167176
* // DBInstanceIdentifier: "STRING_VALUE",
@@ -210,6 +219,7 @@ export interface RestoreDBClusterToPointInTimeCommandOutput
210219
* // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
211220
* // InterconnectSubnetId: "STRING_VALUE",
212221
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
222+
* // ReplicaMode: "open-read-only" || "mounted",
213223
* // },
214224
* // DeletionProtection: true || false,
215225
* // HttpEndpointEnabled: true || false,
@@ -258,6 +268,7 @@ export interface RestoreDBClusterToPointInTimeCommandOutput
258268
* // RdsCustomClusterConfiguration: {
259269
* // InterconnectSubnetId: "STRING_VALUE",
260270
* // TransitGatewayMulticastDomainId: "STRING_VALUE",
271+
* // ReplicaMode: "open-read-only" || "mounted",
261272
* // },
262273
* // Iops: Number("int"),
263274
* // StorageType: "STRING_VALUE",

0 commit comments

Comments
 (0)