@aws-sdk/client-docdb 3.1074.0 → 3.1076.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/dist-cjs/index.js CHANGED
@@ -1,22 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultDocDBHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AddSourceIdentifierToSubscription$, AddTagsToResource$, ApplyPendingMaintenanceAction$, CopyDBClusterParameterGroup$, CopyDBClusterSnapshot$, CreateDBCluster$, CreateDBClusterParameterGroup$, CreateDBClusterSnapshot$, CreateDBInstance$, CreateDBSubnetGroup$, CreateEventSubscription$, CreateGlobalCluster$, DeleteDBCluster$, DeleteDBClusterParameterGroup$, DeleteDBClusterSnapshot$, DeleteDBInstance$, DeleteDBSubnetGroup$, DeleteEventSubscription$, DeleteGlobalCluster$, DescribeCertificates$, DescribeDBClusterParameterGroups$, DescribeDBClusterParameters$, DescribeDBClusters$, DescribeDBClusterSnapshotAttributes$, DescribeDBClusterSnapshots$, DescribeDBEngineVersions$, DescribeDBInstances$, DescribeDBSubnetGroups$, DescribeEngineDefaultClusterParameters$, DescribeEventCategories$, DescribeEvents$, DescribeEventSubscriptions$, DescribeGlobalClusters$, DescribeOrderableDBInstanceOptions$, DescribePendingMaintenanceActions$, FailoverDBCluster$, FailoverGlobalCluster$, ListTagsForResource$, ModifyDBCluster$, ModifyDBClusterParameterGroup$, ModifyDBClusterSnapshotAttribute$, ModifyDBInstance$, ModifyDBSubnetGroup$, ModifyEventSubscription$, ModifyGlobalCluster$, RebootDBInstance$, RemoveFromGlobalCluster$, RemoveSourceIdentifierFromSubscription$, RemoveTagsFromResource$, ResetDBClusterParameterGroup$, RestoreDBClusterFromSnapshot$, RestoreDBClusterToPointInTime$, StartDBCluster$, StopDBCluster$, SwitchoverGlobalCluster$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsQueryProtocol } = require("@aws-sdk/core/protocols");
16
16
  const { getCrossRegionPresignedUrlPlugin } = require("@aws-sdk/middleware-sdk-rds");
17
- __exportStar(require("./models/errors"), exports);
18
- const { DocDBServiceException } = require("./models/DocDBServiceException");
19
- exports.DocDBServiceException = DocDBServiceException;
17
+
18
+ const defaultDocDBHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "rds",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultDocDBHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
20
56
 
21
57
  const resolveClientEndpointParameters = (options) => {
22
58
  return Object.assign(options, {
@@ -32,6 +68,2728 @@ const commonParams = {
32
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
33
69
  };
34
70
 
71
+ var version = "3.1075.0";
72
+ var packageInfo = {
73
+ version: version};
74
+
75
+ const k = "ref";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [g]],
80
+ [c, j],
81
+ ["aws.partition", j, d],
82
+ [e, [{ [k]: "UseFIPS" }, b]],
83
+ [e, [{ [k]: "UseDualStack" }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
85
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
86
+ ["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
87
+ ],
88
+ results: [
89
+ [a],
90
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
91
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
92
+ [g, i],
93
+ ["https://rds-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
94
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
95
+ ["https://rds.{Region}.amazonaws.com", i],
96
+ ["https://rds-fips.{Region}.{PartitionResult#dnsSuffix}", i],
97
+ [a, "FIPS is enabled but this partition does not support FIPS"],
98
+ ["https://rds.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
99
+ [a, "DualStack is enabled but this partition does not support DualStack"],
100
+ ["https://rds.{Region}.{PartitionResult#dnsSuffix}", i],
101
+ [a, "Invalid Configuration: Missing Region"]
102
+ ]
103
+ };
104
+ const root = 2;
105
+ const r = 100_000_000;
106
+ const nodes = new Int32Array([
107
+ -1, 1, -1,
108
+ 0, 13, 3,
109
+ 1, 4, r + 12,
110
+ 2, 5, r + 12,
111
+ 3, 8, 6,
112
+ 4, 7, r + 11,
113
+ 5, r + 9, r + 10,
114
+ 4, 11, 9,
115
+ 6, 10, r + 8,
116
+ 7, r + 6, r + 7,
117
+ 5, 12, r + 5,
118
+ 6, r + 4, r + 5,
119
+ 3, r + 1, 14,
120
+ 4, r + 2, r + 3,
121
+ ]);
122
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
123
+
124
+ const cache = new EndpointCache({
125
+ size: 50,
126
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
127
+ });
128
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
129
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
130
+ endpointParams: endpointParams,
131
+ logger: context.logger,
132
+ }));
133
+ };
134
+ customEndpointFunctions.aws = awsEndpointFunctions;
135
+
136
+ class DocDBServiceException extends ServiceException {
137
+ constructor(options) {
138
+ super(options);
139
+ Object.setPrototypeOf(this, DocDBServiceException.prototype);
140
+ }
141
+ }
142
+
143
+ class SourceNotFoundFault extends DocDBServiceException {
144
+ name = "SourceNotFoundFault";
145
+ $fault = "client";
146
+ constructor(opts) {
147
+ super({
148
+ name: "SourceNotFoundFault",
149
+ $fault: "client",
150
+ ...opts,
151
+ });
152
+ Object.setPrototypeOf(this, SourceNotFoundFault.prototype);
153
+ }
154
+ }
155
+ class SubscriptionNotFoundFault extends DocDBServiceException {
156
+ name = "SubscriptionNotFoundFault";
157
+ $fault = "client";
158
+ constructor(opts) {
159
+ super({
160
+ name: "SubscriptionNotFoundFault",
161
+ $fault: "client",
162
+ ...opts,
163
+ });
164
+ Object.setPrototypeOf(this, SubscriptionNotFoundFault.prototype);
165
+ }
166
+ }
167
+ class DBClusterNotFoundFault extends DocDBServiceException {
168
+ name = "DBClusterNotFoundFault";
169
+ $fault = "client";
170
+ constructor(opts) {
171
+ super({
172
+ name: "DBClusterNotFoundFault",
173
+ $fault: "client",
174
+ ...opts,
175
+ });
176
+ Object.setPrototypeOf(this, DBClusterNotFoundFault.prototype);
177
+ }
178
+ }
179
+ class DBInstanceNotFoundFault extends DocDBServiceException {
180
+ name = "DBInstanceNotFoundFault";
181
+ $fault = "client";
182
+ constructor(opts) {
183
+ super({
184
+ name: "DBInstanceNotFoundFault",
185
+ $fault: "client",
186
+ ...opts,
187
+ });
188
+ Object.setPrototypeOf(this, DBInstanceNotFoundFault.prototype);
189
+ }
190
+ }
191
+ class DBSnapshotNotFoundFault extends DocDBServiceException {
192
+ name = "DBSnapshotNotFoundFault";
193
+ $fault = "client";
194
+ constructor(opts) {
195
+ super({
196
+ name: "DBSnapshotNotFoundFault",
197
+ $fault: "client",
198
+ ...opts,
199
+ });
200
+ Object.setPrototypeOf(this, DBSnapshotNotFoundFault.prototype);
201
+ }
202
+ }
203
+ class InvalidDBClusterStateFault extends DocDBServiceException {
204
+ name = "InvalidDBClusterStateFault";
205
+ $fault = "client";
206
+ constructor(opts) {
207
+ super({
208
+ name: "InvalidDBClusterStateFault",
209
+ $fault: "client",
210
+ ...opts,
211
+ });
212
+ Object.setPrototypeOf(this, InvalidDBClusterStateFault.prototype);
213
+ }
214
+ }
215
+ class InvalidDBInstanceStateFault extends DocDBServiceException {
216
+ name = "InvalidDBInstanceStateFault";
217
+ $fault = "client";
218
+ constructor(opts) {
219
+ super({
220
+ name: "InvalidDBInstanceStateFault",
221
+ $fault: "client",
222
+ ...opts,
223
+ });
224
+ Object.setPrototypeOf(this, InvalidDBInstanceStateFault.prototype);
225
+ }
226
+ }
227
+ class ResourceNotFoundFault extends DocDBServiceException {
228
+ name = "ResourceNotFoundFault";
229
+ $fault = "client";
230
+ constructor(opts) {
231
+ super({
232
+ name: "ResourceNotFoundFault",
233
+ $fault: "client",
234
+ ...opts,
235
+ });
236
+ Object.setPrototypeOf(this, ResourceNotFoundFault.prototype);
237
+ }
238
+ }
239
+ class DBParameterGroupAlreadyExistsFault extends DocDBServiceException {
240
+ name = "DBParameterGroupAlreadyExistsFault";
241
+ $fault = "client";
242
+ constructor(opts) {
243
+ super({
244
+ name: "DBParameterGroupAlreadyExistsFault",
245
+ $fault: "client",
246
+ ...opts,
247
+ });
248
+ Object.setPrototypeOf(this, DBParameterGroupAlreadyExistsFault.prototype);
249
+ }
250
+ }
251
+ class DBParameterGroupNotFoundFault extends DocDBServiceException {
252
+ name = "DBParameterGroupNotFoundFault";
253
+ $fault = "client";
254
+ constructor(opts) {
255
+ super({
256
+ name: "DBParameterGroupNotFoundFault",
257
+ $fault: "client",
258
+ ...opts,
259
+ });
260
+ Object.setPrototypeOf(this, DBParameterGroupNotFoundFault.prototype);
261
+ }
262
+ }
263
+ class DBParameterGroupQuotaExceededFault extends DocDBServiceException {
264
+ name = "DBParameterGroupQuotaExceededFault";
265
+ $fault = "client";
266
+ constructor(opts) {
267
+ super({
268
+ name: "DBParameterGroupQuotaExceededFault",
269
+ $fault: "client",
270
+ ...opts,
271
+ });
272
+ Object.setPrototypeOf(this, DBParameterGroupQuotaExceededFault.prototype);
273
+ }
274
+ }
275
+ class DBClusterSnapshotAlreadyExistsFault extends DocDBServiceException {
276
+ name = "DBClusterSnapshotAlreadyExistsFault";
277
+ $fault = "client";
278
+ constructor(opts) {
279
+ super({
280
+ name: "DBClusterSnapshotAlreadyExistsFault",
281
+ $fault: "client",
282
+ ...opts,
283
+ });
284
+ Object.setPrototypeOf(this, DBClusterSnapshotAlreadyExistsFault.prototype);
285
+ }
286
+ }
287
+ class DBClusterSnapshotNotFoundFault extends DocDBServiceException {
288
+ name = "DBClusterSnapshotNotFoundFault";
289
+ $fault = "client";
290
+ constructor(opts) {
291
+ super({
292
+ name: "DBClusterSnapshotNotFoundFault",
293
+ $fault: "client",
294
+ ...opts,
295
+ });
296
+ Object.setPrototypeOf(this, DBClusterSnapshotNotFoundFault.prototype);
297
+ }
298
+ }
299
+ class InvalidDBClusterSnapshotStateFault extends DocDBServiceException {
300
+ name = "InvalidDBClusterSnapshotStateFault";
301
+ $fault = "client";
302
+ constructor(opts) {
303
+ super({
304
+ name: "InvalidDBClusterSnapshotStateFault",
305
+ $fault: "client",
306
+ ...opts,
307
+ });
308
+ Object.setPrototypeOf(this, InvalidDBClusterSnapshotStateFault.prototype);
309
+ }
310
+ }
311
+ class KMSKeyNotAccessibleFault extends DocDBServiceException {
312
+ name = "KMSKeyNotAccessibleFault";
313
+ $fault = "client";
314
+ constructor(opts) {
315
+ super({
316
+ name: "KMSKeyNotAccessibleFault",
317
+ $fault: "client",
318
+ ...opts,
319
+ });
320
+ Object.setPrototypeOf(this, KMSKeyNotAccessibleFault.prototype);
321
+ }
322
+ }
323
+ class SnapshotQuotaExceededFault extends DocDBServiceException {
324
+ name = "SnapshotQuotaExceededFault";
325
+ $fault = "client";
326
+ constructor(opts) {
327
+ super({
328
+ name: "SnapshotQuotaExceededFault",
329
+ $fault: "client",
330
+ ...opts,
331
+ });
332
+ Object.setPrototypeOf(this, SnapshotQuotaExceededFault.prototype);
333
+ }
334
+ }
335
+ class DBClusterAlreadyExistsFault extends DocDBServiceException {
336
+ name = "DBClusterAlreadyExistsFault";
337
+ $fault = "client";
338
+ constructor(opts) {
339
+ super({
340
+ name: "DBClusterAlreadyExistsFault",
341
+ $fault: "client",
342
+ ...opts,
343
+ });
344
+ Object.setPrototypeOf(this, DBClusterAlreadyExistsFault.prototype);
345
+ }
346
+ }
347
+ class DBClusterParameterGroupNotFoundFault extends DocDBServiceException {
348
+ name = "DBClusterParameterGroupNotFoundFault";
349
+ $fault = "client";
350
+ constructor(opts) {
351
+ super({
352
+ name: "DBClusterParameterGroupNotFoundFault",
353
+ $fault: "client",
354
+ ...opts,
355
+ });
356
+ Object.setPrototypeOf(this, DBClusterParameterGroupNotFoundFault.prototype);
357
+ }
358
+ }
359
+ class DBClusterQuotaExceededFault extends DocDBServiceException {
360
+ name = "DBClusterQuotaExceededFault";
361
+ $fault = "client";
362
+ constructor(opts) {
363
+ super({
364
+ name: "DBClusterQuotaExceededFault",
365
+ $fault: "client",
366
+ ...opts,
367
+ });
368
+ Object.setPrototypeOf(this, DBClusterQuotaExceededFault.prototype);
369
+ }
370
+ }
371
+ class DBSubnetGroupDoesNotCoverEnoughAZs extends DocDBServiceException {
372
+ name = "DBSubnetGroupDoesNotCoverEnoughAZs";
373
+ $fault = "client";
374
+ constructor(opts) {
375
+ super({
376
+ name: "DBSubnetGroupDoesNotCoverEnoughAZs",
377
+ $fault: "client",
378
+ ...opts,
379
+ });
380
+ Object.setPrototypeOf(this, DBSubnetGroupDoesNotCoverEnoughAZs.prototype);
381
+ }
382
+ }
383
+ class DBSubnetGroupNotFoundFault extends DocDBServiceException {
384
+ name = "DBSubnetGroupNotFoundFault";
385
+ $fault = "client";
386
+ constructor(opts) {
387
+ super({
388
+ name: "DBSubnetGroupNotFoundFault",
389
+ $fault: "client",
390
+ ...opts,
391
+ });
392
+ Object.setPrototypeOf(this, DBSubnetGroupNotFoundFault.prototype);
393
+ }
394
+ }
395
+ class GlobalClusterNotFoundFault extends DocDBServiceException {
396
+ name = "GlobalClusterNotFoundFault";
397
+ $fault = "client";
398
+ constructor(opts) {
399
+ super({
400
+ name: "GlobalClusterNotFoundFault",
401
+ $fault: "client",
402
+ ...opts,
403
+ });
404
+ Object.setPrototypeOf(this, GlobalClusterNotFoundFault.prototype);
405
+ }
406
+ }
407
+ class InsufficientStorageClusterCapacityFault extends DocDBServiceException {
408
+ name = "InsufficientStorageClusterCapacityFault";
409
+ $fault = "client";
410
+ constructor(opts) {
411
+ super({
412
+ name: "InsufficientStorageClusterCapacityFault",
413
+ $fault: "client",
414
+ ...opts,
415
+ });
416
+ Object.setPrototypeOf(this, InsufficientStorageClusterCapacityFault.prototype);
417
+ }
418
+ }
419
+ class InvalidDBSubnetGroupStateFault extends DocDBServiceException {
420
+ name = "InvalidDBSubnetGroupStateFault";
421
+ $fault = "client";
422
+ constructor(opts) {
423
+ super({
424
+ name: "InvalidDBSubnetGroupStateFault",
425
+ $fault: "client",
426
+ ...opts,
427
+ });
428
+ Object.setPrototypeOf(this, InvalidDBSubnetGroupStateFault.prototype);
429
+ }
430
+ }
431
+ class InvalidGlobalClusterStateFault extends DocDBServiceException {
432
+ name = "InvalidGlobalClusterStateFault";
433
+ $fault = "client";
434
+ constructor(opts) {
435
+ super({
436
+ name: "InvalidGlobalClusterStateFault",
437
+ $fault: "client",
438
+ ...opts,
439
+ });
440
+ Object.setPrototypeOf(this, InvalidGlobalClusterStateFault.prototype);
441
+ }
442
+ }
443
+ class InvalidSubnet extends DocDBServiceException {
444
+ name = "InvalidSubnet";
445
+ $fault = "client";
446
+ constructor(opts) {
447
+ super({
448
+ name: "InvalidSubnet",
449
+ $fault: "client",
450
+ ...opts,
451
+ });
452
+ Object.setPrototypeOf(this, InvalidSubnet.prototype);
453
+ }
454
+ }
455
+ class InvalidVPCNetworkStateFault extends DocDBServiceException {
456
+ name = "InvalidVPCNetworkStateFault";
457
+ $fault = "client";
458
+ constructor(opts) {
459
+ super({
460
+ name: "InvalidVPCNetworkStateFault",
461
+ $fault: "client",
462
+ ...opts,
463
+ });
464
+ Object.setPrototypeOf(this, InvalidVPCNetworkStateFault.prototype);
465
+ }
466
+ }
467
+ class NetworkTypeNotSupported extends DocDBServiceException {
468
+ name = "NetworkTypeNotSupported";
469
+ $fault = "client";
470
+ constructor(opts) {
471
+ super({
472
+ name: "NetworkTypeNotSupported",
473
+ $fault: "client",
474
+ ...opts,
475
+ });
476
+ Object.setPrototypeOf(this, NetworkTypeNotSupported.prototype);
477
+ }
478
+ }
479
+ class StorageQuotaExceededFault extends DocDBServiceException {
480
+ name = "StorageQuotaExceededFault";
481
+ $fault = "client";
482
+ constructor(opts) {
483
+ super({
484
+ name: "StorageQuotaExceededFault",
485
+ $fault: "client",
486
+ ...opts,
487
+ });
488
+ Object.setPrototypeOf(this, StorageQuotaExceededFault.prototype);
489
+ }
490
+ }
491
+ class AuthorizationNotFoundFault extends DocDBServiceException {
492
+ name = "AuthorizationNotFoundFault";
493
+ $fault = "client";
494
+ constructor(opts) {
495
+ super({
496
+ name: "AuthorizationNotFoundFault",
497
+ $fault: "client",
498
+ ...opts,
499
+ });
500
+ Object.setPrototypeOf(this, AuthorizationNotFoundFault.prototype);
501
+ }
502
+ }
503
+ class DBInstanceAlreadyExistsFault extends DocDBServiceException {
504
+ name = "DBInstanceAlreadyExistsFault";
505
+ $fault = "client";
506
+ constructor(opts) {
507
+ super({
508
+ name: "DBInstanceAlreadyExistsFault",
509
+ $fault: "client",
510
+ ...opts,
511
+ });
512
+ Object.setPrototypeOf(this, DBInstanceAlreadyExistsFault.prototype);
513
+ }
514
+ }
515
+ class DBSecurityGroupNotFoundFault extends DocDBServiceException {
516
+ name = "DBSecurityGroupNotFoundFault";
517
+ $fault = "client";
518
+ constructor(opts) {
519
+ super({
520
+ name: "DBSecurityGroupNotFoundFault",
521
+ $fault: "client",
522
+ ...opts,
523
+ });
524
+ Object.setPrototypeOf(this, DBSecurityGroupNotFoundFault.prototype);
525
+ }
526
+ }
527
+ class InstanceQuotaExceededFault extends DocDBServiceException {
528
+ name = "InstanceQuotaExceededFault";
529
+ $fault = "client";
530
+ constructor(opts) {
531
+ super({
532
+ name: "InstanceQuotaExceededFault",
533
+ $fault: "client",
534
+ ...opts,
535
+ });
536
+ Object.setPrototypeOf(this, InstanceQuotaExceededFault.prototype);
537
+ }
538
+ }
539
+ class InsufficientDBInstanceCapacityFault extends DocDBServiceException {
540
+ name = "InsufficientDBInstanceCapacityFault";
541
+ $fault = "client";
542
+ constructor(opts) {
543
+ super({
544
+ name: "InsufficientDBInstanceCapacityFault",
545
+ $fault: "client",
546
+ ...opts,
547
+ });
548
+ Object.setPrototypeOf(this, InsufficientDBInstanceCapacityFault.prototype);
549
+ }
550
+ }
551
+ class StorageTypeNotSupportedFault extends DocDBServiceException {
552
+ name = "StorageTypeNotSupportedFault";
553
+ $fault = "client";
554
+ constructor(opts) {
555
+ super({
556
+ name: "StorageTypeNotSupportedFault",
557
+ $fault: "client",
558
+ ...opts,
559
+ });
560
+ Object.setPrototypeOf(this, StorageTypeNotSupportedFault.prototype);
561
+ }
562
+ }
563
+ class DBSubnetGroupAlreadyExistsFault extends DocDBServiceException {
564
+ name = "DBSubnetGroupAlreadyExistsFault";
565
+ $fault = "client";
566
+ constructor(opts) {
567
+ super({
568
+ name: "DBSubnetGroupAlreadyExistsFault",
569
+ $fault: "client",
570
+ ...opts,
571
+ });
572
+ Object.setPrototypeOf(this, DBSubnetGroupAlreadyExistsFault.prototype);
573
+ }
574
+ }
575
+ class DBSubnetGroupQuotaExceededFault extends DocDBServiceException {
576
+ name = "DBSubnetGroupQuotaExceededFault";
577
+ $fault = "client";
578
+ constructor(opts) {
579
+ super({
580
+ name: "DBSubnetGroupQuotaExceededFault",
581
+ $fault: "client",
582
+ ...opts,
583
+ });
584
+ Object.setPrototypeOf(this, DBSubnetGroupQuotaExceededFault.prototype);
585
+ }
586
+ }
587
+ class DBSubnetQuotaExceededFault extends DocDBServiceException {
588
+ name = "DBSubnetQuotaExceededFault";
589
+ $fault = "client";
590
+ constructor(opts) {
591
+ super({
592
+ name: "DBSubnetQuotaExceededFault",
593
+ $fault: "client",
594
+ ...opts,
595
+ });
596
+ Object.setPrototypeOf(this, DBSubnetQuotaExceededFault.prototype);
597
+ }
598
+ }
599
+ class EventSubscriptionQuotaExceededFault extends DocDBServiceException {
600
+ name = "EventSubscriptionQuotaExceededFault";
601
+ $fault = "client";
602
+ constructor(opts) {
603
+ super({
604
+ name: "EventSubscriptionQuotaExceededFault",
605
+ $fault: "client",
606
+ ...opts,
607
+ });
608
+ Object.setPrototypeOf(this, EventSubscriptionQuotaExceededFault.prototype);
609
+ }
610
+ }
611
+ class SNSInvalidTopicFault extends DocDBServiceException {
612
+ name = "SNSInvalidTopicFault";
613
+ $fault = "client";
614
+ constructor(opts) {
615
+ super({
616
+ name: "SNSInvalidTopicFault",
617
+ $fault: "client",
618
+ ...opts,
619
+ });
620
+ Object.setPrototypeOf(this, SNSInvalidTopicFault.prototype);
621
+ }
622
+ }
623
+ class SNSNoAuthorizationFault extends DocDBServiceException {
624
+ name = "SNSNoAuthorizationFault";
625
+ $fault = "client";
626
+ constructor(opts) {
627
+ super({
628
+ name: "SNSNoAuthorizationFault",
629
+ $fault: "client",
630
+ ...opts,
631
+ });
632
+ Object.setPrototypeOf(this, SNSNoAuthorizationFault.prototype);
633
+ }
634
+ }
635
+ class SNSTopicArnNotFoundFault extends DocDBServiceException {
636
+ name = "SNSTopicArnNotFoundFault";
637
+ $fault = "client";
638
+ constructor(opts) {
639
+ super({
640
+ name: "SNSTopicArnNotFoundFault",
641
+ $fault: "client",
642
+ ...opts,
643
+ });
644
+ Object.setPrototypeOf(this, SNSTopicArnNotFoundFault.prototype);
645
+ }
646
+ }
647
+ class SubscriptionAlreadyExistFault extends DocDBServiceException {
648
+ name = "SubscriptionAlreadyExistFault";
649
+ $fault = "client";
650
+ constructor(opts) {
651
+ super({
652
+ name: "SubscriptionAlreadyExistFault",
653
+ $fault: "client",
654
+ ...opts,
655
+ });
656
+ Object.setPrototypeOf(this, SubscriptionAlreadyExistFault.prototype);
657
+ }
658
+ }
659
+ class SubscriptionCategoryNotFoundFault extends DocDBServiceException {
660
+ name = "SubscriptionCategoryNotFoundFault";
661
+ $fault = "client";
662
+ constructor(opts) {
663
+ super({
664
+ name: "SubscriptionCategoryNotFoundFault",
665
+ $fault: "client",
666
+ ...opts,
667
+ });
668
+ Object.setPrototypeOf(this, SubscriptionCategoryNotFoundFault.prototype);
669
+ }
670
+ }
671
+ class GlobalClusterAlreadyExistsFault extends DocDBServiceException {
672
+ name = "GlobalClusterAlreadyExistsFault";
673
+ $fault = "client";
674
+ constructor(opts) {
675
+ super({
676
+ name: "GlobalClusterAlreadyExistsFault",
677
+ $fault: "client",
678
+ ...opts,
679
+ });
680
+ Object.setPrototypeOf(this, GlobalClusterAlreadyExistsFault.prototype);
681
+ }
682
+ }
683
+ class GlobalClusterQuotaExceededFault extends DocDBServiceException {
684
+ name = "GlobalClusterQuotaExceededFault";
685
+ $fault = "client";
686
+ constructor(opts) {
687
+ super({
688
+ name: "GlobalClusterQuotaExceededFault",
689
+ $fault: "client",
690
+ ...opts,
691
+ });
692
+ Object.setPrototypeOf(this, GlobalClusterQuotaExceededFault.prototype);
693
+ }
694
+ }
695
+ class InvalidDBParameterGroupStateFault extends DocDBServiceException {
696
+ name = "InvalidDBParameterGroupStateFault";
697
+ $fault = "client";
698
+ constructor(opts) {
699
+ super({
700
+ name: "InvalidDBParameterGroupStateFault",
701
+ $fault: "client",
702
+ ...opts,
703
+ });
704
+ Object.setPrototypeOf(this, InvalidDBParameterGroupStateFault.prototype);
705
+ }
706
+ }
707
+ class DBSnapshotAlreadyExistsFault extends DocDBServiceException {
708
+ name = "DBSnapshotAlreadyExistsFault";
709
+ $fault = "client";
710
+ constructor(opts) {
711
+ super({
712
+ name: "DBSnapshotAlreadyExistsFault",
713
+ $fault: "client",
714
+ ...opts,
715
+ });
716
+ Object.setPrototypeOf(this, DBSnapshotAlreadyExistsFault.prototype);
717
+ }
718
+ }
719
+ class InvalidDBSubnetStateFault extends DocDBServiceException {
720
+ name = "InvalidDBSubnetStateFault";
721
+ $fault = "client";
722
+ constructor(opts) {
723
+ super({
724
+ name: "InvalidDBSubnetStateFault",
725
+ $fault: "client",
726
+ ...opts,
727
+ });
728
+ Object.setPrototypeOf(this, InvalidDBSubnetStateFault.prototype);
729
+ }
730
+ }
731
+ class InvalidEventSubscriptionStateFault extends DocDBServiceException {
732
+ name = "InvalidEventSubscriptionStateFault";
733
+ $fault = "client";
734
+ constructor(opts) {
735
+ super({
736
+ name: "InvalidEventSubscriptionStateFault",
737
+ $fault: "client",
738
+ ...opts,
739
+ });
740
+ Object.setPrototypeOf(this, InvalidEventSubscriptionStateFault.prototype);
741
+ }
742
+ }
743
+ class CertificateNotFoundFault extends DocDBServiceException {
744
+ name = "CertificateNotFoundFault";
745
+ $fault = "client";
746
+ constructor(opts) {
747
+ super({
748
+ name: "CertificateNotFoundFault",
749
+ $fault: "client",
750
+ ...opts,
751
+ });
752
+ Object.setPrototypeOf(this, CertificateNotFoundFault.prototype);
753
+ }
754
+ }
755
+ class InvalidDBSecurityGroupStateFault extends DocDBServiceException {
756
+ name = "InvalidDBSecurityGroupStateFault";
757
+ $fault = "client";
758
+ constructor(opts) {
759
+ super({
760
+ name: "InvalidDBSecurityGroupStateFault",
761
+ $fault: "client",
762
+ ...opts,
763
+ });
764
+ Object.setPrototypeOf(this, InvalidDBSecurityGroupStateFault.prototype);
765
+ }
766
+ }
767
+ class SharedSnapshotQuotaExceededFault extends DocDBServiceException {
768
+ name = "SharedSnapshotQuotaExceededFault";
769
+ $fault = "client";
770
+ constructor(opts) {
771
+ super({
772
+ name: "SharedSnapshotQuotaExceededFault",
773
+ $fault: "client",
774
+ ...opts,
775
+ });
776
+ Object.setPrototypeOf(this, SharedSnapshotQuotaExceededFault.prototype);
777
+ }
778
+ }
779
+ class DBUpgradeDependencyFailureFault extends DocDBServiceException {
780
+ name = "DBUpgradeDependencyFailureFault";
781
+ $fault = "client";
782
+ constructor(opts) {
783
+ super({
784
+ name: "DBUpgradeDependencyFailureFault",
785
+ $fault: "client",
786
+ ...opts,
787
+ });
788
+ Object.setPrototypeOf(this, DBUpgradeDependencyFailureFault.prototype);
789
+ }
790
+ }
791
+ class SubnetAlreadyInUse extends DocDBServiceException {
792
+ name = "SubnetAlreadyInUse";
793
+ $fault = "client";
794
+ constructor(opts) {
795
+ super({
796
+ name: "SubnetAlreadyInUse",
797
+ $fault: "client",
798
+ ...opts,
799
+ });
800
+ Object.setPrototypeOf(this, SubnetAlreadyInUse.prototype);
801
+ }
802
+ }
803
+ class InsufficientDBClusterCapacityFault extends DocDBServiceException {
804
+ name = "InsufficientDBClusterCapacityFault";
805
+ $fault = "client";
806
+ constructor(opts) {
807
+ super({
808
+ name: "InsufficientDBClusterCapacityFault",
809
+ $fault: "client",
810
+ ...opts,
811
+ });
812
+ Object.setPrototypeOf(this, InsufficientDBClusterCapacityFault.prototype);
813
+ }
814
+ }
815
+ class InvalidDBSnapshotStateFault extends DocDBServiceException {
816
+ name = "InvalidDBSnapshotStateFault";
817
+ $fault = "client";
818
+ constructor(opts) {
819
+ super({
820
+ name: "InvalidDBSnapshotStateFault",
821
+ $fault: "client",
822
+ ...opts,
823
+ });
824
+ Object.setPrototypeOf(this, InvalidDBSnapshotStateFault.prototype);
825
+ }
826
+ }
827
+ class InvalidRestoreFault extends DocDBServiceException {
828
+ name = "InvalidRestoreFault";
829
+ $fault = "client";
830
+ constructor(opts) {
831
+ super({
832
+ name: "InvalidRestoreFault",
833
+ $fault: "client",
834
+ ...opts,
835
+ });
836
+ Object.setPrototypeOf(this, InvalidRestoreFault.prototype);
837
+ }
838
+ }
839
+
840
+ const _A = "Address";
841
+ const _AA = "ApplyAction";
842
+ const _AAAD = "AutoAppliedAfterDate";
843
+ const _ADL = "AllowDataLoss";
844
+ const _AI = "ApplyImmediately";
845
+ const _AM = "ApplyMethod";
846
+ const _AMVU = "AutoMinorVersionUpgrade";
847
+ const _AMVUl = "AllowMajorVersionUpgrade";
848
+ const _AN = "AttributeName";
849
+ const _ANFF = "AuthorizationNotFoundFault";
850
+ const _APMA = "ApplyPendingMaintenanceAction";
851
+ const _APMAM = "ApplyPendingMaintenanceActionMessage";
852
+ const _APMAR = "ApplyPendingMaintenanceActionResult";
853
+ const _AR = "AssociatedRoles";
854
+ const _AS = "AllocatedStorage";
855
+ const _ASITS = "AddSourceIdentifierToSubscription";
856
+ const _ASITSM = "AddSourceIdentifierToSubscriptionMessage";
857
+ const _ASITSR = "AddSourceIdentifierToSubscriptionResult";
858
+ const _AT = "ApplyType";
859
+ const _ATTR = "AddTagsToResource";
860
+ const _ATTRM = "AddTagsToResourceMessage";
861
+ const _AU = "AutoUpgrade";
862
+ const _AV = "AttributeValues";
863
+ const _AVL = "AttributeValueList";
864
+ const _AVl = "AllowedValues";
865
+ const _AVt = "AttributeValue";
866
+ const _AZ = "AvailabilityZone";
867
+ const _AZL = "AvailabilityZoneList";
868
+ const _AZv = "AvailabilityZones";
869
+ const _Ac = "Action";
870
+ const _BRP = "BackupRetentionPeriod";
871
+ const _C = "Certificate";
872
+ const _CA = "CertificateArn";
873
+ const _CACI = "CACertificateIdentifier";
874
+ const _CAD = "CurrentApplyDate";
875
+ const _CAI = "CAIdentifier";
876
+ const _CAIu = "CustomerAwsId";
877
+ const _CCT = "ClusterCreateTime";
878
+ const _CD = "CertificateDetails";
879
+ const _CDBC = "CreateDBCluster";
880
+ const _CDBCM = "CreateDBClusterMessage";
881
+ const _CDBCPG = "CopyDBClusterParameterGroup";
882
+ const _CDBCPGM = "CopyDBClusterParameterGroupMessage";
883
+ const _CDBCPGMr = "CreateDBClusterParameterGroupMessage";
884
+ const _CDBCPGR = "CopyDBClusterParameterGroupResult";
885
+ const _CDBCPGRr = "CreateDBClusterParameterGroupResult";
886
+ const _CDBCPGr = "CreateDBClusterParameterGroup";
887
+ const _CDBCR = "CreateDBClusterResult";
888
+ const _CDBCS = "CopyDBClusterSnapshot";
889
+ const _CDBCSM = "CopyDBClusterSnapshotMessage";
890
+ const _CDBCSMr = "CreateDBClusterSnapshotMessage";
891
+ const _CDBCSR = "CopyDBClusterSnapshotResult";
892
+ const _CDBCSRr = "CreateDBClusterSnapshotResult";
893
+ const _CDBCSr = "CreateDBClusterSnapshot";
894
+ const _CDBI = "CreateDBInstance";
895
+ const _CDBIM = "CreateDBInstanceMessage";
896
+ const _CDBIR = "CreateDBInstanceResult";
897
+ const _CDBSG = "CreateDBSubnetGroup";
898
+ const _CDBSGM = "CreateDBSubnetGroupMessage";
899
+ const _CDBSGR = "CreateDBSubnetGroupResult";
900
+ const _CES = "CreateEventSubscription";
901
+ const _CESM = "CreateEventSubscriptionMessage";
902
+ const _CESR = "CreateEventSubscriptionResult";
903
+ const _CGC = "CreateGlobalCluster";
904
+ const _CGCM = "CreateGlobalClusterMessage";
905
+ const _CGCR = "CreateGlobalClusterResult";
906
+ const _CGI = "CloneGroupId";
907
+ const _CI = "CertificateIdentifier";
908
+ const _CL = "CertificateList";
909
+ const _CLEC = "CloudwatchLogsExportConfiguration";
910
+ const _CM = "CertificateMessage";
911
+ const _CMUS = "ClusterMasterUserSecret";
912
+ const _CNFF = "CertificateNotFoundFault";
913
+ const _CRR = "CertificateRotationRestart";
914
+ const _CSI = "CustSubscriptionId";
915
+ const _CT = "CertificateType";
916
+ const _CTTS = "CopyTagsToSnapshot";
917
+ const _CTo = "CopyTags";
918
+ const _Ce = "Certificates";
919
+ const _D = "Description";
920
+ const _DBC = "DBCluster";
921
+ const _DBCA = "DBClusterArn";
922
+ const _DBCAEF = "DBClusterAlreadyExistsFault";
923
+ const _DBCI = "DBClusterIdentifier";
924
+ const _DBCL = "DBClusterList";
925
+ const _DBCM = "DBClusterMembers";
926
+ const _DBCML = "DBClusterMemberList";
927
+ const _DBCMl = "DBClusterMember";
928
+ const _DBCMlu = "DBClusterMessage";
929
+ const _DBCNFF = "DBClusterNotFoundFault";
930
+ const _DBCPG = "DBClusterParameterGroup";
931
+ const _DBCPGA = "DBClusterParameterGroupArn";
932
+ const _DBCPGD = "DBClusterParameterGroupDetails";
933
+ const _DBCPGL = "DBClusterParameterGroupList";
934
+ const _DBCPGM = "DBClusterParameterGroupsMessage";
935
+ const _DBCPGN = "DBClusterParameterGroupName";
936
+ const _DBCPGNFF = "DBClusterParameterGroupNotFoundFault";
937
+ const _DBCPGNM = "DBClusterParameterGroupNameMessage";
938
+ const _DBCPGS = "DBClusterParameterGroupStatus";
939
+ const _DBCPGl = "DBClusterParameterGroups";
940
+ const _DBCQEF = "DBClusterQuotaExceededFault";
941
+ const _DBCR = "DBClusterRole";
942
+ const _DBCRl = "DBClusterRoles";
943
+ const _DBCS = "DBClusterSnapshot";
944
+ const _DBCSA = "DBClusterSnapshotArn";
945
+ const _DBCSAEF = "DBClusterSnapshotAlreadyExistsFault";
946
+ const _DBCSAL = "DBClusterSnapshotAttributeList";
947
+ const _DBCSAR = "DBClusterSnapshotAttributesResult";
948
+ const _DBCSAl = "DBClusterSnapshotAttribute";
949
+ const _DBCSAlu = "DBClusterSnapshotAttributes";
950
+ const _DBCSI = "DBClusterSnapshotIdentifier";
951
+ const _DBCSL = "DBClusterSnapshotList";
952
+ const _DBCSM = "DBClusterSnapshotMessage";
953
+ const _DBCSNFF = "DBClusterSnapshotNotFoundFault";
954
+ const _DBCSl = "DBClusterSnapshots";
955
+ const _DBCl = "DBClusters";
956
+ const _DBED = "DBEngineDescription";
957
+ const _DBEV = "DBEngineVersion";
958
+ const _DBEVD = "DBEngineVersionDescription";
959
+ const _DBEVL = "DBEngineVersionList";
960
+ const _DBEVM = "DBEngineVersionMessage";
961
+ const _DBEVn = "DBEngineVersions";
962
+ const _DBI = "DBInstance";
963
+ const _DBIA = "DBInstanceArn";
964
+ const _DBIAEF = "DBInstanceAlreadyExistsFault";
965
+ const _DBIC = "DBInstanceClass";
966
+ const _DBII = "DBInstanceIdentifier";
967
+ const _DBIL = "DBInstanceList";
968
+ const _DBIM = "DBInstanceMessage";
969
+ const _DBINFF = "DBInstanceNotFoundFault";
970
+ const _DBIS = "DBInstanceStatus";
971
+ const _DBISI = "DBInstanceStatusInfo";
972
+ const _DBISIL = "DBInstanceStatusInfoList";
973
+ const _DBIn = "DBInstances";
974
+ const _DBPGAEF = "DBParameterGroupAlreadyExistsFault";
975
+ const _DBPGF = "DBParameterGroupFamily";
976
+ const _DBPGNFF = "DBParameterGroupNotFoundFault";
977
+ const _DBPGQEF = "DBParameterGroupQuotaExceededFault";
978
+ const _DBSAEF = "DBSnapshotAlreadyExistsFault";
979
+ const _DBSG = "DBSubnetGroup";
980
+ const _DBSGA = "DBSubnetGroupArn";
981
+ const _DBSGAEF = "DBSubnetGroupAlreadyExistsFault";
982
+ const _DBSGD = "DBSubnetGroupDescription";
983
+ const _DBSGDNCEAZ = "DBSubnetGroupDoesNotCoverEnoughAZs";
984
+ const _DBSGM = "DBSubnetGroupMessage";
985
+ const _DBSGN = "DBSubnetGroupName";
986
+ const _DBSGNFF = "DBSecurityGroupNotFoundFault";
987
+ const _DBSGNFFu = "DBSubnetGroupNotFoundFault";
988
+ const _DBSGQEF = "DBSubnetGroupQuotaExceededFault";
989
+ const _DBSGu = "DBSubnetGroups";
990
+ const _DBSNFF = "DBSnapshotNotFoundFault";
991
+ const _DBSQEF = "DBSubnetQuotaExceededFault";
992
+ const _DBUDFF = "DBUpgradeDependencyFailureFault";
993
+ const _DC = "DescribeCertificates";
994
+ const _DCI = "DbClusterIdentifier";
995
+ const _DCM = "DescribeCertificatesMessage";
996
+ const _DCRI = "DbClusterResourceId";
997
+ const _DDBC = "DeleteDBCluster";
998
+ const _DDBCM = "DeleteDBClusterMessage";
999
+ const _DDBCMe = "DescribeDBClustersMessage";
1000
+ const _DDBCP = "DescribeDBClusterParameters";
1001
+ const _DDBCPG = "DeleteDBClusterParameterGroup";
1002
+ const _DDBCPGM = "DeleteDBClusterParameterGroupMessage";
1003
+ const _DDBCPGMe = "DescribeDBClusterParameterGroupsMessage";
1004
+ const _DDBCPGe = "DescribeDBClusterParameterGroups";
1005
+ const _DDBCPM = "DescribeDBClusterParametersMessage";
1006
+ const _DDBCR = "DeleteDBClusterResult";
1007
+ const _DDBCS = "DeleteDBClusterSnapshot";
1008
+ const _DDBCSA = "DescribeDBClusterSnapshotAttributes";
1009
+ const _DDBCSAM = "DescribeDBClusterSnapshotAttributesMessage";
1010
+ const _DDBCSAR = "DescribeDBClusterSnapshotAttributesResult";
1011
+ const _DDBCSM = "DeleteDBClusterSnapshotMessage";
1012
+ const _DDBCSMe = "DescribeDBClusterSnapshotsMessage";
1013
+ const _DDBCSR = "DeleteDBClusterSnapshotResult";
1014
+ const _DDBCSe = "DescribeDBClusterSnapshots";
1015
+ const _DDBCe = "DescribeDBClusters";
1016
+ const _DDBEV = "DescribeDBEngineVersions";
1017
+ const _DDBEVM = "DescribeDBEngineVersionsMessage";
1018
+ const _DDBI = "DeleteDBInstance";
1019
+ const _DDBIM = "DeleteDBInstanceMessage";
1020
+ const _DDBIMe = "DescribeDBInstancesMessage";
1021
+ const _DDBIR = "DeleteDBInstanceResult";
1022
+ const _DDBIe = "DescribeDBInstances";
1023
+ const _DDBSG = "DeleteDBSubnetGroup";
1024
+ const _DDBSGM = "DeleteDBSubnetGroupMessage";
1025
+ const _DDBSGMe = "DescribeDBSubnetGroupsMessage";
1026
+ const _DDBSGe = "DescribeDBSubnetGroups";
1027
+ const _DE = "DescribeEvents";
1028
+ const _DEC = "DescribeEventCategories";
1029
+ const _DECM = "DescribeEventCategoriesMessage";
1030
+ const _DEDCP = "DescribeEngineDefaultClusterParameters";
1031
+ const _DEDCPM = "DescribeEngineDefaultClusterParametersMessage";
1032
+ const _DEDCPR = "DescribeEngineDefaultClusterParametersResult";
1033
+ const _DEM = "DescribeEventsMessage";
1034
+ const _DES = "DeleteEventSubscription";
1035
+ const _DESM = "DeleteEventSubscriptionMessage";
1036
+ const _DESMe = "DescribeEventSubscriptionsMessage";
1037
+ const _DESR = "DeleteEventSubscriptionResult";
1038
+ const _DESe = "DescribeEventSubscriptions";
1039
+ const _DGC = "DeleteGlobalCluster";
1040
+ const _DGCM = "DeleteGlobalClusterMessage";
1041
+ const _DGCMe = "DescribeGlobalClustersMessage";
1042
+ const _DGCR = "DeleteGlobalClusterResult";
1043
+ const _DGCe = "DescribeGlobalClusters";
1044
+ const _DLT = "DisableLogTypes";
1045
+ const _DN = "DatabaseName";
1046
+ const _DO = "DefaultOnly";
1047
+ const _DODBIO = "DescribeOrderableDBInstanceOptions";
1048
+ const _DODBIOM = "DescribeOrderableDBInstanceOptionsMessage";
1049
+ const _DP = "DeletionProtection";
1050
+ const _DPMA = "DescribePendingMaintenanceActions";
1051
+ const _DPMAM = "DescribePendingMaintenanceActionsMessage";
1052
+ const _DRI = "DbiResourceId";
1053
+ const _DT = "DataType";
1054
+ const _Da = "Date";
1055
+ const _Du = "Duration";
1056
+ const _E = "Engine";
1057
+ const _EC = "EventCategories";
1058
+ const _ECL = "EventCategoriesList";
1059
+ const _ECLE = "EnableCloudwatchLogsExports";
1060
+ const _ECLEn = "EnabledCloudwatchLogsExports";
1061
+ const _ECM = "EventCategoriesMap";
1062
+ const _ECML = "EventCategoriesMapList";
1063
+ const _ECMv = "EventCategoriesMessage";
1064
+ const _ECv = "EventCategory";
1065
+ const _ED = "EngineDefaults";
1066
+ const _EL = "EventList";
1067
+ const _ELT = "EnableLogTypes";
1068
+ const _ELTx = "ExportableLogTypes";
1069
+ const _EM = "EventsMessage";
1070
+ const _EPI = "EnablePerformanceInsights";
1071
+ const _ERT = "EarliestRestorableTime";
1072
+ const _ES = "EventSubscription";
1073
+ const _ESA = "EventSubscriptionArn";
1074
+ const _ESL = "EventSubscriptionsList";
1075
+ const _ESM = "EventSubscriptionsMessage";
1076
+ const _ESQEF = "EventSubscriptionQuotaExceededFault";
1077
+ const _ET = "EndTime";
1078
+ const _EV = "EngineVersion";
1079
+ const _En = "Enabled";
1080
+ const _End = "Endpoint";
1081
+ const _Ev = "Event";
1082
+ const _Eve = "Events";
1083
+ const _F = "Filters";
1084
+ const _FAD = "ForcedApplyDate";
1085
+ const _FDBC = "FailoverDBCluster";
1086
+ const _FDBCM = "FailoverDBClusterMessage";
1087
+ const _FDBCR = "FailoverDBClusterResult";
1088
+ const _FDBSI = "FinalDBSnapshotIdentifier";
1089
+ const _FDCA = "FromDbClusterArn";
1090
+ const _FF = "ForceFailover";
1091
+ const _FGC = "FailoverGlobalCluster";
1092
+ const _FGCM = "FailoverGlobalClusterMessage";
1093
+ const _FGCR = "FailoverGlobalClusterResult";
1094
+ const _FL = "FilterList";
1095
+ const _FS = "FailoverState";
1096
+ const _FVL = "FilterValueList";
1097
+ const _Fi = "Filter";
1098
+ const _GC = "GlobalCluster";
1099
+ const _GCA = "GlobalClusterArn";
1100
+ const _GCAEF = "GlobalClusterAlreadyExistsFault";
1101
+ const _GCI = "GlobalClusterIdentifier";
1102
+ const _GCL = "GlobalClusterList";
1103
+ const _GCM = "GlobalClusterMembers";
1104
+ const _GCML = "GlobalClusterMemberList";
1105
+ const _GCMl = "GlobalClusterMember";
1106
+ const _GCMlo = "GlobalClustersMessage";
1107
+ const _GCNFF = "GlobalClusterNotFoundFault";
1108
+ const _GCQEF = "GlobalClusterQuotaExceededFault";
1109
+ const _GCRI = "GlobalClusterResourceId";
1110
+ const _GCl = "GlobalClusters";
1111
+ const _HZI = "HostedZoneId";
1112
+ const _I = "Iops";
1113
+ const _ICT = "InstanceCreateTime";
1114
+ const _ICW = "IsClusterWriter";
1115
+ const _IDBCCF = "InsufficientDBClusterCapacityFault";
1116
+ const _IDBCSF = "InvalidDBClusterStateFault";
1117
+ const _IDBCSSF = "InvalidDBClusterSnapshotStateFault";
1118
+ const _IDBICF = "InsufficientDBInstanceCapacityFault";
1119
+ const _IDBISF = "InvalidDBInstanceStateFault";
1120
+ const _IDBPGSF = "InvalidDBParameterGroupStateFault";
1121
+ const _IDBSGSF = "InvalidDBSecurityGroupStateFault";
1122
+ const _IDBSGSFn = "InvalidDBSubnetGroupStateFault";
1123
+ const _IDBSSF = "InvalidDBSnapshotStateFault";
1124
+ const _IDBSSFn = "InvalidDBSubnetStateFault";
1125
+ const _IDLA = "IsDataLossAllowed";
1126
+ const _IESSF = "InvalidEventSubscriptionStateFault";
1127
+ const _IGCSF = "InvalidGlobalClusterStateFault";
1128
+ const _IM = "IsModifiable";
1129
+ const _IMVU = "IsMajorVersionUpgrade";
1130
+ const _IOONAMT = "IOOptimizedNextAllowedModificationTime";
1131
+ const _IP = "IncludePublic";
1132
+ const _IQEF = "InstanceQuotaExceededFault";
1133
+ const _IRF = "InvalidRestoreFault";
1134
+ const _IS = "InvalidSubnet";
1135
+ const _ISCCF = "InsufficientStorageClusterCapacityFault";
1136
+ const _ISn = "IncludeShared";
1137
+ const _IVPCNSF = "InvalidVPCNetworkStateFault";
1138
+ const _IW = "IsWriter";
1139
+ const _K = "Key";
1140
+ const _KKI = "KmsKeyId";
1141
+ const _KMSKNAF = "KMSKeyNotAccessibleFault";
1142
+ const _LM = "LicenseModel";
1143
+ const _LRT = "LatestRestorableTime";
1144
+ const _LSCS = "ListSupportedCharacterSets";
1145
+ const _LST = "ListSupportedTimezones";
1146
+ const _LTFR = "ListTagsForResource";
1147
+ const _LTFRM = "ListTagsForResourceMessage";
1148
+ const _LTTD = "LogTypesToDisable";
1149
+ const _LTTE = "LogTypesToEnable";
1150
+ const _M = "Marker";
1151
+ const _MAZ = "MultiAZ";
1152
+ const _MC = "MinCapacity";
1153
+ const _MCa = "MaxCapacity";
1154
+ const _MDBC = "ModifyDBCluster";
1155
+ const _MDBCM = "ModifyDBClusterMessage";
1156
+ const _MDBCPG = "ModifyDBClusterParameterGroup";
1157
+ const _MDBCPGM = "ModifyDBClusterParameterGroupMessage";
1158
+ const _MDBCR = "ModifyDBClusterResult";
1159
+ const _MDBCSA = "ModifyDBClusterSnapshotAttribute";
1160
+ const _MDBCSAM = "ModifyDBClusterSnapshotAttributeMessage";
1161
+ const _MDBCSAR = "ModifyDBClusterSnapshotAttributeResult";
1162
+ const _MDBI = "ModifyDBInstance";
1163
+ const _MDBIM = "ModifyDBInstanceMessage";
1164
+ const _MDBIR = "ModifyDBInstanceResult";
1165
+ const _MDBSG = "ModifyDBSubnetGroup";
1166
+ const _MDBSGM = "ModifyDBSubnetGroupMessage";
1167
+ const _MDBSGR = "ModifyDBSubnetGroupResult";
1168
+ const _MES = "ModifyEventSubscription";
1169
+ const _MESM = "ModifyEventSubscriptionMessage";
1170
+ const _MESR = "ModifyEventSubscriptionResult";
1171
+ const _MEV = "MinimumEngineVersion";
1172
+ const _MGC = "ModifyGlobalCluster";
1173
+ const _MGCM = "ModifyGlobalClusterMessage";
1174
+ const _MGCR = "ModifyGlobalClusterResult";
1175
+ const _MMUP = "ManageMasterUserPassword";
1176
+ const _MR = "MaxRecords";
1177
+ const _MU = "MasterUsername";
1178
+ const _MUP = "MasterUserPassword";
1179
+ const _MUS = "MasterUserSecret";
1180
+ const _MUSKKI = "MasterUserSecretKmsKeyId";
1181
+ const _Me = "Message";
1182
+ const _N = "Name";
1183
+ const _NDBCI = "NewDBClusterIdentifier";
1184
+ const _NDBII = "NewDBInstanceIdentifier";
1185
+ const _NGCI = "NewGlobalClusterIdentifier";
1186
+ const _NT = "NetworkType";
1187
+ const _NTNS = "NetworkTypeNotSupported";
1188
+ const _No = "Normal";
1189
+ const _ODBIO = "OrderableDBInstanceOption";
1190
+ const _ODBIOL = "OrderableDBInstanceOptionsList";
1191
+ const _ODBIOM = "OrderableDBInstanceOptionsMessage";
1192
+ const _ODBIOr = "OrderableDBInstanceOptions";
1193
+ const _OIS = "OptInStatus";
1194
+ const _OIT = "OptInType";
1195
+ const _P = "Port";
1196
+ const _PA = "PubliclyAccessible";
1197
+ const _PBW = "PreferredBackupWindow";
1198
+ const _PCLE = "PendingCloudwatchLogsExports";
1199
+ const _PIE = "PerformanceInsightsEnabled";
1200
+ const _PIKMSKI = "PerformanceInsightsKMSKeyId";
1201
+ const _PL = "ParametersList";
1202
+ const _PMA = "PendingMaintenanceAction";
1203
+ const _PMAD = "PendingMaintenanceActionDetails";
1204
+ const _PMAM = "PendingMaintenanceActionsMessage";
1205
+ const _PMAe = "PendingMaintenanceActions";
1206
+ const _PMV = "PendingModifiedValues";
1207
+ const _PMW = "PreferredMaintenanceWindow";
1208
+ const _PN = "ParameterName";
1209
+ const _PP = "PercentProgress";
1210
+ const _PSU = "PreSignedUrl";
1211
+ const _PT = "PromotionTier";
1212
+ const _PV = "ParameterValue";
1213
+ const _Pa = "Parameters";
1214
+ const _Par = "Parameter";
1215
+ const _R = "Readers";
1216
+ const _RA = "RoleArn";
1217
+ const _RAP = "ResetAllParameters";
1218
+ const _RDBCFS = "RestoreDBClusterFromSnapshot";
1219
+ const _RDBCFSM = "RestoreDBClusterFromSnapshotMessage";
1220
+ const _RDBCFSR = "RestoreDBClusterFromSnapshotResult";
1221
+ const _RDBCPG = "ResetDBClusterParameterGroup";
1222
+ const _RDBCPGM = "ResetDBClusterParameterGroupMessage";
1223
+ const _RDBCTPIT = "RestoreDBClusterToPointInTime";
1224
+ const _RDBCTPITM = "RestoreDBClusterToPointInTimeMessage";
1225
+ const _RDBCTPITR = "RestoreDBClusterToPointInTimeResult";
1226
+ const _RDBI = "RebootDBInstance";
1227
+ const _RDBIM = "RebootDBInstanceMessage";
1228
+ const _RDBIR = "RebootDBInstanceResult";
1229
+ const _RE = "ReaderEndpoint";
1230
+ const _RFGC = "RemoveFromGlobalCluster";
1231
+ const _RFGCM = "RemoveFromGlobalClusterMessage";
1232
+ const _RFGCR = "RemoveFromGlobalClusterResult";
1233
+ const _RI = "ResourceIdentifier";
1234
+ const _RMUP = "RotateMasterUserPassword";
1235
+ const _RN = "ResourceName";
1236
+ const _RNFF = "ResourceNotFoundFault";
1237
+ const _RPMA = "ResourcePendingMaintenanceActions";
1238
+ const _RRI = "ReadReplicaIdentifiers";
1239
+ const _RRIL = "ReadReplicaIdentifierList";
1240
+ const _RRIe = "ReadReplicaIdentifier";
1241
+ const _RSI = "ReplicationSourceIdentifier";
1242
+ const _RSIFS = "RemoveSourceIdentifierFromSubscription";
1243
+ const _RSIFSM = "RemoveSourceIdentifierFromSubscriptionMessage";
1244
+ const _RSIFSR = "RemoveSourceIdentifierFromSubscriptionResult";
1245
+ const _RT = "RestoreType";
1246
+ const _RTFR = "RemoveTagsFromResource";
1247
+ const _RTFRM = "RemoveTagsFromResourceMessage";
1248
+ const _RTT = "RestoreToTime";
1249
+ const _S = "Status";
1250
+ const _SA = "SecretArn";
1251
+ const _SAEF = "SubscriptionAlreadyExistFault";
1252
+ const _SAIU = "SubnetAlreadyInUse";
1253
+ const _SAZ = "SubnetAvailabilityZone";
1254
+ const _SAo = "SourceArn";
1255
+ const _SCACI = "SupportedCACertificateIdentifiers";
1256
+ const _SCNFF = "SubscriptionCategoryNotFoundFault";
1257
+ const _SCRWR = "SupportsCertificateRotationWithoutRestart";
1258
+ const _SCT = "SnapshotCreateTime";
1259
+ const _SCTu = "SubscriptionCreationTime";
1260
+ const _SDBC = "StartDBCluster";
1261
+ const _SDBCI = "SourceDBClusterIdentifier";
1262
+ const _SDBCM = "StartDBClusterMessage";
1263
+ const _SDBCMt = "StopDBClusterMessage";
1264
+ const _SDBCPGI = "SourceDBClusterParameterGroupIdentifier";
1265
+ const _SDBCR = "StartDBClusterResult";
1266
+ const _SDBCRt = "StopDBClusterResult";
1267
+ const _SDBCSA = "SourceDBClusterSnapshotArn";
1268
+ const _SDBCSI = "SourceDBClusterSnapshotIdentifier";
1269
+ const _SDBCt = "StopDBCluster";
1270
+ const _SE = "StorageEncrypted";
1271
+ const _SFS = "SkipFinalSnapshot";
1272
+ const _SGC = "SwitchoverGlobalCluster";
1273
+ const _SGCM = "SwitchoverGlobalClusterMessage";
1274
+ const _SGCR = "SwitchoverGlobalClusterResult";
1275
+ const _SGS = "SubnetGroupStatus";
1276
+ const _SI = "SourceIdentifier";
1277
+ const _SIL = "SourceIdsList";
1278
+ const _SILu = "SubnetIdentifierList";
1279
+ const _SIn = "SnapshotIdentifier";
1280
+ const _SIo = "SourceIds";
1281
+ const _SIou = "SourceId";
1282
+ const _SIt = "StatusInfos";
1283
+ const _SIu = "SubnetIds";
1284
+ const _SIub = "SubnetIdentifier";
1285
+ const _SL = "SubnetList";
1286
+ const _SLETCL = "SupportsLogExportsToCloudwatchLogs";
1287
+ const _SN = "SubscriptionName";
1288
+ const _SNFF = "SourceNotFoundFault";
1289
+ const _SNFFu = "SubscriptionNotFoundFault";
1290
+ const _SNSITF = "SNSInvalidTopicFault";
1291
+ const _SNSNAF = "SNSNoAuthorizationFault";
1292
+ const _SNSTANFF = "SNSTopicArnNotFoundFault";
1293
+ const _SNT = "SupportedNetworkTypes";
1294
+ const _SQEF = "SnapshotQuotaExceededFault";
1295
+ const _SQEFt = "StorageQuotaExceededFault";
1296
+ const _SS = "SecretStatus";
1297
+ const _SSQEF = "SharedSnapshotQuotaExceededFault";
1298
+ const _SSu = "SubnetStatus";
1299
+ const _SSy = "SynchronizationStatus";
1300
+ const _ST = "StorageType";
1301
+ const _STA = "SnsTopicArn";
1302
+ const _STNSF = "StorageTypeNotSupportedFault";
1303
+ const _STn = "SnapshotType";
1304
+ const _STo = "SourceType";
1305
+ const _STt = "StatusType";
1306
+ const _STta = "StartTime";
1307
+ const _SVFS = "ServerlessV2FeaturesSupport";
1308
+ const _SVSC = "ServerlessV2ScalingConfiguration";
1309
+ const _SVSCI = "ServerlessV2ScalingConfigurationInfo";
1310
+ const _So = "Source";
1311
+ const _Su = "Subnets";
1312
+ const _Sub = "Subnet";
1313
+ const _Sw = "Switchover";
1314
+ const _T = "Tags";
1315
+ const _TDBCPGD = "TargetDBClusterParameterGroupDescription";
1316
+ const _TDBCPGI = "TargetDBClusterParameterGroupIdentifier";
1317
+ const _TDBCSI = "TargetDBClusterSnapshotIdentifier";
1318
+ const _TDBII = "TargetDBInstanceIdentifier";
1319
+ const _TDCA = "ToDbClusterArn";
1320
+ const _TDCI = "TargetDbClusterIdentifier";
1321
+ const _TK = "TagKeys";
1322
+ const _TL = "TagList";
1323
+ const _TLM = "TagListMessage";
1324
+ const _Ta = "Tag";
1325
+ const _Th = "Thumbprint";
1326
+ const _ULRT = "UseLatestRestorableTime";
1327
+ const _UT = "UpgradeTarget";
1328
+ const _V = "Vpc";
1329
+ const _VF = "ValidFrom";
1330
+ const _VI = "VpcId";
1331
+ const _VSG = "VpcSecurityGroups";
1332
+ const _VSGI = "VpcSecurityGroupIds";
1333
+ const _VSGIL = "VpcSecurityGroupIdList";
1334
+ const _VSGIp = "VpcSecurityGroupId";
1335
+ const _VSGM = "VpcSecurityGroupMembership";
1336
+ const _VSGML = "VpcSecurityGroupMembershipList";
1337
+ const _VT = "ValidTill";
1338
+ const _VTA = "ValuesToAdd";
1339
+ const _VTR = "ValuesToRemove";
1340
+ const _VUT = "ValidUpgradeTarget";
1341
+ const _VUTL = "ValidUpgradeTargetList";
1342
+ const _Va = "Values";
1343
+ const _Val = "Value";
1344
+ const _aQE = "awsQueryError";
1345
+ const _c = "client";
1346
+ const _e = "error";
1347
+ const _hE = "httpError";
1348
+ const _m = "message";
1349
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.docdb";
1350
+ const _xN = "xmlName";
1351
+ const n0 = "com.amazonaws.docdb";
1352
+ const _s_registry = TypeRegistry.for(_s);
1353
+ var DocDBServiceException$ = [-3, _s, "DocDBServiceException", 0, [], []];
1354
+ _s_registry.registerError(DocDBServiceException$, DocDBServiceException);
1355
+ const n0_registry = TypeRegistry.for(n0);
1356
+ var AuthorizationNotFoundFault$ = [-3, n0, _ANFF,
1357
+ { [_aQE]: [`AuthorizationNotFound`, 404], [_e]: _c, [_hE]: 404 },
1358
+ [_m],
1359
+ [0]
1360
+ ];
1361
+ n0_registry.registerError(AuthorizationNotFoundFault$, AuthorizationNotFoundFault);
1362
+ var CertificateNotFoundFault$ = [-3, n0, _CNFF,
1363
+ { [_aQE]: [`CertificateNotFound`, 404], [_e]: _c, [_hE]: 404 },
1364
+ [_m],
1365
+ [0]
1366
+ ];
1367
+ n0_registry.registerError(CertificateNotFoundFault$, CertificateNotFoundFault);
1368
+ var DBClusterAlreadyExistsFault$ = [-3, n0, _DBCAEF,
1369
+ { [_aQE]: [`DBClusterAlreadyExistsFault`, 400], [_e]: _c, [_hE]: 400 },
1370
+ [_m],
1371
+ [0]
1372
+ ];
1373
+ n0_registry.registerError(DBClusterAlreadyExistsFault$, DBClusterAlreadyExistsFault);
1374
+ var DBClusterNotFoundFault$ = [-3, n0, _DBCNFF,
1375
+ { [_aQE]: [`DBClusterNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
1376
+ [_m],
1377
+ [0]
1378
+ ];
1379
+ n0_registry.registerError(DBClusterNotFoundFault$, DBClusterNotFoundFault);
1380
+ var DBClusterParameterGroupNotFoundFault$ = [-3, n0, _DBCPGNFF,
1381
+ { [_aQE]: [`DBClusterParameterGroupNotFound`, 404], [_e]: _c, [_hE]: 404 },
1382
+ [_m],
1383
+ [0]
1384
+ ];
1385
+ n0_registry.registerError(DBClusterParameterGroupNotFoundFault$, DBClusterParameterGroupNotFoundFault);
1386
+ var DBClusterQuotaExceededFault$ = [-3, n0, _DBCQEF,
1387
+ { [_aQE]: [`DBClusterQuotaExceededFault`, 403], [_e]: _c, [_hE]: 403 },
1388
+ [_m],
1389
+ [0]
1390
+ ];
1391
+ n0_registry.registerError(DBClusterQuotaExceededFault$, DBClusterQuotaExceededFault);
1392
+ var DBClusterSnapshotAlreadyExistsFault$ = [-3, n0, _DBCSAEF,
1393
+ { [_aQE]: [`DBClusterSnapshotAlreadyExistsFault`, 400], [_e]: _c, [_hE]: 400 },
1394
+ [_m],
1395
+ [0]
1396
+ ];
1397
+ n0_registry.registerError(DBClusterSnapshotAlreadyExistsFault$, DBClusterSnapshotAlreadyExistsFault);
1398
+ var DBClusterSnapshotNotFoundFault$ = [-3, n0, _DBCSNFF,
1399
+ { [_aQE]: [`DBClusterSnapshotNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
1400
+ [_m],
1401
+ [0]
1402
+ ];
1403
+ n0_registry.registerError(DBClusterSnapshotNotFoundFault$, DBClusterSnapshotNotFoundFault);
1404
+ var DBInstanceAlreadyExistsFault$ = [-3, n0, _DBIAEF,
1405
+ { [_aQE]: [`DBInstanceAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
1406
+ [_m],
1407
+ [0]
1408
+ ];
1409
+ n0_registry.registerError(DBInstanceAlreadyExistsFault$, DBInstanceAlreadyExistsFault);
1410
+ var DBInstanceNotFoundFault$ = [-3, n0, _DBINFF,
1411
+ { [_aQE]: [`DBInstanceNotFound`, 404], [_e]: _c, [_hE]: 404 },
1412
+ [_m],
1413
+ [0]
1414
+ ];
1415
+ n0_registry.registerError(DBInstanceNotFoundFault$, DBInstanceNotFoundFault);
1416
+ var DBParameterGroupAlreadyExistsFault$ = [-3, n0, _DBPGAEF,
1417
+ { [_aQE]: [`DBParameterGroupAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
1418
+ [_m],
1419
+ [0]
1420
+ ];
1421
+ n0_registry.registerError(DBParameterGroupAlreadyExistsFault$, DBParameterGroupAlreadyExistsFault);
1422
+ var DBParameterGroupNotFoundFault$ = [-3, n0, _DBPGNFF,
1423
+ { [_aQE]: [`DBParameterGroupNotFound`, 404], [_e]: _c, [_hE]: 404 },
1424
+ [_m],
1425
+ [0]
1426
+ ];
1427
+ n0_registry.registerError(DBParameterGroupNotFoundFault$, DBParameterGroupNotFoundFault);
1428
+ var DBParameterGroupQuotaExceededFault$ = [-3, n0, _DBPGQEF,
1429
+ { [_aQE]: [`DBParameterGroupQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
1430
+ [_m],
1431
+ [0]
1432
+ ];
1433
+ n0_registry.registerError(DBParameterGroupQuotaExceededFault$, DBParameterGroupQuotaExceededFault);
1434
+ var DBSecurityGroupNotFoundFault$ = [-3, n0, _DBSGNFF,
1435
+ { [_aQE]: [`DBSecurityGroupNotFound`, 404], [_e]: _c, [_hE]: 404 },
1436
+ [_m],
1437
+ [0]
1438
+ ];
1439
+ n0_registry.registerError(DBSecurityGroupNotFoundFault$, DBSecurityGroupNotFoundFault);
1440
+ var DBSnapshotAlreadyExistsFault$ = [-3, n0, _DBSAEF,
1441
+ { [_aQE]: [`DBSnapshotAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
1442
+ [_m],
1443
+ [0]
1444
+ ];
1445
+ n0_registry.registerError(DBSnapshotAlreadyExistsFault$, DBSnapshotAlreadyExistsFault);
1446
+ var DBSnapshotNotFoundFault$ = [-3, n0, _DBSNFF,
1447
+ { [_aQE]: [`DBSnapshotNotFound`, 404], [_e]: _c, [_hE]: 404 },
1448
+ [_m],
1449
+ [0]
1450
+ ];
1451
+ n0_registry.registerError(DBSnapshotNotFoundFault$, DBSnapshotNotFoundFault);
1452
+ var DBSubnetGroupAlreadyExistsFault$ = [-3, n0, _DBSGAEF,
1453
+ { [_aQE]: [`DBSubnetGroupAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
1454
+ [_m],
1455
+ [0]
1456
+ ];
1457
+ n0_registry.registerError(DBSubnetGroupAlreadyExistsFault$, DBSubnetGroupAlreadyExistsFault);
1458
+ var DBSubnetGroupDoesNotCoverEnoughAZs$ = [-3, n0, _DBSGDNCEAZ,
1459
+ { [_aQE]: [`DBSubnetGroupDoesNotCoverEnoughAZs`, 400], [_e]: _c, [_hE]: 400 },
1460
+ [_m],
1461
+ [0]
1462
+ ];
1463
+ n0_registry.registerError(DBSubnetGroupDoesNotCoverEnoughAZs$, DBSubnetGroupDoesNotCoverEnoughAZs);
1464
+ var DBSubnetGroupNotFoundFault$ = [-3, n0, _DBSGNFFu,
1465
+ { [_aQE]: [`DBSubnetGroupNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
1466
+ [_m],
1467
+ [0]
1468
+ ];
1469
+ n0_registry.registerError(DBSubnetGroupNotFoundFault$, DBSubnetGroupNotFoundFault);
1470
+ var DBSubnetGroupQuotaExceededFault$ = [-3, n0, _DBSGQEF,
1471
+ { [_aQE]: [`DBSubnetGroupQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
1472
+ [_m],
1473
+ [0]
1474
+ ];
1475
+ n0_registry.registerError(DBSubnetGroupQuotaExceededFault$, DBSubnetGroupQuotaExceededFault);
1476
+ var DBSubnetQuotaExceededFault$ = [-3, n0, _DBSQEF,
1477
+ { [_aQE]: [`DBSubnetQuotaExceededFault`, 400], [_e]: _c, [_hE]: 400 },
1478
+ [_m],
1479
+ [0]
1480
+ ];
1481
+ n0_registry.registerError(DBSubnetQuotaExceededFault$, DBSubnetQuotaExceededFault);
1482
+ var DBUpgradeDependencyFailureFault$ = [-3, n0, _DBUDFF,
1483
+ { [_aQE]: [`DBUpgradeDependencyFailure`, 400], [_e]: _c, [_hE]: 400 },
1484
+ [_m],
1485
+ [0]
1486
+ ];
1487
+ n0_registry.registerError(DBUpgradeDependencyFailureFault$, DBUpgradeDependencyFailureFault);
1488
+ var EventSubscriptionQuotaExceededFault$ = [-3, n0, _ESQEF,
1489
+ { [_aQE]: [`EventSubscriptionQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
1490
+ [_m],
1491
+ [0]
1492
+ ];
1493
+ n0_registry.registerError(EventSubscriptionQuotaExceededFault$, EventSubscriptionQuotaExceededFault);
1494
+ var GlobalClusterAlreadyExistsFault$ = [-3, n0, _GCAEF,
1495
+ { [_aQE]: [`GlobalClusterAlreadyExistsFault`, 400], [_e]: _c, [_hE]: 400 },
1496
+ [_m],
1497
+ [0]
1498
+ ];
1499
+ n0_registry.registerError(GlobalClusterAlreadyExistsFault$, GlobalClusterAlreadyExistsFault);
1500
+ var GlobalClusterNotFoundFault$ = [-3, n0, _GCNFF,
1501
+ { [_aQE]: [`GlobalClusterNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
1502
+ [_m],
1503
+ [0]
1504
+ ];
1505
+ n0_registry.registerError(GlobalClusterNotFoundFault$, GlobalClusterNotFoundFault);
1506
+ var GlobalClusterQuotaExceededFault$ = [-3, n0, _GCQEF,
1507
+ { [_aQE]: [`GlobalClusterQuotaExceededFault`, 400], [_e]: _c, [_hE]: 400 },
1508
+ [_m],
1509
+ [0]
1510
+ ];
1511
+ n0_registry.registerError(GlobalClusterQuotaExceededFault$, GlobalClusterQuotaExceededFault);
1512
+ var InstanceQuotaExceededFault$ = [-3, n0, _IQEF,
1513
+ { [_aQE]: [`InstanceQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
1514
+ [_m],
1515
+ [0]
1516
+ ];
1517
+ n0_registry.registerError(InstanceQuotaExceededFault$, InstanceQuotaExceededFault);
1518
+ var InsufficientDBClusterCapacityFault$ = [-3, n0, _IDBCCF,
1519
+ { [_aQE]: [`InsufficientDBClusterCapacityFault`, 403], [_e]: _c, [_hE]: 403 },
1520
+ [_m],
1521
+ [0]
1522
+ ];
1523
+ n0_registry.registerError(InsufficientDBClusterCapacityFault$, InsufficientDBClusterCapacityFault);
1524
+ var InsufficientDBInstanceCapacityFault$ = [-3, n0, _IDBICF,
1525
+ { [_aQE]: [`InsufficientDBInstanceCapacity`, 400], [_e]: _c, [_hE]: 400 },
1526
+ [_m],
1527
+ [0]
1528
+ ];
1529
+ n0_registry.registerError(InsufficientDBInstanceCapacityFault$, InsufficientDBInstanceCapacityFault);
1530
+ var InsufficientStorageClusterCapacityFault$ = [-3, n0, _ISCCF,
1531
+ { [_aQE]: [`InsufficientStorageClusterCapacity`, 400], [_e]: _c, [_hE]: 400 },
1532
+ [_m],
1533
+ [0]
1534
+ ];
1535
+ n0_registry.registerError(InsufficientStorageClusterCapacityFault$, InsufficientStorageClusterCapacityFault);
1536
+ var InvalidDBClusterSnapshotStateFault$ = [-3, n0, _IDBCSSF,
1537
+ { [_aQE]: [`InvalidDBClusterSnapshotStateFault`, 400], [_e]: _c, [_hE]: 400 },
1538
+ [_m],
1539
+ [0]
1540
+ ];
1541
+ n0_registry.registerError(InvalidDBClusterSnapshotStateFault$, InvalidDBClusterSnapshotStateFault);
1542
+ var InvalidDBClusterStateFault$ = [-3, n0, _IDBCSF,
1543
+ { [_aQE]: [`InvalidDBClusterStateFault`, 400], [_e]: _c, [_hE]: 400 },
1544
+ [_m],
1545
+ [0]
1546
+ ];
1547
+ n0_registry.registerError(InvalidDBClusterStateFault$, InvalidDBClusterStateFault);
1548
+ var InvalidDBInstanceStateFault$ = [-3, n0, _IDBISF,
1549
+ { [_aQE]: [`InvalidDBInstanceState`, 400], [_e]: _c, [_hE]: 400 },
1550
+ [_m],
1551
+ [0]
1552
+ ];
1553
+ n0_registry.registerError(InvalidDBInstanceStateFault$, InvalidDBInstanceStateFault);
1554
+ var InvalidDBParameterGroupStateFault$ = [-3, n0, _IDBPGSF,
1555
+ { [_aQE]: [`InvalidDBParameterGroupState`, 400], [_e]: _c, [_hE]: 400 },
1556
+ [_m],
1557
+ [0]
1558
+ ];
1559
+ n0_registry.registerError(InvalidDBParameterGroupStateFault$, InvalidDBParameterGroupStateFault);
1560
+ var InvalidDBSecurityGroupStateFault$ = [-3, n0, _IDBSGSF,
1561
+ { [_aQE]: [`InvalidDBSecurityGroupState`, 400], [_e]: _c, [_hE]: 400 },
1562
+ [_m],
1563
+ [0]
1564
+ ];
1565
+ n0_registry.registerError(InvalidDBSecurityGroupStateFault$, InvalidDBSecurityGroupStateFault);
1566
+ var InvalidDBSnapshotStateFault$ = [-3, n0, _IDBSSF,
1567
+ { [_aQE]: [`InvalidDBSnapshotState`, 400], [_e]: _c, [_hE]: 400 },
1568
+ [_m],
1569
+ [0]
1570
+ ];
1571
+ n0_registry.registerError(InvalidDBSnapshotStateFault$, InvalidDBSnapshotStateFault);
1572
+ var InvalidDBSubnetGroupStateFault$ = [-3, n0, _IDBSGSFn,
1573
+ { [_aQE]: [`InvalidDBSubnetGroupStateFault`, 400], [_e]: _c, [_hE]: 400 },
1574
+ [_m],
1575
+ [0]
1576
+ ];
1577
+ n0_registry.registerError(InvalidDBSubnetGroupStateFault$, InvalidDBSubnetGroupStateFault);
1578
+ var InvalidDBSubnetStateFault$ = [-3, n0, _IDBSSFn,
1579
+ { [_aQE]: [`InvalidDBSubnetStateFault`, 400], [_e]: _c, [_hE]: 400 },
1580
+ [_m],
1581
+ [0]
1582
+ ];
1583
+ n0_registry.registerError(InvalidDBSubnetStateFault$, InvalidDBSubnetStateFault);
1584
+ var InvalidEventSubscriptionStateFault$ = [-3, n0, _IESSF,
1585
+ { [_aQE]: [`InvalidEventSubscriptionState`, 400], [_e]: _c, [_hE]: 400 },
1586
+ [_m],
1587
+ [0]
1588
+ ];
1589
+ n0_registry.registerError(InvalidEventSubscriptionStateFault$, InvalidEventSubscriptionStateFault);
1590
+ var InvalidGlobalClusterStateFault$ = [-3, n0, _IGCSF,
1591
+ { [_aQE]: [`InvalidGlobalClusterStateFault`, 400], [_e]: _c, [_hE]: 400 },
1592
+ [_m],
1593
+ [0]
1594
+ ];
1595
+ n0_registry.registerError(InvalidGlobalClusterStateFault$, InvalidGlobalClusterStateFault);
1596
+ var InvalidRestoreFault$ = [-3, n0, _IRF,
1597
+ { [_aQE]: [`InvalidRestoreFault`, 400], [_e]: _c, [_hE]: 400 },
1598
+ [_m],
1599
+ [0]
1600
+ ];
1601
+ n0_registry.registerError(InvalidRestoreFault$, InvalidRestoreFault);
1602
+ var InvalidSubnet$ = [-3, n0, _IS,
1603
+ { [_aQE]: [`InvalidSubnet`, 400], [_e]: _c, [_hE]: 400 },
1604
+ [_m],
1605
+ [0]
1606
+ ];
1607
+ n0_registry.registerError(InvalidSubnet$, InvalidSubnet);
1608
+ var InvalidVPCNetworkStateFault$ = [-3, n0, _IVPCNSF,
1609
+ { [_aQE]: [`InvalidVPCNetworkStateFault`, 400], [_e]: _c, [_hE]: 400 },
1610
+ [_m],
1611
+ [0]
1612
+ ];
1613
+ n0_registry.registerError(InvalidVPCNetworkStateFault$, InvalidVPCNetworkStateFault);
1614
+ var KMSKeyNotAccessibleFault$ = [-3, n0, _KMSKNAF,
1615
+ { [_aQE]: [`KMSKeyNotAccessibleFault`, 400], [_e]: _c, [_hE]: 400 },
1616
+ [_m],
1617
+ [0]
1618
+ ];
1619
+ n0_registry.registerError(KMSKeyNotAccessibleFault$, KMSKeyNotAccessibleFault);
1620
+ var NetworkTypeNotSupported$ = [-3, n0, _NTNS,
1621
+ { [_aQE]: [`NetworkTypeNotSupported`, 400], [_e]: _c, [_hE]: 400 },
1622
+ [_m],
1623
+ [0]
1624
+ ];
1625
+ n0_registry.registerError(NetworkTypeNotSupported$, NetworkTypeNotSupported);
1626
+ var ResourceNotFoundFault$ = [-3, n0, _RNFF,
1627
+ { [_aQE]: [`ResourceNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
1628
+ [_m],
1629
+ [0]
1630
+ ];
1631
+ n0_registry.registerError(ResourceNotFoundFault$, ResourceNotFoundFault);
1632
+ var SharedSnapshotQuotaExceededFault$ = [-3, n0, _SSQEF,
1633
+ { [_aQE]: [`SharedSnapshotQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
1634
+ [_m],
1635
+ [0]
1636
+ ];
1637
+ n0_registry.registerError(SharedSnapshotQuotaExceededFault$, SharedSnapshotQuotaExceededFault);
1638
+ var SnapshotQuotaExceededFault$ = [-3, n0, _SQEF,
1639
+ { [_aQE]: [`SnapshotQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
1640
+ [_m],
1641
+ [0]
1642
+ ];
1643
+ n0_registry.registerError(SnapshotQuotaExceededFault$, SnapshotQuotaExceededFault);
1644
+ var SNSInvalidTopicFault$ = [-3, n0, _SNSITF,
1645
+ { [_aQE]: [`SNSInvalidTopic`, 400], [_e]: _c, [_hE]: 400 },
1646
+ [_m],
1647
+ [0]
1648
+ ];
1649
+ n0_registry.registerError(SNSInvalidTopicFault$, SNSInvalidTopicFault);
1650
+ var SNSNoAuthorizationFault$ = [-3, n0, _SNSNAF,
1651
+ { [_aQE]: [`SNSNoAuthorization`, 400], [_e]: _c, [_hE]: 400 },
1652
+ [_m],
1653
+ [0]
1654
+ ];
1655
+ n0_registry.registerError(SNSNoAuthorizationFault$, SNSNoAuthorizationFault);
1656
+ var SNSTopicArnNotFoundFault$ = [-3, n0, _SNSTANFF,
1657
+ { [_aQE]: [`SNSTopicArnNotFound`, 404], [_e]: _c, [_hE]: 404 },
1658
+ [_m],
1659
+ [0]
1660
+ ];
1661
+ n0_registry.registerError(SNSTopicArnNotFoundFault$, SNSTopicArnNotFoundFault);
1662
+ var SourceNotFoundFault$ = [-3, n0, _SNFF,
1663
+ { [_aQE]: [`SourceNotFound`, 404], [_e]: _c, [_hE]: 404 },
1664
+ [_m],
1665
+ [0]
1666
+ ];
1667
+ n0_registry.registerError(SourceNotFoundFault$, SourceNotFoundFault);
1668
+ var StorageQuotaExceededFault$ = [-3, n0, _SQEFt,
1669
+ { [_aQE]: [`StorageQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
1670
+ [_m],
1671
+ [0]
1672
+ ];
1673
+ n0_registry.registerError(StorageQuotaExceededFault$, StorageQuotaExceededFault);
1674
+ var StorageTypeNotSupportedFault$ = [-3, n0, _STNSF,
1675
+ { [_aQE]: [`StorageTypeNotSupported`, 400], [_e]: _c, [_hE]: 400 },
1676
+ [_m],
1677
+ [0]
1678
+ ];
1679
+ n0_registry.registerError(StorageTypeNotSupportedFault$, StorageTypeNotSupportedFault);
1680
+ var SubnetAlreadyInUse$ = [-3, n0, _SAIU,
1681
+ { [_aQE]: [`SubnetAlreadyInUse`, 400], [_e]: _c, [_hE]: 400 },
1682
+ [_m],
1683
+ [0]
1684
+ ];
1685
+ n0_registry.registerError(SubnetAlreadyInUse$, SubnetAlreadyInUse);
1686
+ var SubscriptionAlreadyExistFault$ = [-3, n0, _SAEF,
1687
+ { [_aQE]: [`SubscriptionAlreadyExist`, 400], [_e]: _c, [_hE]: 400 },
1688
+ [_m],
1689
+ [0]
1690
+ ];
1691
+ n0_registry.registerError(SubscriptionAlreadyExistFault$, SubscriptionAlreadyExistFault);
1692
+ var SubscriptionCategoryNotFoundFault$ = [-3, n0, _SCNFF,
1693
+ { [_aQE]: [`SubscriptionCategoryNotFound`, 404], [_e]: _c, [_hE]: 404 },
1694
+ [_m],
1695
+ [0]
1696
+ ];
1697
+ n0_registry.registerError(SubscriptionCategoryNotFoundFault$, SubscriptionCategoryNotFoundFault);
1698
+ var SubscriptionNotFoundFault$ = [-3, n0, _SNFFu,
1699
+ { [_aQE]: [`SubscriptionNotFound`, 404], [_e]: _c, [_hE]: 404 },
1700
+ [_m],
1701
+ [0]
1702
+ ];
1703
+ n0_registry.registerError(SubscriptionNotFoundFault$, SubscriptionNotFoundFault);
1704
+ const errorTypeRegistries = [
1705
+ _s_registry,
1706
+ n0_registry,
1707
+ ];
1708
+ var AddSourceIdentifierToSubscriptionMessage$ = [3, n0, _ASITSM,
1709
+ 0,
1710
+ [_SN, _SI],
1711
+ [0, 0], 2
1712
+ ];
1713
+ var AddSourceIdentifierToSubscriptionResult$ = [3, n0, _ASITSR,
1714
+ 0,
1715
+ [_ES],
1716
+ [[() => EventSubscription$, 0]]
1717
+ ];
1718
+ var AddTagsToResourceMessage$ = [3, n0, _ATTRM,
1719
+ 0,
1720
+ [_RN, _T],
1721
+ [0, [() => TagList, 0]], 2
1722
+ ];
1723
+ var ApplyPendingMaintenanceActionMessage$ = [3, n0, _APMAM,
1724
+ 0,
1725
+ [_RI, _AA, _OIT],
1726
+ [0, 0, 0], 3
1727
+ ];
1728
+ var ApplyPendingMaintenanceActionResult$ = [3, n0, _APMAR,
1729
+ 0,
1730
+ [_RPMA],
1731
+ [[() => ResourcePendingMaintenanceActions$, 0]]
1732
+ ];
1733
+ var AvailabilityZone$ = [3, n0, _AZ,
1734
+ 0,
1735
+ [_N],
1736
+ [0]
1737
+ ];
1738
+ var Certificate$ = [3, n0, _C,
1739
+ 0,
1740
+ [_CI, _CT, _Th, _VF, _VT, _CA],
1741
+ [0, 0, 0, 4, 4, 0]
1742
+ ];
1743
+ var CertificateDetails$ = [3, n0, _CD,
1744
+ 0,
1745
+ [_CAI, _VT],
1746
+ [0, 4]
1747
+ ];
1748
+ var CertificateMessage$ = [3, n0, _CM,
1749
+ 0,
1750
+ [_Ce, _M],
1751
+ [[() => CertificateList, 0], 0]
1752
+ ];
1753
+ var CloudwatchLogsExportConfiguration$ = [3, n0, _CLEC,
1754
+ 0,
1755
+ [_ELT, _DLT],
1756
+ [64 | 0, 64 | 0]
1757
+ ];
1758
+ var ClusterMasterUserSecret$ = [3, n0, _CMUS,
1759
+ 0,
1760
+ [_SA, _SS, _KKI],
1761
+ [0, 0, 0]
1762
+ ];
1763
+ var CopyDBClusterParameterGroupMessage$ = [3, n0, _CDBCPGM,
1764
+ 0,
1765
+ [_SDBCPGI, _TDBCPGI, _TDBCPGD, _T],
1766
+ [0, 0, 0, [() => TagList, 0]], 3
1767
+ ];
1768
+ var CopyDBClusterParameterGroupResult$ = [3, n0, _CDBCPGR,
1769
+ 0,
1770
+ [_DBCPG],
1771
+ [() => DBClusterParameterGroup$]
1772
+ ];
1773
+ var CopyDBClusterSnapshotMessage$ = [3, n0, _CDBCSM,
1774
+ 0,
1775
+ [_SDBCSI, _TDBCSI, _KKI, _PSU, _CTo, _T],
1776
+ [0, 0, 0, 0, 2, [() => TagList, 0]], 2
1777
+ ];
1778
+ var CopyDBClusterSnapshotResult$ = [3, n0, _CDBCSR,
1779
+ 0,
1780
+ [_DBCS],
1781
+ [[() => DBClusterSnapshot$, 0]]
1782
+ ];
1783
+ var CreateDBClusterMessage$ = [3, n0, _CDBCM,
1784
+ 0,
1785
+ [_DBCI, _E, _AZv, _BRP, _DBCPGN, _VSGI, _DBSGN, _EV, _P, _MU, _MUP, _PBW, _PMW, _T, _SE, _KKI, _PSU, _ECLE, _DP, _GCI, _ST, _SVSC, _MMUP, _MUSKKI, _NT],
1786
+ [0, 0, [() => AvailabilityZones, 0], 1, 0, [() => VpcSecurityGroupIdList, 0], 0, 0, 1, 0, 0, 0, 0, [() => TagList, 0], 2, 0, 0, 64 | 0, 2, 0, 0, () => ServerlessV2ScalingConfiguration$, 2, 0, 0], 2
1787
+ ];
1788
+ var CreateDBClusterParameterGroupMessage$ = [3, n0, _CDBCPGMr,
1789
+ 0,
1790
+ [_DBCPGN, _DBPGF, _D, _T],
1791
+ [0, 0, 0, [() => TagList, 0]], 3
1792
+ ];
1793
+ var CreateDBClusterParameterGroupResult$ = [3, n0, _CDBCPGRr,
1794
+ 0,
1795
+ [_DBCPG],
1796
+ [() => DBClusterParameterGroup$]
1797
+ ];
1798
+ var CreateDBClusterResult$ = [3, n0, _CDBCR,
1799
+ 0,
1800
+ [_DBC],
1801
+ [[() => DBCluster$, 0]]
1802
+ ];
1803
+ var CreateDBClusterSnapshotMessage$ = [3, n0, _CDBCSMr,
1804
+ 0,
1805
+ [_DBCSI, _DBCI, _T],
1806
+ [0, 0, [() => TagList, 0]], 2
1807
+ ];
1808
+ var CreateDBClusterSnapshotResult$ = [3, n0, _CDBCSRr,
1809
+ 0,
1810
+ [_DBCS],
1811
+ [[() => DBClusterSnapshot$, 0]]
1812
+ ];
1813
+ var CreateDBInstanceMessage$ = [3, n0, _CDBIM,
1814
+ 0,
1815
+ [_DBII, _DBIC, _E, _DBCI, _AZ, _PMW, _AMVU, _T, _CTTS, _PT, _EPI, _PIKMSKI, _CACI],
1816
+ [0, 0, 0, 0, 0, 0, 2, [() => TagList, 0], 2, 1, 2, 0, 0], 4
1817
+ ];
1818
+ var CreateDBInstanceResult$ = [3, n0, _CDBIR,
1819
+ 0,
1820
+ [_DBI],
1821
+ [[() => DBInstance$, 0]]
1822
+ ];
1823
+ var CreateDBSubnetGroupMessage$ = [3, n0, _CDBSGM,
1824
+ 0,
1825
+ [_DBSGN, _DBSGD, _SIu, _T],
1826
+ [0, 0, [() => SubnetIdentifierList, 0], [() => TagList, 0]], 3
1827
+ ];
1828
+ var CreateDBSubnetGroupResult$ = [3, n0, _CDBSGR,
1829
+ 0,
1830
+ [_DBSG],
1831
+ [[() => DBSubnetGroup$, 0]]
1832
+ ];
1833
+ var CreateEventSubscriptionMessage$ = [3, n0, _CESM,
1834
+ 0,
1835
+ [_SN, _STA, _STo, _EC, _SIo, _En, _T],
1836
+ [0, 0, 0, [() => EventCategoriesList, 0], [() => SourceIdsList, 0], 2, [() => TagList, 0]], 2
1837
+ ];
1838
+ var CreateEventSubscriptionResult$ = [3, n0, _CESR,
1839
+ 0,
1840
+ [_ES],
1841
+ [[() => EventSubscription$, 0]]
1842
+ ];
1843
+ var CreateGlobalClusterMessage$ = [3, n0, _CGCM,
1844
+ 0,
1845
+ [_GCI, _SDBCI, _E, _EV, _DP, _DN, _SE],
1846
+ [0, 0, 0, 0, 2, 0, 2], 1
1847
+ ];
1848
+ var CreateGlobalClusterResult$ = [3, n0, _CGCR,
1849
+ 0,
1850
+ [_GC],
1851
+ [[() => GlobalCluster$, 0]]
1852
+ ];
1853
+ var DBCluster$ = [3, n0, _DBC,
1854
+ 0,
1855
+ [_AZv, _BRP, _DBCI, _DBCPG, _DBSG, _S, _PP, _ERT, _End, _RE, _MAZ, _E, _EV, _LRT, _P, _MU, _PBW, _PMW, _RSI, _RRI, _DBCM, _VSG, _HZI, _SE, _KKI, _DCRI, _DBCA, _AR, _CGI, _CCT, _ECLEn, _DP, _IOONAMT, _ST, _SVSC, _MUS, _NT],
1856
+ [[() => AvailabilityZones, 0], 1, 0, 0, 0, 0, 0, 4, 0, 0, 2, 0, 0, 4, 1, 0, 0, 0, 0, [() => ReadReplicaIdentifierList, 0], [() => DBClusterMemberList, 0], [() => VpcSecurityGroupMembershipList, 0], 0, 2, 0, 0, 0, [() => DBClusterRoles, 0], 0, 4, 64 | 0, 2, 4, 0, () => ServerlessV2ScalingConfigurationInfo$, () => ClusterMasterUserSecret$, 0]
1857
+ ];
1858
+ var DBClusterMember$ = [3, n0, _DBCMl,
1859
+ 0,
1860
+ [_DBII, _ICW, _DBCPGS, _PT],
1861
+ [0, 2, 0, 1]
1862
+ ];
1863
+ var DBClusterMessage$ = [3, n0, _DBCMlu,
1864
+ 0,
1865
+ [_M, _DBCl],
1866
+ [0, [() => DBClusterList, 0]]
1867
+ ];
1868
+ var DBClusterParameterGroup$ = [3, n0, _DBCPG,
1869
+ 0,
1870
+ [_DBCPGN, _DBPGF, _D, _DBCPGA],
1871
+ [0, 0, 0, 0]
1872
+ ];
1873
+ var DBClusterParameterGroupDetails$ = [3, n0, _DBCPGD,
1874
+ 0,
1875
+ [_Pa, _M],
1876
+ [[() => ParametersList, 0], 0]
1877
+ ];
1878
+ var DBClusterParameterGroupNameMessage$ = [3, n0, _DBCPGNM,
1879
+ 0,
1880
+ [_DBCPGN],
1881
+ [0]
1882
+ ];
1883
+ var DBClusterParameterGroupsMessage$ = [3, n0, _DBCPGM,
1884
+ 0,
1885
+ [_M, _DBCPGl],
1886
+ [0, [() => DBClusterParameterGroupList, 0]]
1887
+ ];
1888
+ var DBClusterRole$ = [3, n0, _DBCR,
1889
+ 0,
1890
+ [_RA, _S],
1891
+ [0, 0]
1892
+ ];
1893
+ var DBClusterSnapshot$ = [3, n0, _DBCS,
1894
+ 0,
1895
+ [_AZv, _DBCSI, _DBCI, _SCT, _E, _S, _P, _VI, _CCT, _MU, _EV, _STn, _PP, _SE, _KKI, _DBCSA, _SDBCSA, _ST],
1896
+ [[() => AvailabilityZones, 0], 0, 0, 4, 0, 0, 1, 0, 4, 0, 0, 0, 1, 2, 0, 0, 0, 0]
1897
+ ];
1898
+ var DBClusterSnapshotAttribute$ = [3, n0, _DBCSAl,
1899
+ 0,
1900
+ [_AN, _AV],
1901
+ [0, [() => AttributeValueList, 0]]
1902
+ ];
1903
+ var DBClusterSnapshotAttributesResult$ = [3, n0, _DBCSAR,
1904
+ 0,
1905
+ [_DBCSI, _DBCSAlu],
1906
+ [0, [() => DBClusterSnapshotAttributeList, 0]]
1907
+ ];
1908
+ var DBClusterSnapshotMessage$ = [3, n0, _DBCSM,
1909
+ 0,
1910
+ [_M, _DBCSl],
1911
+ [0, [() => DBClusterSnapshotList, 0]]
1912
+ ];
1913
+ var DBEngineVersion$ = [3, n0, _DBEV,
1914
+ 0,
1915
+ [_E, _EV, _DBPGF, _DBED, _DBEVD, _VUT, _ELTx, _SLETCL, _SCACI, _SCRWR, _SVFS],
1916
+ [0, 0, 0, 0, 0, [() => ValidUpgradeTargetList, 0], 64 | 0, 2, 64 | 0, 2, () => ServerlessV2FeaturesSupport$]
1917
+ ];
1918
+ var DBEngineVersionMessage$ = [3, n0, _DBEVM,
1919
+ 0,
1920
+ [_M, _DBEVn],
1921
+ [0, [() => DBEngineVersionList, 0]]
1922
+ ];
1923
+ var DBInstance$ = [3, n0, _DBI,
1924
+ 0,
1925
+ [_DBII, _DBIC, _E, _DBIS, _End, _ICT, _PBW, _BRP, _VSG, _AZ, _DBSG, _PMW, _PMV, _LRT, _EV, _AMVU, _PA, _SIt, _DBCI, _SE, _KKI, _DRI, _CACI, _CTTS, _PT, _DBIA, _ECLEn, _CD, _PIE, _PIKMSKI],
1926
+ [0, 0, 0, 0, () => Endpoint$, 4, 0, 1, [() => VpcSecurityGroupMembershipList, 0], 0, [() => DBSubnetGroup$, 0], 0, () => PendingModifiedValues$, 4, 0, 2, 2, [() => DBInstanceStatusInfoList, 0], 0, 2, 0, 0, 0, 2, 1, 0, 64 | 0, () => CertificateDetails$, 2, 0]
1927
+ ];
1928
+ var DBInstanceMessage$ = [3, n0, _DBIM,
1929
+ 0,
1930
+ [_M, _DBIn],
1931
+ [0, [() => DBInstanceList, 0]]
1932
+ ];
1933
+ var DBInstanceStatusInfo$ = [3, n0, _DBISI,
1934
+ 0,
1935
+ [_STt, _No, _S, _Me],
1936
+ [0, 2, 0, 0]
1937
+ ];
1938
+ var DBSubnetGroup$ = [3, n0, _DBSG,
1939
+ 0,
1940
+ [_DBSGN, _DBSGD, _VI, _SGS, _Su, _DBSGA, _SNT],
1941
+ [0, 0, 0, 0, [() => SubnetList, 0], 0, 64 | 0]
1942
+ ];
1943
+ var DBSubnetGroupMessage$ = [3, n0, _DBSGM,
1944
+ 0,
1945
+ [_M, _DBSGu],
1946
+ [0, [() => DBSubnetGroups, 0]]
1947
+ ];
1948
+ var DeleteDBClusterMessage$ = [3, n0, _DDBCM,
1949
+ 0,
1950
+ [_DBCI, _SFS, _FDBSI],
1951
+ [0, 2, 0], 1
1952
+ ];
1953
+ var DeleteDBClusterParameterGroupMessage$ = [3, n0, _DDBCPGM,
1954
+ 0,
1955
+ [_DBCPGN],
1956
+ [0], 1
1957
+ ];
1958
+ var DeleteDBClusterResult$ = [3, n0, _DDBCR,
1959
+ 0,
1960
+ [_DBC],
1961
+ [[() => DBCluster$, 0]]
1962
+ ];
1963
+ var DeleteDBClusterSnapshotMessage$ = [3, n0, _DDBCSM,
1964
+ 0,
1965
+ [_DBCSI],
1966
+ [0], 1
1967
+ ];
1968
+ var DeleteDBClusterSnapshotResult$ = [3, n0, _DDBCSR,
1969
+ 0,
1970
+ [_DBCS],
1971
+ [[() => DBClusterSnapshot$, 0]]
1972
+ ];
1973
+ var DeleteDBInstanceMessage$ = [3, n0, _DDBIM,
1974
+ 0,
1975
+ [_DBII],
1976
+ [0], 1
1977
+ ];
1978
+ var DeleteDBInstanceResult$ = [3, n0, _DDBIR,
1979
+ 0,
1980
+ [_DBI],
1981
+ [[() => DBInstance$, 0]]
1982
+ ];
1983
+ var DeleteDBSubnetGroupMessage$ = [3, n0, _DDBSGM,
1984
+ 0,
1985
+ [_DBSGN],
1986
+ [0], 1
1987
+ ];
1988
+ var DeleteEventSubscriptionMessage$ = [3, n0, _DESM,
1989
+ 0,
1990
+ [_SN],
1991
+ [0], 1
1992
+ ];
1993
+ var DeleteEventSubscriptionResult$ = [3, n0, _DESR,
1994
+ 0,
1995
+ [_ES],
1996
+ [[() => EventSubscription$, 0]]
1997
+ ];
1998
+ var DeleteGlobalClusterMessage$ = [3, n0, _DGCM,
1999
+ 0,
2000
+ [_GCI],
2001
+ [0], 1
2002
+ ];
2003
+ var DeleteGlobalClusterResult$ = [3, n0, _DGCR,
2004
+ 0,
2005
+ [_GC],
2006
+ [[() => GlobalCluster$, 0]]
2007
+ ];
2008
+ var DescribeCertificatesMessage$ = [3, n0, _DCM,
2009
+ 0,
2010
+ [_CI, _F, _MR, _M],
2011
+ [0, [() => FilterList, 0], 1, 0]
2012
+ ];
2013
+ var DescribeDBClusterParameterGroupsMessage$ = [3, n0, _DDBCPGMe,
2014
+ 0,
2015
+ [_DBCPGN, _F, _MR, _M],
2016
+ [0, [() => FilterList, 0], 1, 0]
2017
+ ];
2018
+ var DescribeDBClusterParametersMessage$ = [3, n0, _DDBCPM,
2019
+ 0,
2020
+ [_DBCPGN, _So, _F, _MR, _M],
2021
+ [0, 0, [() => FilterList, 0], 1, 0], 1
2022
+ ];
2023
+ var DescribeDBClustersMessage$ = [3, n0, _DDBCMe,
2024
+ 0,
2025
+ [_DBCI, _F, _MR, _M],
2026
+ [0, [() => FilterList, 0], 1, 0]
2027
+ ];
2028
+ var DescribeDBClusterSnapshotAttributesMessage$ = [3, n0, _DDBCSAM,
2029
+ 0,
2030
+ [_DBCSI],
2031
+ [0], 1
2032
+ ];
2033
+ var DescribeDBClusterSnapshotAttributesResult$ = [3, n0, _DDBCSAR,
2034
+ 0,
2035
+ [_DBCSAR],
2036
+ [[() => DBClusterSnapshotAttributesResult$, 0]]
2037
+ ];
2038
+ var DescribeDBClusterSnapshotsMessage$ = [3, n0, _DDBCSMe,
2039
+ 0,
2040
+ [_DBCI, _DBCSI, _STn, _F, _MR, _M, _ISn, _IP],
2041
+ [0, 0, 0, [() => FilterList, 0], 1, 0, 2, 2]
2042
+ ];
2043
+ var DescribeDBEngineVersionsMessage$ = [3, n0, _DDBEVM,
2044
+ 0,
2045
+ [_E, _EV, _DBPGF, _F, _MR, _M, _DO, _LSCS, _LST],
2046
+ [0, 0, 0, [() => FilterList, 0], 1, 0, 2, 2, 2]
2047
+ ];
2048
+ var DescribeDBInstancesMessage$ = [3, n0, _DDBIMe,
2049
+ 0,
2050
+ [_DBII, _F, _MR, _M],
2051
+ [0, [() => FilterList, 0], 1, 0]
2052
+ ];
2053
+ var DescribeDBSubnetGroupsMessage$ = [3, n0, _DDBSGMe,
2054
+ 0,
2055
+ [_DBSGN, _F, _MR, _M],
2056
+ [0, [() => FilterList, 0], 1, 0]
2057
+ ];
2058
+ var DescribeEngineDefaultClusterParametersMessage$ = [3, n0, _DEDCPM,
2059
+ 0,
2060
+ [_DBPGF, _F, _MR, _M],
2061
+ [0, [() => FilterList, 0], 1, 0], 1
2062
+ ];
2063
+ var DescribeEngineDefaultClusterParametersResult$ = [3, n0, _DEDCPR,
2064
+ 0,
2065
+ [_ED],
2066
+ [[() => EngineDefaults$, 0]]
2067
+ ];
2068
+ var DescribeEventCategoriesMessage$ = [3, n0, _DECM,
2069
+ 0,
2070
+ [_STo, _F],
2071
+ [0, [() => FilterList, 0]]
2072
+ ];
2073
+ var DescribeEventsMessage$ = [3, n0, _DEM,
2074
+ 0,
2075
+ [_SI, _STo, _STta, _ET, _Du, _EC, _F, _MR, _M],
2076
+ [0, 0, 4, 4, 1, [() => EventCategoriesList, 0], [() => FilterList, 0], 1, 0]
2077
+ ];
2078
+ var DescribeEventSubscriptionsMessage$ = [3, n0, _DESMe,
2079
+ 0,
2080
+ [_SN, _F, _MR, _M],
2081
+ [0, [() => FilterList, 0], 1, 0]
2082
+ ];
2083
+ var DescribeGlobalClustersMessage$ = [3, n0, _DGCMe,
2084
+ 0,
2085
+ [_GCI, _F, _MR, _M],
2086
+ [0, [() => FilterList, 0], 1, 0]
2087
+ ];
2088
+ var DescribeOrderableDBInstanceOptionsMessage$ = [3, n0, _DODBIOM,
2089
+ 0,
2090
+ [_E, _EV, _DBIC, _LM, _V, _F, _MR, _M],
2091
+ [0, 0, 0, 0, 2, [() => FilterList, 0], 1, 0], 1
2092
+ ];
2093
+ var DescribePendingMaintenanceActionsMessage$ = [3, n0, _DPMAM,
2094
+ 0,
2095
+ [_RI, _F, _M, _MR],
2096
+ [0, [() => FilterList, 0], 0, 1]
2097
+ ];
2098
+ var Endpoint$ = [3, n0, _End,
2099
+ 0,
2100
+ [_A, _P, _HZI],
2101
+ [0, 1, 0]
2102
+ ];
2103
+ var EngineDefaults$ = [3, n0, _ED,
2104
+ 0,
2105
+ [_DBPGF, _M, _Pa],
2106
+ [0, 0, [() => ParametersList, 0]]
2107
+ ];
2108
+ var Event$ = [3, n0, _Ev,
2109
+ 0,
2110
+ [_SI, _STo, _Me, _EC, _Da, _SAo],
2111
+ [0, 0, 0, [() => EventCategoriesList, 0], 4, 0]
2112
+ ];
2113
+ var EventCategoriesMap$ = [3, n0, _ECM,
2114
+ 0,
2115
+ [_STo, _EC],
2116
+ [0, [() => EventCategoriesList, 0]]
2117
+ ];
2118
+ var EventCategoriesMessage$ = [3, n0, _ECMv,
2119
+ 0,
2120
+ [_ECML],
2121
+ [[() => EventCategoriesMapList, 0]]
2122
+ ];
2123
+ var EventsMessage$ = [3, n0, _EM,
2124
+ 0,
2125
+ [_M, _Eve],
2126
+ [0, [() => EventList, 0]]
2127
+ ];
2128
+ var EventSubscription$ = [3, n0, _ES,
2129
+ 0,
2130
+ [_CAIu, _CSI, _STA, _S, _SCTu, _STo, _SIL, _ECL, _En, _ESA],
2131
+ [0, 0, 0, 0, 0, 0, [() => SourceIdsList, 0], [() => EventCategoriesList, 0], 2, 0]
2132
+ ];
2133
+ var EventSubscriptionsMessage$ = [3, n0, _ESM,
2134
+ 0,
2135
+ [_M, _ESL],
2136
+ [0, [() => EventSubscriptionsList, 0]]
2137
+ ];
2138
+ var FailoverDBClusterMessage$ = [3, n0, _FDBCM,
2139
+ 0,
2140
+ [_DBCI, _TDBII],
2141
+ [0, 0]
2142
+ ];
2143
+ var FailoverDBClusterResult$ = [3, n0, _FDBCR,
2144
+ 0,
2145
+ [_DBC],
2146
+ [[() => DBCluster$, 0]]
2147
+ ];
2148
+ var FailoverGlobalClusterMessage$ = [3, n0, _FGCM,
2149
+ 0,
2150
+ [_GCI, _TDCI, _ADL, _Sw],
2151
+ [0, 0, 2, 2], 2
2152
+ ];
2153
+ var FailoverGlobalClusterResult$ = [3, n0, _FGCR,
2154
+ 0,
2155
+ [_GC],
2156
+ [[() => GlobalCluster$, 0]]
2157
+ ];
2158
+ var FailoverState$ = [3, n0, _FS,
2159
+ 0,
2160
+ [_S, _FDCA, _TDCA, _IDLA],
2161
+ [0, 0, 0, 2]
2162
+ ];
2163
+ var Filter$ = [3, n0, _Fi,
2164
+ 0,
2165
+ [_N, _Va],
2166
+ [0, [() => FilterValueList, 0]], 2
2167
+ ];
2168
+ var GlobalCluster$ = [3, n0, _GC,
2169
+ 0,
2170
+ [_GCI, _GCRI, _GCA, _S, _E, _EV, _DN, _SE, _DP, _GCM, _FS, _TL],
2171
+ [0, 0, 0, 0, 0, 0, 0, 2, 2, [() => GlobalClusterMemberList, 0], () => FailoverState$, [() => TagList, 0]]
2172
+ ];
2173
+ var GlobalClusterMember$ = [3, n0, _GCMl,
2174
+ 0,
2175
+ [_DBCA, _R, _IW, _SSy],
2176
+ [0, 64 | 0, 2, 0]
2177
+ ];
2178
+ var GlobalClustersMessage$ = [3, n0, _GCMlo,
2179
+ 0,
2180
+ [_M, _GCl],
2181
+ [0, [() => GlobalClusterList, 0]]
2182
+ ];
2183
+ var ListTagsForResourceMessage$ = [3, n0, _LTFRM,
2184
+ 0,
2185
+ [_RN, _F],
2186
+ [0, [() => FilterList, 0]], 1
2187
+ ];
2188
+ var ModifyDBClusterMessage$ = [3, n0, _MDBCM,
2189
+ 0,
2190
+ [_DBCI, _NDBCI, _AI, _BRP, _DBCPGN, _VSGI, _P, _MUP, _PBW, _PMW, _CLEC, _EV, _AMVUl, _DP, _ST, _SVSC, _MMUP, _MUSKKI, _RMUP, _NT],
2191
+ [0, 0, 2, 1, 0, [() => VpcSecurityGroupIdList, 0], 1, 0, 0, 0, () => CloudwatchLogsExportConfiguration$, 0, 2, 2, 0, () => ServerlessV2ScalingConfiguration$, 2, 0, 2, 0], 1
2192
+ ];
2193
+ var ModifyDBClusterParameterGroupMessage$ = [3, n0, _MDBCPGM,
2194
+ 0,
2195
+ [_DBCPGN, _Pa],
2196
+ [0, [() => ParametersList, 0]], 2
2197
+ ];
2198
+ var ModifyDBClusterResult$ = [3, n0, _MDBCR,
2199
+ 0,
2200
+ [_DBC],
2201
+ [[() => DBCluster$, 0]]
2202
+ ];
2203
+ var ModifyDBClusterSnapshotAttributeMessage$ = [3, n0, _MDBCSAM,
2204
+ 0,
2205
+ [_DBCSI, _AN, _VTA, _VTR],
2206
+ [0, 0, [() => AttributeValueList, 0], [() => AttributeValueList, 0]], 2
2207
+ ];
2208
+ var ModifyDBClusterSnapshotAttributeResult$ = [3, n0, _MDBCSAR,
2209
+ 0,
2210
+ [_DBCSAR],
2211
+ [[() => DBClusterSnapshotAttributesResult$, 0]]
2212
+ ];
2213
+ var ModifyDBInstanceMessage$ = [3, n0, _MDBIM,
2214
+ 0,
2215
+ [_DBII, _DBIC, _AI, _PMW, _AMVU, _NDBII, _CACI, _CTTS, _PT, _EPI, _PIKMSKI, _CRR],
2216
+ [0, 0, 2, 0, 2, 0, 0, 2, 1, 2, 0, 2], 1
2217
+ ];
2218
+ var ModifyDBInstanceResult$ = [3, n0, _MDBIR,
2219
+ 0,
2220
+ [_DBI],
2221
+ [[() => DBInstance$, 0]]
2222
+ ];
2223
+ var ModifyDBSubnetGroupMessage$ = [3, n0, _MDBSGM,
2224
+ 0,
2225
+ [_DBSGN, _SIu, _DBSGD],
2226
+ [0, [() => SubnetIdentifierList, 0], 0], 2
2227
+ ];
2228
+ var ModifyDBSubnetGroupResult$ = [3, n0, _MDBSGR,
2229
+ 0,
2230
+ [_DBSG],
2231
+ [[() => DBSubnetGroup$, 0]]
2232
+ ];
2233
+ var ModifyEventSubscriptionMessage$ = [3, n0, _MESM,
2234
+ 0,
2235
+ [_SN, _STA, _STo, _EC, _En],
2236
+ [0, 0, 0, [() => EventCategoriesList, 0], 2], 1
2237
+ ];
2238
+ var ModifyEventSubscriptionResult$ = [3, n0, _MESR,
2239
+ 0,
2240
+ [_ES],
2241
+ [[() => EventSubscription$, 0]]
2242
+ ];
2243
+ var ModifyGlobalClusterMessage$ = [3, n0, _MGCM,
2244
+ 0,
2245
+ [_GCI, _NGCI, _DP],
2246
+ [0, 0, 2], 1
2247
+ ];
2248
+ var ModifyGlobalClusterResult$ = [3, n0, _MGCR,
2249
+ 0,
2250
+ [_GC],
2251
+ [[() => GlobalCluster$, 0]]
2252
+ ];
2253
+ var OrderableDBInstanceOption$ = [3, n0, _ODBIO,
2254
+ 0,
2255
+ [_E, _EV, _DBIC, _LM, _AZv, _V, _ST],
2256
+ [0, 0, 0, 0, [() => AvailabilityZoneList, 0], 2, 0]
2257
+ ];
2258
+ var OrderableDBInstanceOptionsMessage$ = [3, n0, _ODBIOM,
2259
+ 0,
2260
+ [_ODBIOr, _M],
2261
+ [[() => OrderableDBInstanceOptionsList, 0], 0]
2262
+ ];
2263
+ var Parameter$ = [3, n0, _Par,
2264
+ 0,
2265
+ [_PN, _PV, _D, _So, _AT, _DT, _AVl, _IM, _MEV, _AM],
2266
+ [0, 0, 0, 0, 0, 0, 0, 2, 0, 0]
2267
+ ];
2268
+ var PendingCloudwatchLogsExports$ = [3, n0, _PCLE,
2269
+ 0,
2270
+ [_LTTE, _LTTD],
2271
+ [64 | 0, 64 | 0]
2272
+ ];
2273
+ var PendingMaintenanceAction$ = [3, n0, _PMA,
2274
+ 0,
2275
+ [_Ac, _AAAD, _FAD, _OIS, _CAD, _D],
2276
+ [0, 4, 4, 0, 4, 0]
2277
+ ];
2278
+ var PendingMaintenanceActionsMessage$ = [3, n0, _PMAM,
2279
+ 0,
2280
+ [_PMAe, _M],
2281
+ [[() => PendingMaintenanceActions, 0], 0]
2282
+ ];
2283
+ var PendingModifiedValues$ = [3, n0, _PMV,
2284
+ 0,
2285
+ [_DBIC, _AS, _MUP, _P, _BRP, _MAZ, _EV, _LM, _I, _DBII, _ST, _CACI, _DBSGN, _PCLE],
2286
+ [0, 1, 0, 1, 1, 2, 0, 0, 1, 0, 0, 0, 0, () => PendingCloudwatchLogsExports$]
2287
+ ];
2288
+ var RebootDBInstanceMessage$ = [3, n0, _RDBIM,
2289
+ 0,
2290
+ [_DBII, _FF],
2291
+ [0, 2], 1
2292
+ ];
2293
+ var RebootDBInstanceResult$ = [3, n0, _RDBIR,
2294
+ 0,
2295
+ [_DBI],
2296
+ [[() => DBInstance$, 0]]
2297
+ ];
2298
+ var RemoveFromGlobalClusterMessage$ = [3, n0, _RFGCM,
2299
+ 0,
2300
+ [_GCI, _DCI],
2301
+ [0, 0], 2
2302
+ ];
2303
+ var RemoveFromGlobalClusterResult$ = [3, n0, _RFGCR,
2304
+ 0,
2305
+ [_GC],
2306
+ [[() => GlobalCluster$, 0]]
2307
+ ];
2308
+ var RemoveSourceIdentifierFromSubscriptionMessage$ = [3, n0, _RSIFSM,
2309
+ 0,
2310
+ [_SN, _SI],
2311
+ [0, 0], 2
2312
+ ];
2313
+ var RemoveSourceIdentifierFromSubscriptionResult$ = [3, n0, _RSIFSR,
2314
+ 0,
2315
+ [_ES],
2316
+ [[() => EventSubscription$, 0]]
2317
+ ];
2318
+ var RemoveTagsFromResourceMessage$ = [3, n0, _RTFRM,
2319
+ 0,
2320
+ [_RN, _TK],
2321
+ [0, 64 | 0], 2
2322
+ ];
2323
+ var ResetDBClusterParameterGroupMessage$ = [3, n0, _RDBCPGM,
2324
+ 0,
2325
+ [_DBCPGN, _RAP, _Pa],
2326
+ [0, 2, [() => ParametersList, 0]], 1
2327
+ ];
2328
+ var ResourcePendingMaintenanceActions$ = [3, n0, _RPMA,
2329
+ 0,
2330
+ [_RI, _PMAD],
2331
+ [0, [() => PendingMaintenanceActionDetails, 0]]
2332
+ ];
2333
+ var RestoreDBClusterFromSnapshotMessage$ = [3, n0, _RDBCFSM,
2334
+ 0,
2335
+ [_DBCI, _SIn, _E, _AZv, _EV, _P, _DBSGN, _VSGI, _T, _KKI, _ECLE, _DP, _DBCPGN, _SVSC, _ST, _NT],
2336
+ [0, 0, 0, [() => AvailabilityZones, 0], 0, 1, 0, [() => VpcSecurityGroupIdList, 0], [() => TagList, 0], 0, 64 | 0, 2, 0, () => ServerlessV2ScalingConfiguration$, 0, 0], 3
2337
+ ];
2338
+ var RestoreDBClusterFromSnapshotResult$ = [3, n0, _RDBCFSR,
2339
+ 0,
2340
+ [_DBC],
2341
+ [[() => DBCluster$, 0]]
2342
+ ];
2343
+ var RestoreDBClusterToPointInTimeMessage$ = [3, n0, _RDBCTPITM,
2344
+ 0,
2345
+ [_DBCI, _SDBCI, _RT, _RTT, _ULRT, _P, _DBSGN, _VSGI, _T, _KKI, _ECLE, _DP, _SVSC, _ST, _NT],
2346
+ [0, 0, 0, 4, 2, 1, 0, [() => VpcSecurityGroupIdList, 0], [() => TagList, 0], 0, 64 | 0, 2, () => ServerlessV2ScalingConfiguration$, 0, 0], 2
2347
+ ];
2348
+ var RestoreDBClusterToPointInTimeResult$ = [3, n0, _RDBCTPITR,
2349
+ 0,
2350
+ [_DBC],
2351
+ [[() => DBCluster$, 0]]
2352
+ ];
2353
+ var ServerlessV2FeaturesSupport$ = [3, n0, _SVFS,
2354
+ 0,
2355
+ [_MC, _MCa],
2356
+ [1, 1]
2357
+ ];
2358
+ var ServerlessV2ScalingConfiguration$ = [3, n0, _SVSC,
2359
+ 0,
2360
+ [_MC, _MCa],
2361
+ [1, 1]
2362
+ ];
2363
+ var ServerlessV2ScalingConfigurationInfo$ = [3, n0, _SVSCI,
2364
+ 0,
2365
+ [_MC, _MCa],
2366
+ [1, 1]
2367
+ ];
2368
+ var StartDBClusterMessage$ = [3, n0, _SDBCM,
2369
+ 0,
2370
+ [_DBCI],
2371
+ [0], 1
2372
+ ];
2373
+ var StartDBClusterResult$ = [3, n0, _SDBCR,
2374
+ 0,
2375
+ [_DBC],
2376
+ [[() => DBCluster$, 0]]
2377
+ ];
2378
+ var StopDBClusterMessage$ = [3, n0, _SDBCMt,
2379
+ 0,
2380
+ [_DBCI],
2381
+ [0], 1
2382
+ ];
2383
+ var StopDBClusterResult$ = [3, n0, _SDBCRt,
2384
+ 0,
2385
+ [_DBC],
2386
+ [[() => DBCluster$, 0]]
2387
+ ];
2388
+ var Subnet$ = [3, n0, _Sub,
2389
+ 0,
2390
+ [_SIub, _SAZ, _SSu],
2391
+ [0, () => AvailabilityZone$, 0]
2392
+ ];
2393
+ var SwitchoverGlobalClusterMessage$ = [3, n0, _SGCM,
2394
+ 0,
2395
+ [_GCI, _TDCI],
2396
+ [0, 0], 2
2397
+ ];
2398
+ var SwitchoverGlobalClusterResult$ = [3, n0, _SGCR,
2399
+ 0,
2400
+ [_GC],
2401
+ [[() => GlobalCluster$, 0]]
2402
+ ];
2403
+ var Tag$ = [3, n0, _Ta,
2404
+ 0,
2405
+ [_K, _Val],
2406
+ [0, 0]
2407
+ ];
2408
+ var TagListMessage$ = [3, n0, _TLM,
2409
+ 0,
2410
+ [_TL],
2411
+ [[() => TagList, 0]]
2412
+ ];
2413
+ var UpgradeTarget$ = [3, n0, _UT,
2414
+ 0,
2415
+ [_E, _EV, _D, _AU, _IMVU],
2416
+ [0, 0, 0, 2, 2]
2417
+ ];
2418
+ var VpcSecurityGroupMembership$ = [3, n0, _VSGM,
2419
+ 0,
2420
+ [_VSGIp, _S],
2421
+ [0, 0]
2422
+ ];
2423
+ var __Unit = "unit";
2424
+ var AttributeValueList = [1, n0, _AVL,
2425
+ 0, [0,
2426
+ { [_xN]: _AVt }]
2427
+ ];
2428
+ var AvailabilityZoneList = [1, n0, _AZL,
2429
+ 0, [() => AvailabilityZone$,
2430
+ { [_xN]: _AZ }]
2431
+ ];
2432
+ var AvailabilityZones = [1, n0, _AZv,
2433
+ 0, [0,
2434
+ { [_xN]: _AZ }]
2435
+ ];
2436
+ var CertificateList = [1, n0, _CL,
2437
+ 0, [() => Certificate$,
2438
+ { [_xN]: _C }]
2439
+ ];
2440
+ var DBClusterList = [1, n0, _DBCL,
2441
+ 0, [() => DBCluster$,
2442
+ { [_xN]: _DBC }]
2443
+ ];
2444
+ var DBClusterMemberList = [1, n0, _DBCML,
2445
+ 0, [() => DBClusterMember$,
2446
+ { [_xN]: _DBCMl }]
2447
+ ];
2448
+ var DBClusterParameterGroupList = [1, n0, _DBCPGL,
2449
+ 0, [() => DBClusterParameterGroup$,
2450
+ { [_xN]: _DBCPG }]
2451
+ ];
2452
+ var DBClusterRoles = [1, n0, _DBCRl,
2453
+ 0, [() => DBClusterRole$,
2454
+ { [_xN]: _DBCR }]
2455
+ ];
2456
+ var DBClusterSnapshotAttributeList = [1, n0, _DBCSAL,
2457
+ 0, [() => DBClusterSnapshotAttribute$,
2458
+ { [_xN]: _DBCSAl }]
2459
+ ];
2460
+ var DBClusterSnapshotList = [1, n0, _DBCSL,
2461
+ 0, [() => DBClusterSnapshot$,
2462
+ { [_xN]: _DBCS }]
2463
+ ];
2464
+ var DBEngineVersionList = [1, n0, _DBEVL,
2465
+ 0, [() => DBEngineVersion$,
2466
+ { [_xN]: _DBEV }]
2467
+ ];
2468
+ var DBInstanceList = [1, n0, _DBIL,
2469
+ 0, [() => DBInstance$,
2470
+ { [_xN]: _DBI }]
2471
+ ];
2472
+ var DBInstanceStatusInfoList = [1, n0, _DBISIL,
2473
+ 0, [() => DBInstanceStatusInfo$,
2474
+ { [_xN]: _DBISI }]
2475
+ ];
2476
+ var DBSubnetGroups = [1, n0, _DBSGu,
2477
+ 0, [() => DBSubnetGroup$,
2478
+ { [_xN]: _DBSG }]
2479
+ ];
2480
+ var EventCategoriesList = [1, n0, _ECL,
2481
+ 0, [0,
2482
+ { [_xN]: _ECv }]
2483
+ ];
2484
+ var EventCategoriesMapList = [1, n0, _ECML,
2485
+ 0, [() => EventCategoriesMap$,
2486
+ { [_xN]: _ECM }]
2487
+ ];
2488
+ var EventList = [1, n0, _EL,
2489
+ 0, [() => Event$,
2490
+ { [_xN]: _Ev }]
2491
+ ];
2492
+ var EventSubscriptionsList = [1, n0, _ESL,
2493
+ 0, [() => EventSubscription$,
2494
+ { [_xN]: _ES }]
2495
+ ];
2496
+ var FilterList = [1, n0, _FL,
2497
+ 0, [() => Filter$,
2498
+ { [_xN]: _Fi }]
2499
+ ];
2500
+ var FilterValueList = [1, n0, _FVL,
2501
+ 0, [0,
2502
+ { [_xN]: _Val }]
2503
+ ];
2504
+ var GlobalClusterList = [1, n0, _GCL,
2505
+ 0, [() => GlobalCluster$,
2506
+ { [_xN]: _GCMl }]
2507
+ ];
2508
+ var GlobalClusterMemberList = [1, n0, _GCML,
2509
+ 0, [() => GlobalClusterMember$,
2510
+ { [_xN]: _GCMl }]
2511
+ ];
2512
+ var OrderableDBInstanceOptionsList = [1, n0, _ODBIOL,
2513
+ 0, [() => OrderableDBInstanceOption$,
2514
+ { [_xN]: _ODBIO }]
2515
+ ];
2516
+ var ParametersList = [1, n0, _PL,
2517
+ 0, [() => Parameter$,
2518
+ { [_xN]: _Par }]
2519
+ ];
2520
+ var PendingMaintenanceActionDetails = [1, n0, _PMAD,
2521
+ 0, [() => PendingMaintenanceAction$,
2522
+ { [_xN]: _PMA }]
2523
+ ];
2524
+ var PendingMaintenanceActions = [1, n0, _PMAe,
2525
+ 0, [() => ResourcePendingMaintenanceActions$,
2526
+ { [_xN]: _RPMA }]
2527
+ ];
2528
+ var ReadReplicaIdentifierList = [1, n0, _RRIL,
2529
+ 0, [0,
2530
+ { [_xN]: _RRIe }]
2531
+ ];
2532
+ var SourceIdsList = [1, n0, _SIL,
2533
+ 0, [0,
2534
+ { [_xN]: _SIou }]
2535
+ ];
2536
+ var SubnetIdentifierList = [1, n0, _SILu,
2537
+ 0, [0,
2538
+ { [_xN]: _SIub }]
2539
+ ];
2540
+ var SubnetList = [1, n0, _SL,
2541
+ 0, [() => Subnet$,
2542
+ { [_xN]: _Sub }]
2543
+ ];
2544
+ var TagList = [1, n0, _TL,
2545
+ 0, [() => Tag$,
2546
+ { [_xN]: _Ta }]
2547
+ ];
2548
+ var ValidUpgradeTargetList = [1, n0, _VUTL,
2549
+ 0, [() => UpgradeTarget$,
2550
+ { [_xN]: _UT }]
2551
+ ];
2552
+ var VpcSecurityGroupIdList = [1, n0, _VSGIL,
2553
+ 0, [0,
2554
+ { [_xN]: _VSGIp }]
2555
+ ];
2556
+ var VpcSecurityGroupMembershipList = [1, n0, _VSGML,
2557
+ 0, [() => VpcSecurityGroupMembership$,
2558
+ { [_xN]: _VSGM }]
2559
+ ];
2560
+ var AddSourceIdentifierToSubscription$ = [9, n0, _ASITS,
2561
+ 0, () => AddSourceIdentifierToSubscriptionMessage$, () => AddSourceIdentifierToSubscriptionResult$
2562
+ ];
2563
+ var AddTagsToResource$ = [9, n0, _ATTR,
2564
+ 0, () => AddTagsToResourceMessage$, () => __Unit
2565
+ ];
2566
+ var ApplyPendingMaintenanceAction$ = [9, n0, _APMA,
2567
+ 0, () => ApplyPendingMaintenanceActionMessage$, () => ApplyPendingMaintenanceActionResult$
2568
+ ];
2569
+ var CopyDBClusterParameterGroup$ = [9, n0, _CDBCPG,
2570
+ 0, () => CopyDBClusterParameterGroupMessage$, () => CopyDBClusterParameterGroupResult$
2571
+ ];
2572
+ var CopyDBClusterSnapshot$ = [9, n0, _CDBCS,
2573
+ 0, () => CopyDBClusterSnapshotMessage$, () => CopyDBClusterSnapshotResult$
2574
+ ];
2575
+ var CreateDBCluster$ = [9, n0, _CDBC,
2576
+ 0, () => CreateDBClusterMessage$, () => CreateDBClusterResult$
2577
+ ];
2578
+ var CreateDBClusterParameterGroup$ = [9, n0, _CDBCPGr,
2579
+ 0, () => CreateDBClusterParameterGroupMessage$, () => CreateDBClusterParameterGroupResult$
2580
+ ];
2581
+ var CreateDBClusterSnapshot$ = [9, n0, _CDBCSr,
2582
+ 0, () => CreateDBClusterSnapshotMessage$, () => CreateDBClusterSnapshotResult$
2583
+ ];
2584
+ var CreateDBInstance$ = [9, n0, _CDBI,
2585
+ 0, () => CreateDBInstanceMessage$, () => CreateDBInstanceResult$
2586
+ ];
2587
+ var CreateDBSubnetGroup$ = [9, n0, _CDBSG,
2588
+ 0, () => CreateDBSubnetGroupMessage$, () => CreateDBSubnetGroupResult$
2589
+ ];
2590
+ var CreateEventSubscription$ = [9, n0, _CES,
2591
+ 0, () => CreateEventSubscriptionMessage$, () => CreateEventSubscriptionResult$
2592
+ ];
2593
+ var CreateGlobalCluster$ = [9, n0, _CGC,
2594
+ 0, () => CreateGlobalClusterMessage$, () => CreateGlobalClusterResult$
2595
+ ];
2596
+ var DeleteDBCluster$ = [9, n0, _DDBC,
2597
+ 0, () => DeleteDBClusterMessage$, () => DeleteDBClusterResult$
2598
+ ];
2599
+ var DeleteDBClusterParameterGroup$ = [9, n0, _DDBCPG,
2600
+ 0, () => DeleteDBClusterParameterGroupMessage$, () => __Unit
2601
+ ];
2602
+ var DeleteDBClusterSnapshot$ = [9, n0, _DDBCS,
2603
+ 0, () => DeleteDBClusterSnapshotMessage$, () => DeleteDBClusterSnapshotResult$
2604
+ ];
2605
+ var DeleteDBInstance$ = [9, n0, _DDBI,
2606
+ 0, () => DeleteDBInstanceMessage$, () => DeleteDBInstanceResult$
2607
+ ];
2608
+ var DeleteDBSubnetGroup$ = [9, n0, _DDBSG,
2609
+ 0, () => DeleteDBSubnetGroupMessage$, () => __Unit
2610
+ ];
2611
+ var DeleteEventSubscription$ = [9, n0, _DES,
2612
+ 0, () => DeleteEventSubscriptionMessage$, () => DeleteEventSubscriptionResult$
2613
+ ];
2614
+ var DeleteGlobalCluster$ = [9, n0, _DGC,
2615
+ 0, () => DeleteGlobalClusterMessage$, () => DeleteGlobalClusterResult$
2616
+ ];
2617
+ var DescribeCertificates$ = [9, n0, _DC,
2618
+ 0, () => DescribeCertificatesMessage$, () => CertificateMessage$
2619
+ ];
2620
+ var DescribeDBClusterParameterGroups$ = [9, n0, _DDBCPGe,
2621
+ 0, () => DescribeDBClusterParameterGroupsMessage$, () => DBClusterParameterGroupsMessage$
2622
+ ];
2623
+ var DescribeDBClusterParameters$ = [9, n0, _DDBCP,
2624
+ 0, () => DescribeDBClusterParametersMessage$, () => DBClusterParameterGroupDetails$
2625
+ ];
2626
+ var DescribeDBClusters$ = [9, n0, _DDBCe,
2627
+ 0, () => DescribeDBClustersMessage$, () => DBClusterMessage$
2628
+ ];
2629
+ var DescribeDBClusterSnapshotAttributes$ = [9, n0, _DDBCSA,
2630
+ 0, () => DescribeDBClusterSnapshotAttributesMessage$, () => DescribeDBClusterSnapshotAttributesResult$
2631
+ ];
2632
+ var DescribeDBClusterSnapshots$ = [9, n0, _DDBCSe,
2633
+ 0, () => DescribeDBClusterSnapshotsMessage$, () => DBClusterSnapshotMessage$
2634
+ ];
2635
+ var DescribeDBEngineVersions$ = [9, n0, _DDBEV,
2636
+ 0, () => DescribeDBEngineVersionsMessage$, () => DBEngineVersionMessage$
2637
+ ];
2638
+ var DescribeDBInstances$ = [9, n0, _DDBIe,
2639
+ 0, () => DescribeDBInstancesMessage$, () => DBInstanceMessage$
2640
+ ];
2641
+ var DescribeDBSubnetGroups$ = [9, n0, _DDBSGe,
2642
+ 0, () => DescribeDBSubnetGroupsMessage$, () => DBSubnetGroupMessage$
2643
+ ];
2644
+ var DescribeEngineDefaultClusterParameters$ = [9, n0, _DEDCP,
2645
+ 0, () => DescribeEngineDefaultClusterParametersMessage$, () => DescribeEngineDefaultClusterParametersResult$
2646
+ ];
2647
+ var DescribeEventCategories$ = [9, n0, _DEC,
2648
+ 0, () => DescribeEventCategoriesMessage$, () => EventCategoriesMessage$
2649
+ ];
2650
+ var DescribeEvents$ = [9, n0, _DE,
2651
+ 0, () => DescribeEventsMessage$, () => EventsMessage$
2652
+ ];
2653
+ var DescribeEventSubscriptions$ = [9, n0, _DESe,
2654
+ 0, () => DescribeEventSubscriptionsMessage$, () => EventSubscriptionsMessage$
2655
+ ];
2656
+ var DescribeGlobalClusters$ = [9, n0, _DGCe,
2657
+ 0, () => DescribeGlobalClustersMessage$, () => GlobalClustersMessage$
2658
+ ];
2659
+ var DescribeOrderableDBInstanceOptions$ = [9, n0, _DODBIO,
2660
+ 0, () => DescribeOrderableDBInstanceOptionsMessage$, () => OrderableDBInstanceOptionsMessage$
2661
+ ];
2662
+ var DescribePendingMaintenanceActions$ = [9, n0, _DPMA,
2663
+ 0, () => DescribePendingMaintenanceActionsMessage$, () => PendingMaintenanceActionsMessage$
2664
+ ];
2665
+ var FailoverDBCluster$ = [9, n0, _FDBC,
2666
+ 0, () => FailoverDBClusterMessage$, () => FailoverDBClusterResult$
2667
+ ];
2668
+ var FailoverGlobalCluster$ = [9, n0, _FGC,
2669
+ 0, () => FailoverGlobalClusterMessage$, () => FailoverGlobalClusterResult$
2670
+ ];
2671
+ var ListTagsForResource$ = [9, n0, _LTFR,
2672
+ 0, () => ListTagsForResourceMessage$, () => TagListMessage$
2673
+ ];
2674
+ var ModifyDBCluster$ = [9, n0, _MDBC,
2675
+ 0, () => ModifyDBClusterMessage$, () => ModifyDBClusterResult$
2676
+ ];
2677
+ var ModifyDBClusterParameterGroup$ = [9, n0, _MDBCPG,
2678
+ 0, () => ModifyDBClusterParameterGroupMessage$, () => DBClusterParameterGroupNameMessage$
2679
+ ];
2680
+ var ModifyDBClusterSnapshotAttribute$ = [9, n0, _MDBCSA,
2681
+ 0, () => ModifyDBClusterSnapshotAttributeMessage$, () => ModifyDBClusterSnapshotAttributeResult$
2682
+ ];
2683
+ var ModifyDBInstance$ = [9, n0, _MDBI,
2684
+ 0, () => ModifyDBInstanceMessage$, () => ModifyDBInstanceResult$
2685
+ ];
2686
+ var ModifyDBSubnetGroup$ = [9, n0, _MDBSG,
2687
+ 0, () => ModifyDBSubnetGroupMessage$, () => ModifyDBSubnetGroupResult$
2688
+ ];
2689
+ var ModifyEventSubscription$ = [9, n0, _MES,
2690
+ 0, () => ModifyEventSubscriptionMessage$, () => ModifyEventSubscriptionResult$
2691
+ ];
2692
+ var ModifyGlobalCluster$ = [9, n0, _MGC,
2693
+ 0, () => ModifyGlobalClusterMessage$, () => ModifyGlobalClusterResult$
2694
+ ];
2695
+ var RebootDBInstance$ = [9, n0, _RDBI,
2696
+ 0, () => RebootDBInstanceMessage$, () => RebootDBInstanceResult$
2697
+ ];
2698
+ var RemoveFromGlobalCluster$ = [9, n0, _RFGC,
2699
+ 0, () => RemoveFromGlobalClusterMessage$, () => RemoveFromGlobalClusterResult$
2700
+ ];
2701
+ var RemoveSourceIdentifierFromSubscription$ = [9, n0, _RSIFS,
2702
+ 0, () => RemoveSourceIdentifierFromSubscriptionMessage$, () => RemoveSourceIdentifierFromSubscriptionResult$
2703
+ ];
2704
+ var RemoveTagsFromResource$ = [9, n0, _RTFR,
2705
+ 0, () => RemoveTagsFromResourceMessage$, () => __Unit
2706
+ ];
2707
+ var ResetDBClusterParameterGroup$ = [9, n0, _RDBCPG,
2708
+ 0, () => ResetDBClusterParameterGroupMessage$, () => DBClusterParameterGroupNameMessage$
2709
+ ];
2710
+ var RestoreDBClusterFromSnapshot$ = [9, n0, _RDBCFS,
2711
+ 0, () => RestoreDBClusterFromSnapshotMessage$, () => RestoreDBClusterFromSnapshotResult$
2712
+ ];
2713
+ var RestoreDBClusterToPointInTime$ = [9, n0, _RDBCTPIT,
2714
+ 0, () => RestoreDBClusterToPointInTimeMessage$, () => RestoreDBClusterToPointInTimeResult$
2715
+ ];
2716
+ var StartDBCluster$ = [9, n0, _SDBC,
2717
+ 0, () => StartDBClusterMessage$, () => StartDBClusterResult$
2718
+ ];
2719
+ var StopDBCluster$ = [9, n0, _SDBCt,
2720
+ 0, () => StopDBClusterMessage$, () => StopDBClusterResult$
2721
+ ];
2722
+ var SwitchoverGlobalCluster$ = [9, n0, _SGC,
2723
+ 0, () => SwitchoverGlobalClusterMessage$, () => SwitchoverGlobalClusterResult$
2724
+ ];
2725
+
2726
+ const getRuntimeConfig$1 = (config) => {
2727
+ return {
2728
+ apiVersion: "2014-10-31",
2729
+ base64Decoder: config?.base64Decoder ?? fromBase64,
2730
+ base64Encoder: config?.base64Encoder ?? toBase64,
2731
+ disableHostPrefix: config?.disableHostPrefix ?? false,
2732
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
2733
+ extensions: config?.extensions ?? [],
2734
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultDocDBHttpAuthSchemeProvider,
2735
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
2736
+ {
2737
+ schemeId: "aws.auth#sigv4",
2738
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
2739
+ signer: new AwsSdkSigV4Signer(),
2740
+ },
2741
+ ],
2742
+ logger: config?.logger ?? new NoOpLogger(),
2743
+ protocol: config?.protocol ?? AwsQueryProtocol,
2744
+ protocolSettings: config?.protocolSettings ?? {
2745
+ defaultNamespace: "com.amazonaws.docdb",
2746
+ errorTypeRegistries,
2747
+ xmlNamespace: "http://rds.amazonaws.com/doc/2014-10-31/",
2748
+ version: "2014-10-31",
2749
+ serviceTarget: "AmazonRDSv19",
2750
+ },
2751
+ serviceId: config?.serviceId ?? "DocDB",
2752
+ urlParser: config?.urlParser ?? parseUrl,
2753
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
2754
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
2755
+ };
2756
+ };
2757
+
2758
+ const getRuntimeConfig = (config) => {
2759
+ emitWarningIfUnsupportedVersion(process.version);
2760
+ const defaultsMode = resolveDefaultsModeConfig(config);
2761
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
2762
+ const clientSharedValues = getRuntimeConfig$1(config);
2763
+ emitWarningIfUnsupportedVersion$1(process.version);
2764
+ const loaderConfig = {
2765
+ profile: config?.profile,
2766
+ logger: clientSharedValues.logger,
2767
+ };
2768
+ return {
2769
+ ...clientSharedValues,
2770
+ ...config,
2771
+ runtime: "node",
2772
+ defaultsMode,
2773
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
2774
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
2775
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
2776
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
2777
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
2778
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
2779
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
2780
+ retryMode: config?.retryMode ??
2781
+ loadConfig({
2782
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
2783
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
2784
+ }, config),
2785
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
2786
+ streamCollector: config?.streamCollector ?? streamCollector,
2787
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
2788
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
2789
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
2790
+ };
2791
+ };
2792
+
35
2793
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
36
2794
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
37
2795
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -1117,67 +3875,384 @@ const SourceType = {
1117
3875
  db_snapshot: "db-snapshot",
1118
3876
  };
1119
3877
 
3878
+ exports.AddSourceIdentifierToSubscription$ = AddSourceIdentifierToSubscription$;
1120
3879
  exports.AddSourceIdentifierToSubscriptionCommand = AddSourceIdentifierToSubscriptionCommand;
3880
+ exports.AddSourceIdentifierToSubscriptionMessage$ = AddSourceIdentifierToSubscriptionMessage$;
3881
+ exports.AddSourceIdentifierToSubscriptionResult$ = AddSourceIdentifierToSubscriptionResult$;
3882
+ exports.AddTagsToResource$ = AddTagsToResource$;
1121
3883
  exports.AddTagsToResourceCommand = AddTagsToResourceCommand;
3884
+ exports.AddTagsToResourceMessage$ = AddTagsToResourceMessage$;
1122
3885
  exports.ApplyMethod = ApplyMethod;
3886
+ exports.ApplyPendingMaintenanceAction$ = ApplyPendingMaintenanceAction$;
1123
3887
  exports.ApplyPendingMaintenanceActionCommand = ApplyPendingMaintenanceActionCommand;
3888
+ exports.ApplyPendingMaintenanceActionMessage$ = ApplyPendingMaintenanceActionMessage$;
3889
+ exports.ApplyPendingMaintenanceActionResult$ = ApplyPendingMaintenanceActionResult$;
3890
+ exports.AuthorizationNotFoundFault = AuthorizationNotFoundFault;
3891
+ exports.AuthorizationNotFoundFault$ = AuthorizationNotFoundFault$;
3892
+ exports.AvailabilityZone$ = AvailabilityZone$;
3893
+ exports.Certificate$ = Certificate$;
3894
+ exports.CertificateDetails$ = CertificateDetails$;
3895
+ exports.CertificateMessage$ = CertificateMessage$;
3896
+ exports.CertificateNotFoundFault = CertificateNotFoundFault;
3897
+ exports.CertificateNotFoundFault$ = CertificateNotFoundFault$;
3898
+ exports.CloudwatchLogsExportConfiguration$ = CloudwatchLogsExportConfiguration$;
3899
+ exports.ClusterMasterUserSecret$ = ClusterMasterUserSecret$;
3900
+ exports.CopyDBClusterParameterGroup$ = CopyDBClusterParameterGroup$;
1124
3901
  exports.CopyDBClusterParameterGroupCommand = CopyDBClusterParameterGroupCommand;
3902
+ exports.CopyDBClusterParameterGroupMessage$ = CopyDBClusterParameterGroupMessage$;
3903
+ exports.CopyDBClusterParameterGroupResult$ = CopyDBClusterParameterGroupResult$;
3904
+ exports.CopyDBClusterSnapshot$ = CopyDBClusterSnapshot$;
1125
3905
  exports.CopyDBClusterSnapshotCommand = CopyDBClusterSnapshotCommand;
3906
+ exports.CopyDBClusterSnapshotMessage$ = CopyDBClusterSnapshotMessage$;
3907
+ exports.CopyDBClusterSnapshotResult$ = CopyDBClusterSnapshotResult$;
3908
+ exports.CreateDBCluster$ = CreateDBCluster$;
1126
3909
  exports.CreateDBClusterCommand = CreateDBClusterCommand;
3910
+ exports.CreateDBClusterMessage$ = CreateDBClusterMessage$;
3911
+ exports.CreateDBClusterParameterGroup$ = CreateDBClusterParameterGroup$;
1127
3912
  exports.CreateDBClusterParameterGroupCommand = CreateDBClusterParameterGroupCommand;
3913
+ exports.CreateDBClusterParameterGroupMessage$ = CreateDBClusterParameterGroupMessage$;
3914
+ exports.CreateDBClusterParameterGroupResult$ = CreateDBClusterParameterGroupResult$;
3915
+ exports.CreateDBClusterResult$ = CreateDBClusterResult$;
3916
+ exports.CreateDBClusterSnapshot$ = CreateDBClusterSnapshot$;
1128
3917
  exports.CreateDBClusterSnapshotCommand = CreateDBClusterSnapshotCommand;
3918
+ exports.CreateDBClusterSnapshotMessage$ = CreateDBClusterSnapshotMessage$;
3919
+ exports.CreateDBClusterSnapshotResult$ = CreateDBClusterSnapshotResult$;
3920
+ exports.CreateDBInstance$ = CreateDBInstance$;
1129
3921
  exports.CreateDBInstanceCommand = CreateDBInstanceCommand;
3922
+ exports.CreateDBInstanceMessage$ = CreateDBInstanceMessage$;
3923
+ exports.CreateDBInstanceResult$ = CreateDBInstanceResult$;
3924
+ exports.CreateDBSubnetGroup$ = CreateDBSubnetGroup$;
1130
3925
  exports.CreateDBSubnetGroupCommand = CreateDBSubnetGroupCommand;
3926
+ exports.CreateDBSubnetGroupMessage$ = CreateDBSubnetGroupMessage$;
3927
+ exports.CreateDBSubnetGroupResult$ = CreateDBSubnetGroupResult$;
3928
+ exports.CreateEventSubscription$ = CreateEventSubscription$;
1131
3929
  exports.CreateEventSubscriptionCommand = CreateEventSubscriptionCommand;
3930
+ exports.CreateEventSubscriptionMessage$ = CreateEventSubscriptionMessage$;
3931
+ exports.CreateEventSubscriptionResult$ = CreateEventSubscriptionResult$;
3932
+ exports.CreateGlobalCluster$ = CreateGlobalCluster$;
1132
3933
  exports.CreateGlobalClusterCommand = CreateGlobalClusterCommand;
3934
+ exports.CreateGlobalClusterMessage$ = CreateGlobalClusterMessage$;
3935
+ exports.CreateGlobalClusterResult$ = CreateGlobalClusterResult$;
3936
+ exports.DBCluster$ = DBCluster$;
3937
+ exports.DBClusterAlreadyExistsFault = DBClusterAlreadyExistsFault;
3938
+ exports.DBClusterAlreadyExistsFault$ = DBClusterAlreadyExistsFault$;
3939
+ exports.DBClusterMember$ = DBClusterMember$;
3940
+ exports.DBClusterMessage$ = DBClusterMessage$;
3941
+ exports.DBClusterNotFoundFault = DBClusterNotFoundFault;
3942
+ exports.DBClusterNotFoundFault$ = DBClusterNotFoundFault$;
3943
+ exports.DBClusterParameterGroup$ = DBClusterParameterGroup$;
3944
+ exports.DBClusterParameterGroupDetails$ = DBClusterParameterGroupDetails$;
3945
+ exports.DBClusterParameterGroupNameMessage$ = DBClusterParameterGroupNameMessage$;
3946
+ exports.DBClusterParameterGroupNotFoundFault = DBClusterParameterGroupNotFoundFault;
3947
+ exports.DBClusterParameterGroupNotFoundFault$ = DBClusterParameterGroupNotFoundFault$;
3948
+ exports.DBClusterParameterGroupsMessage$ = DBClusterParameterGroupsMessage$;
3949
+ exports.DBClusterQuotaExceededFault = DBClusterQuotaExceededFault;
3950
+ exports.DBClusterQuotaExceededFault$ = DBClusterQuotaExceededFault$;
3951
+ exports.DBClusterRole$ = DBClusterRole$;
3952
+ exports.DBClusterSnapshot$ = DBClusterSnapshot$;
3953
+ exports.DBClusterSnapshotAlreadyExistsFault = DBClusterSnapshotAlreadyExistsFault;
3954
+ exports.DBClusterSnapshotAlreadyExistsFault$ = DBClusterSnapshotAlreadyExistsFault$;
3955
+ exports.DBClusterSnapshotAttribute$ = DBClusterSnapshotAttribute$;
3956
+ exports.DBClusterSnapshotAttributesResult$ = DBClusterSnapshotAttributesResult$;
3957
+ exports.DBClusterSnapshotMessage$ = DBClusterSnapshotMessage$;
3958
+ exports.DBClusterSnapshotNotFoundFault = DBClusterSnapshotNotFoundFault;
3959
+ exports.DBClusterSnapshotNotFoundFault$ = DBClusterSnapshotNotFoundFault$;
3960
+ exports.DBEngineVersion$ = DBEngineVersion$;
3961
+ exports.DBEngineVersionMessage$ = DBEngineVersionMessage$;
3962
+ exports.DBInstance$ = DBInstance$;
3963
+ exports.DBInstanceAlreadyExistsFault = DBInstanceAlreadyExistsFault;
3964
+ exports.DBInstanceAlreadyExistsFault$ = DBInstanceAlreadyExistsFault$;
3965
+ exports.DBInstanceMessage$ = DBInstanceMessage$;
3966
+ exports.DBInstanceNotFoundFault = DBInstanceNotFoundFault;
3967
+ exports.DBInstanceNotFoundFault$ = DBInstanceNotFoundFault$;
3968
+ exports.DBInstanceStatusInfo$ = DBInstanceStatusInfo$;
3969
+ exports.DBParameterGroupAlreadyExistsFault = DBParameterGroupAlreadyExistsFault;
3970
+ exports.DBParameterGroupAlreadyExistsFault$ = DBParameterGroupAlreadyExistsFault$;
3971
+ exports.DBParameterGroupNotFoundFault = DBParameterGroupNotFoundFault;
3972
+ exports.DBParameterGroupNotFoundFault$ = DBParameterGroupNotFoundFault$;
3973
+ exports.DBParameterGroupQuotaExceededFault = DBParameterGroupQuotaExceededFault;
3974
+ exports.DBParameterGroupQuotaExceededFault$ = DBParameterGroupQuotaExceededFault$;
3975
+ exports.DBSecurityGroupNotFoundFault = DBSecurityGroupNotFoundFault;
3976
+ exports.DBSecurityGroupNotFoundFault$ = DBSecurityGroupNotFoundFault$;
3977
+ exports.DBSnapshotAlreadyExistsFault = DBSnapshotAlreadyExistsFault;
3978
+ exports.DBSnapshotAlreadyExistsFault$ = DBSnapshotAlreadyExistsFault$;
3979
+ exports.DBSnapshotNotFoundFault = DBSnapshotNotFoundFault;
3980
+ exports.DBSnapshotNotFoundFault$ = DBSnapshotNotFoundFault$;
3981
+ exports.DBSubnetGroup$ = DBSubnetGroup$;
3982
+ exports.DBSubnetGroupAlreadyExistsFault = DBSubnetGroupAlreadyExistsFault;
3983
+ exports.DBSubnetGroupAlreadyExistsFault$ = DBSubnetGroupAlreadyExistsFault$;
3984
+ exports.DBSubnetGroupDoesNotCoverEnoughAZs = DBSubnetGroupDoesNotCoverEnoughAZs;
3985
+ exports.DBSubnetGroupDoesNotCoverEnoughAZs$ = DBSubnetGroupDoesNotCoverEnoughAZs$;
3986
+ exports.DBSubnetGroupMessage$ = DBSubnetGroupMessage$;
3987
+ exports.DBSubnetGroupNotFoundFault = DBSubnetGroupNotFoundFault;
3988
+ exports.DBSubnetGroupNotFoundFault$ = DBSubnetGroupNotFoundFault$;
3989
+ exports.DBSubnetGroupQuotaExceededFault = DBSubnetGroupQuotaExceededFault;
3990
+ exports.DBSubnetGroupQuotaExceededFault$ = DBSubnetGroupQuotaExceededFault$;
3991
+ exports.DBSubnetQuotaExceededFault = DBSubnetQuotaExceededFault;
3992
+ exports.DBSubnetQuotaExceededFault$ = DBSubnetQuotaExceededFault$;
3993
+ exports.DBUpgradeDependencyFailureFault = DBUpgradeDependencyFailureFault;
3994
+ exports.DBUpgradeDependencyFailureFault$ = DBUpgradeDependencyFailureFault$;
3995
+ exports.DeleteDBCluster$ = DeleteDBCluster$;
1133
3996
  exports.DeleteDBClusterCommand = DeleteDBClusterCommand;
3997
+ exports.DeleteDBClusterMessage$ = DeleteDBClusterMessage$;
3998
+ exports.DeleteDBClusterParameterGroup$ = DeleteDBClusterParameterGroup$;
1134
3999
  exports.DeleteDBClusterParameterGroupCommand = DeleteDBClusterParameterGroupCommand;
4000
+ exports.DeleteDBClusterParameterGroupMessage$ = DeleteDBClusterParameterGroupMessage$;
4001
+ exports.DeleteDBClusterResult$ = DeleteDBClusterResult$;
4002
+ exports.DeleteDBClusterSnapshot$ = DeleteDBClusterSnapshot$;
1135
4003
  exports.DeleteDBClusterSnapshotCommand = DeleteDBClusterSnapshotCommand;
4004
+ exports.DeleteDBClusterSnapshotMessage$ = DeleteDBClusterSnapshotMessage$;
4005
+ exports.DeleteDBClusterSnapshotResult$ = DeleteDBClusterSnapshotResult$;
4006
+ exports.DeleteDBInstance$ = DeleteDBInstance$;
1136
4007
  exports.DeleteDBInstanceCommand = DeleteDBInstanceCommand;
4008
+ exports.DeleteDBInstanceMessage$ = DeleteDBInstanceMessage$;
4009
+ exports.DeleteDBInstanceResult$ = DeleteDBInstanceResult$;
4010
+ exports.DeleteDBSubnetGroup$ = DeleteDBSubnetGroup$;
1137
4011
  exports.DeleteDBSubnetGroupCommand = DeleteDBSubnetGroupCommand;
4012
+ exports.DeleteDBSubnetGroupMessage$ = DeleteDBSubnetGroupMessage$;
4013
+ exports.DeleteEventSubscription$ = DeleteEventSubscription$;
1138
4014
  exports.DeleteEventSubscriptionCommand = DeleteEventSubscriptionCommand;
4015
+ exports.DeleteEventSubscriptionMessage$ = DeleteEventSubscriptionMessage$;
4016
+ exports.DeleteEventSubscriptionResult$ = DeleteEventSubscriptionResult$;
4017
+ exports.DeleteGlobalCluster$ = DeleteGlobalCluster$;
1139
4018
  exports.DeleteGlobalClusterCommand = DeleteGlobalClusterCommand;
4019
+ exports.DeleteGlobalClusterMessage$ = DeleteGlobalClusterMessage$;
4020
+ exports.DeleteGlobalClusterResult$ = DeleteGlobalClusterResult$;
4021
+ exports.DescribeCertificates$ = DescribeCertificates$;
1140
4022
  exports.DescribeCertificatesCommand = DescribeCertificatesCommand;
4023
+ exports.DescribeCertificatesMessage$ = DescribeCertificatesMessage$;
4024
+ exports.DescribeDBClusterParameterGroups$ = DescribeDBClusterParameterGroups$;
1141
4025
  exports.DescribeDBClusterParameterGroupsCommand = DescribeDBClusterParameterGroupsCommand;
4026
+ exports.DescribeDBClusterParameterGroupsMessage$ = DescribeDBClusterParameterGroupsMessage$;
4027
+ exports.DescribeDBClusterParameters$ = DescribeDBClusterParameters$;
1142
4028
  exports.DescribeDBClusterParametersCommand = DescribeDBClusterParametersCommand;
4029
+ exports.DescribeDBClusterParametersMessage$ = DescribeDBClusterParametersMessage$;
4030
+ exports.DescribeDBClusterSnapshotAttributes$ = DescribeDBClusterSnapshotAttributes$;
1143
4031
  exports.DescribeDBClusterSnapshotAttributesCommand = DescribeDBClusterSnapshotAttributesCommand;
4032
+ exports.DescribeDBClusterSnapshotAttributesMessage$ = DescribeDBClusterSnapshotAttributesMessage$;
4033
+ exports.DescribeDBClusterSnapshotAttributesResult$ = DescribeDBClusterSnapshotAttributesResult$;
4034
+ exports.DescribeDBClusterSnapshots$ = DescribeDBClusterSnapshots$;
1144
4035
  exports.DescribeDBClusterSnapshotsCommand = DescribeDBClusterSnapshotsCommand;
4036
+ exports.DescribeDBClusterSnapshotsMessage$ = DescribeDBClusterSnapshotsMessage$;
4037
+ exports.DescribeDBClusters$ = DescribeDBClusters$;
1145
4038
  exports.DescribeDBClustersCommand = DescribeDBClustersCommand;
4039
+ exports.DescribeDBClustersMessage$ = DescribeDBClustersMessage$;
4040
+ exports.DescribeDBEngineVersions$ = DescribeDBEngineVersions$;
1146
4041
  exports.DescribeDBEngineVersionsCommand = DescribeDBEngineVersionsCommand;
4042
+ exports.DescribeDBEngineVersionsMessage$ = DescribeDBEngineVersionsMessage$;
4043
+ exports.DescribeDBInstances$ = DescribeDBInstances$;
1147
4044
  exports.DescribeDBInstancesCommand = DescribeDBInstancesCommand;
4045
+ exports.DescribeDBInstancesMessage$ = DescribeDBInstancesMessage$;
4046
+ exports.DescribeDBSubnetGroups$ = DescribeDBSubnetGroups$;
1148
4047
  exports.DescribeDBSubnetGroupsCommand = DescribeDBSubnetGroupsCommand;
4048
+ exports.DescribeDBSubnetGroupsMessage$ = DescribeDBSubnetGroupsMessage$;
4049
+ exports.DescribeEngineDefaultClusterParameters$ = DescribeEngineDefaultClusterParameters$;
1149
4050
  exports.DescribeEngineDefaultClusterParametersCommand = DescribeEngineDefaultClusterParametersCommand;
4051
+ exports.DescribeEngineDefaultClusterParametersMessage$ = DescribeEngineDefaultClusterParametersMessage$;
4052
+ exports.DescribeEngineDefaultClusterParametersResult$ = DescribeEngineDefaultClusterParametersResult$;
4053
+ exports.DescribeEventCategories$ = DescribeEventCategories$;
1150
4054
  exports.DescribeEventCategoriesCommand = DescribeEventCategoriesCommand;
4055
+ exports.DescribeEventCategoriesMessage$ = DescribeEventCategoriesMessage$;
4056
+ exports.DescribeEventSubscriptions$ = DescribeEventSubscriptions$;
1151
4057
  exports.DescribeEventSubscriptionsCommand = DescribeEventSubscriptionsCommand;
4058
+ exports.DescribeEventSubscriptionsMessage$ = DescribeEventSubscriptionsMessage$;
4059
+ exports.DescribeEvents$ = DescribeEvents$;
1152
4060
  exports.DescribeEventsCommand = DescribeEventsCommand;
4061
+ exports.DescribeEventsMessage$ = DescribeEventsMessage$;
4062
+ exports.DescribeGlobalClusters$ = DescribeGlobalClusters$;
1153
4063
  exports.DescribeGlobalClustersCommand = DescribeGlobalClustersCommand;
4064
+ exports.DescribeGlobalClustersMessage$ = DescribeGlobalClustersMessage$;
4065
+ exports.DescribeOrderableDBInstanceOptions$ = DescribeOrderableDBInstanceOptions$;
1154
4066
  exports.DescribeOrderableDBInstanceOptionsCommand = DescribeOrderableDBInstanceOptionsCommand;
4067
+ exports.DescribeOrderableDBInstanceOptionsMessage$ = DescribeOrderableDBInstanceOptionsMessage$;
4068
+ exports.DescribePendingMaintenanceActions$ = DescribePendingMaintenanceActions$;
1155
4069
  exports.DescribePendingMaintenanceActionsCommand = DescribePendingMaintenanceActionsCommand;
4070
+ exports.DescribePendingMaintenanceActionsMessage$ = DescribePendingMaintenanceActionsMessage$;
1156
4071
  exports.DocDB = DocDB;
1157
4072
  exports.DocDBClient = DocDBClient;
4073
+ exports.DocDBServiceException = DocDBServiceException;
4074
+ exports.DocDBServiceException$ = DocDBServiceException$;
4075
+ exports.Endpoint$ = Endpoint$;
4076
+ exports.EngineDefaults$ = EngineDefaults$;
4077
+ exports.Event$ = Event$;
4078
+ exports.EventCategoriesMap$ = EventCategoriesMap$;
4079
+ exports.EventCategoriesMessage$ = EventCategoriesMessage$;
4080
+ exports.EventSubscription$ = EventSubscription$;
4081
+ exports.EventSubscriptionQuotaExceededFault = EventSubscriptionQuotaExceededFault;
4082
+ exports.EventSubscriptionQuotaExceededFault$ = EventSubscriptionQuotaExceededFault$;
4083
+ exports.EventSubscriptionsMessage$ = EventSubscriptionsMessage$;
4084
+ exports.EventsMessage$ = EventsMessage$;
4085
+ exports.FailoverDBCluster$ = FailoverDBCluster$;
1158
4086
  exports.FailoverDBClusterCommand = FailoverDBClusterCommand;
4087
+ exports.FailoverDBClusterMessage$ = FailoverDBClusterMessage$;
4088
+ exports.FailoverDBClusterResult$ = FailoverDBClusterResult$;
4089
+ exports.FailoverGlobalCluster$ = FailoverGlobalCluster$;
1159
4090
  exports.FailoverGlobalClusterCommand = FailoverGlobalClusterCommand;
4091
+ exports.FailoverGlobalClusterMessage$ = FailoverGlobalClusterMessage$;
4092
+ exports.FailoverGlobalClusterResult$ = FailoverGlobalClusterResult$;
4093
+ exports.FailoverState$ = FailoverState$;
1160
4094
  exports.FailoverStatus = FailoverStatus;
4095
+ exports.Filter$ = Filter$;
4096
+ exports.GlobalCluster$ = GlobalCluster$;
4097
+ exports.GlobalClusterAlreadyExistsFault = GlobalClusterAlreadyExistsFault;
4098
+ exports.GlobalClusterAlreadyExistsFault$ = GlobalClusterAlreadyExistsFault$;
4099
+ exports.GlobalClusterMember$ = GlobalClusterMember$;
1161
4100
  exports.GlobalClusterMemberSynchronizationStatus = GlobalClusterMemberSynchronizationStatus;
4101
+ exports.GlobalClusterNotFoundFault = GlobalClusterNotFoundFault;
4102
+ exports.GlobalClusterNotFoundFault$ = GlobalClusterNotFoundFault$;
4103
+ exports.GlobalClusterQuotaExceededFault = GlobalClusterQuotaExceededFault;
4104
+ exports.GlobalClusterQuotaExceededFault$ = GlobalClusterQuotaExceededFault$;
4105
+ exports.GlobalClustersMessage$ = GlobalClustersMessage$;
4106
+ exports.InstanceQuotaExceededFault = InstanceQuotaExceededFault;
4107
+ exports.InstanceQuotaExceededFault$ = InstanceQuotaExceededFault$;
4108
+ exports.InsufficientDBClusterCapacityFault = InsufficientDBClusterCapacityFault;
4109
+ exports.InsufficientDBClusterCapacityFault$ = InsufficientDBClusterCapacityFault$;
4110
+ exports.InsufficientDBInstanceCapacityFault = InsufficientDBInstanceCapacityFault;
4111
+ exports.InsufficientDBInstanceCapacityFault$ = InsufficientDBInstanceCapacityFault$;
4112
+ exports.InsufficientStorageClusterCapacityFault = InsufficientStorageClusterCapacityFault;
4113
+ exports.InsufficientStorageClusterCapacityFault$ = InsufficientStorageClusterCapacityFault$;
4114
+ exports.InvalidDBClusterSnapshotStateFault = InvalidDBClusterSnapshotStateFault;
4115
+ exports.InvalidDBClusterSnapshotStateFault$ = InvalidDBClusterSnapshotStateFault$;
4116
+ exports.InvalidDBClusterStateFault = InvalidDBClusterStateFault;
4117
+ exports.InvalidDBClusterStateFault$ = InvalidDBClusterStateFault$;
4118
+ exports.InvalidDBInstanceStateFault = InvalidDBInstanceStateFault;
4119
+ exports.InvalidDBInstanceStateFault$ = InvalidDBInstanceStateFault$;
4120
+ exports.InvalidDBParameterGroupStateFault = InvalidDBParameterGroupStateFault;
4121
+ exports.InvalidDBParameterGroupStateFault$ = InvalidDBParameterGroupStateFault$;
4122
+ exports.InvalidDBSecurityGroupStateFault = InvalidDBSecurityGroupStateFault;
4123
+ exports.InvalidDBSecurityGroupStateFault$ = InvalidDBSecurityGroupStateFault$;
4124
+ exports.InvalidDBSnapshotStateFault = InvalidDBSnapshotStateFault;
4125
+ exports.InvalidDBSnapshotStateFault$ = InvalidDBSnapshotStateFault$;
4126
+ exports.InvalidDBSubnetGroupStateFault = InvalidDBSubnetGroupStateFault;
4127
+ exports.InvalidDBSubnetGroupStateFault$ = InvalidDBSubnetGroupStateFault$;
4128
+ exports.InvalidDBSubnetStateFault = InvalidDBSubnetStateFault;
4129
+ exports.InvalidDBSubnetStateFault$ = InvalidDBSubnetStateFault$;
4130
+ exports.InvalidEventSubscriptionStateFault = InvalidEventSubscriptionStateFault;
4131
+ exports.InvalidEventSubscriptionStateFault$ = InvalidEventSubscriptionStateFault$;
4132
+ exports.InvalidGlobalClusterStateFault = InvalidGlobalClusterStateFault;
4133
+ exports.InvalidGlobalClusterStateFault$ = InvalidGlobalClusterStateFault$;
4134
+ exports.InvalidRestoreFault = InvalidRestoreFault;
4135
+ exports.InvalidRestoreFault$ = InvalidRestoreFault$;
4136
+ exports.InvalidSubnet = InvalidSubnet;
4137
+ exports.InvalidSubnet$ = InvalidSubnet$;
4138
+ exports.InvalidVPCNetworkStateFault = InvalidVPCNetworkStateFault;
4139
+ exports.InvalidVPCNetworkStateFault$ = InvalidVPCNetworkStateFault$;
4140
+ exports.KMSKeyNotAccessibleFault = KMSKeyNotAccessibleFault;
4141
+ exports.KMSKeyNotAccessibleFault$ = KMSKeyNotAccessibleFault$;
4142
+ exports.ListTagsForResource$ = ListTagsForResource$;
1162
4143
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
4144
+ exports.ListTagsForResourceMessage$ = ListTagsForResourceMessage$;
4145
+ exports.ModifyDBCluster$ = ModifyDBCluster$;
1163
4146
  exports.ModifyDBClusterCommand = ModifyDBClusterCommand;
4147
+ exports.ModifyDBClusterMessage$ = ModifyDBClusterMessage$;
4148
+ exports.ModifyDBClusterParameterGroup$ = ModifyDBClusterParameterGroup$;
1164
4149
  exports.ModifyDBClusterParameterGroupCommand = ModifyDBClusterParameterGroupCommand;
4150
+ exports.ModifyDBClusterParameterGroupMessage$ = ModifyDBClusterParameterGroupMessage$;
4151
+ exports.ModifyDBClusterResult$ = ModifyDBClusterResult$;
4152
+ exports.ModifyDBClusterSnapshotAttribute$ = ModifyDBClusterSnapshotAttribute$;
1165
4153
  exports.ModifyDBClusterSnapshotAttributeCommand = ModifyDBClusterSnapshotAttributeCommand;
4154
+ exports.ModifyDBClusterSnapshotAttributeMessage$ = ModifyDBClusterSnapshotAttributeMessage$;
4155
+ exports.ModifyDBClusterSnapshotAttributeResult$ = ModifyDBClusterSnapshotAttributeResult$;
4156
+ exports.ModifyDBInstance$ = ModifyDBInstance$;
1166
4157
  exports.ModifyDBInstanceCommand = ModifyDBInstanceCommand;
4158
+ exports.ModifyDBInstanceMessage$ = ModifyDBInstanceMessage$;
4159
+ exports.ModifyDBInstanceResult$ = ModifyDBInstanceResult$;
4160
+ exports.ModifyDBSubnetGroup$ = ModifyDBSubnetGroup$;
1167
4161
  exports.ModifyDBSubnetGroupCommand = ModifyDBSubnetGroupCommand;
4162
+ exports.ModifyDBSubnetGroupMessage$ = ModifyDBSubnetGroupMessage$;
4163
+ exports.ModifyDBSubnetGroupResult$ = ModifyDBSubnetGroupResult$;
4164
+ exports.ModifyEventSubscription$ = ModifyEventSubscription$;
1168
4165
  exports.ModifyEventSubscriptionCommand = ModifyEventSubscriptionCommand;
4166
+ exports.ModifyEventSubscriptionMessage$ = ModifyEventSubscriptionMessage$;
4167
+ exports.ModifyEventSubscriptionResult$ = ModifyEventSubscriptionResult$;
4168
+ exports.ModifyGlobalCluster$ = ModifyGlobalCluster$;
1169
4169
  exports.ModifyGlobalClusterCommand = ModifyGlobalClusterCommand;
4170
+ exports.ModifyGlobalClusterMessage$ = ModifyGlobalClusterMessage$;
4171
+ exports.ModifyGlobalClusterResult$ = ModifyGlobalClusterResult$;
4172
+ exports.NetworkTypeNotSupported = NetworkTypeNotSupported;
4173
+ exports.NetworkTypeNotSupported$ = NetworkTypeNotSupported$;
4174
+ exports.OrderableDBInstanceOption$ = OrderableDBInstanceOption$;
4175
+ exports.OrderableDBInstanceOptionsMessage$ = OrderableDBInstanceOptionsMessage$;
4176
+ exports.Parameter$ = Parameter$;
4177
+ exports.PendingCloudwatchLogsExports$ = PendingCloudwatchLogsExports$;
4178
+ exports.PendingMaintenanceAction$ = PendingMaintenanceAction$;
4179
+ exports.PendingMaintenanceActionsMessage$ = PendingMaintenanceActionsMessage$;
4180
+ exports.PendingModifiedValues$ = PendingModifiedValues$;
4181
+ exports.RebootDBInstance$ = RebootDBInstance$;
1170
4182
  exports.RebootDBInstanceCommand = RebootDBInstanceCommand;
4183
+ exports.RebootDBInstanceMessage$ = RebootDBInstanceMessage$;
4184
+ exports.RebootDBInstanceResult$ = RebootDBInstanceResult$;
4185
+ exports.RemoveFromGlobalCluster$ = RemoveFromGlobalCluster$;
1171
4186
  exports.RemoveFromGlobalClusterCommand = RemoveFromGlobalClusterCommand;
4187
+ exports.RemoveFromGlobalClusterMessage$ = RemoveFromGlobalClusterMessage$;
4188
+ exports.RemoveFromGlobalClusterResult$ = RemoveFromGlobalClusterResult$;
4189
+ exports.RemoveSourceIdentifierFromSubscription$ = RemoveSourceIdentifierFromSubscription$;
1172
4190
  exports.RemoveSourceIdentifierFromSubscriptionCommand = RemoveSourceIdentifierFromSubscriptionCommand;
4191
+ exports.RemoveSourceIdentifierFromSubscriptionMessage$ = RemoveSourceIdentifierFromSubscriptionMessage$;
4192
+ exports.RemoveSourceIdentifierFromSubscriptionResult$ = RemoveSourceIdentifierFromSubscriptionResult$;
4193
+ exports.RemoveTagsFromResource$ = RemoveTagsFromResource$;
1173
4194
  exports.RemoveTagsFromResourceCommand = RemoveTagsFromResourceCommand;
4195
+ exports.RemoveTagsFromResourceMessage$ = RemoveTagsFromResourceMessage$;
4196
+ exports.ResetDBClusterParameterGroup$ = ResetDBClusterParameterGroup$;
1174
4197
  exports.ResetDBClusterParameterGroupCommand = ResetDBClusterParameterGroupCommand;
4198
+ exports.ResetDBClusterParameterGroupMessage$ = ResetDBClusterParameterGroupMessage$;
4199
+ exports.ResourceNotFoundFault = ResourceNotFoundFault;
4200
+ exports.ResourceNotFoundFault$ = ResourceNotFoundFault$;
4201
+ exports.ResourcePendingMaintenanceActions$ = ResourcePendingMaintenanceActions$;
4202
+ exports.RestoreDBClusterFromSnapshot$ = RestoreDBClusterFromSnapshot$;
1175
4203
  exports.RestoreDBClusterFromSnapshotCommand = RestoreDBClusterFromSnapshotCommand;
4204
+ exports.RestoreDBClusterFromSnapshotMessage$ = RestoreDBClusterFromSnapshotMessage$;
4205
+ exports.RestoreDBClusterFromSnapshotResult$ = RestoreDBClusterFromSnapshotResult$;
4206
+ exports.RestoreDBClusterToPointInTime$ = RestoreDBClusterToPointInTime$;
1176
4207
  exports.RestoreDBClusterToPointInTimeCommand = RestoreDBClusterToPointInTimeCommand;
4208
+ exports.RestoreDBClusterToPointInTimeMessage$ = RestoreDBClusterToPointInTimeMessage$;
4209
+ exports.RestoreDBClusterToPointInTimeResult$ = RestoreDBClusterToPointInTimeResult$;
4210
+ exports.SNSInvalidTopicFault = SNSInvalidTopicFault;
4211
+ exports.SNSInvalidTopicFault$ = SNSInvalidTopicFault$;
4212
+ exports.SNSNoAuthorizationFault = SNSNoAuthorizationFault;
4213
+ exports.SNSNoAuthorizationFault$ = SNSNoAuthorizationFault$;
4214
+ exports.SNSTopicArnNotFoundFault = SNSTopicArnNotFoundFault;
4215
+ exports.SNSTopicArnNotFoundFault$ = SNSTopicArnNotFoundFault$;
4216
+ exports.ServerlessV2FeaturesSupport$ = ServerlessV2FeaturesSupport$;
4217
+ exports.ServerlessV2ScalingConfiguration$ = ServerlessV2ScalingConfiguration$;
4218
+ exports.ServerlessV2ScalingConfigurationInfo$ = ServerlessV2ScalingConfigurationInfo$;
4219
+ exports.SharedSnapshotQuotaExceededFault = SharedSnapshotQuotaExceededFault;
4220
+ exports.SharedSnapshotQuotaExceededFault$ = SharedSnapshotQuotaExceededFault$;
4221
+ exports.SnapshotQuotaExceededFault = SnapshotQuotaExceededFault;
4222
+ exports.SnapshotQuotaExceededFault$ = SnapshotQuotaExceededFault$;
4223
+ exports.SourceNotFoundFault = SourceNotFoundFault;
4224
+ exports.SourceNotFoundFault$ = SourceNotFoundFault$;
1177
4225
  exports.SourceType = SourceType;
4226
+ exports.StartDBCluster$ = StartDBCluster$;
1178
4227
  exports.StartDBClusterCommand = StartDBClusterCommand;
4228
+ exports.StartDBClusterMessage$ = StartDBClusterMessage$;
4229
+ exports.StartDBClusterResult$ = StartDBClusterResult$;
4230
+ exports.StopDBCluster$ = StopDBCluster$;
1179
4231
  exports.StopDBClusterCommand = StopDBClusterCommand;
4232
+ exports.StopDBClusterMessage$ = StopDBClusterMessage$;
4233
+ exports.StopDBClusterResult$ = StopDBClusterResult$;
4234
+ exports.StorageQuotaExceededFault = StorageQuotaExceededFault;
4235
+ exports.StorageQuotaExceededFault$ = StorageQuotaExceededFault$;
4236
+ exports.StorageTypeNotSupportedFault = StorageTypeNotSupportedFault;
4237
+ exports.StorageTypeNotSupportedFault$ = StorageTypeNotSupportedFault$;
4238
+ exports.Subnet$ = Subnet$;
4239
+ exports.SubnetAlreadyInUse = SubnetAlreadyInUse;
4240
+ exports.SubnetAlreadyInUse$ = SubnetAlreadyInUse$;
4241
+ exports.SubscriptionAlreadyExistFault = SubscriptionAlreadyExistFault;
4242
+ exports.SubscriptionAlreadyExistFault$ = SubscriptionAlreadyExistFault$;
4243
+ exports.SubscriptionCategoryNotFoundFault = SubscriptionCategoryNotFoundFault;
4244
+ exports.SubscriptionCategoryNotFoundFault$ = SubscriptionCategoryNotFoundFault$;
4245
+ exports.SubscriptionNotFoundFault = SubscriptionNotFoundFault;
4246
+ exports.SubscriptionNotFoundFault$ = SubscriptionNotFoundFault$;
4247
+ exports.SwitchoverGlobalCluster$ = SwitchoverGlobalCluster$;
1180
4248
  exports.SwitchoverGlobalClusterCommand = SwitchoverGlobalClusterCommand;
4249
+ exports.SwitchoverGlobalClusterMessage$ = SwitchoverGlobalClusterMessage$;
4250
+ exports.SwitchoverGlobalClusterResult$ = SwitchoverGlobalClusterResult$;
4251
+ exports.Tag$ = Tag$;
4252
+ exports.TagListMessage$ = TagListMessage$;
4253
+ exports.UpgradeTarget$ = UpgradeTarget$;
4254
+ exports.VpcSecurityGroupMembership$ = VpcSecurityGroupMembership$;
4255
+ exports.errorTypeRegistries = errorTypeRegistries;
1181
4256
  exports.paginateDescribeCertificates = paginateDescribeCertificates;
1182
4257
  exports.paginateDescribeDBClusterParameterGroups = paginateDescribeDBClusterParameterGroups;
1183
4258
  exports.paginateDescribeDBClusterParameters = paginateDescribeDBClusterParameters;