@aws-sdk/client-rds 3.130.0 → 3.136.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.
Files changed (45) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/RDS.js +15 -0
  3. package/dist-cjs/commands/ModifyActivityStreamCommand.js +36 -0
  4. package/dist-cjs/commands/index.js +1 -0
  5. package/dist-cjs/models/models_0.js +13 -12
  6. package/dist-cjs/models/models_1.js +27 -4
  7. package/dist-cjs/protocols/Aws_query.js +104 -5
  8. package/dist-es/RDS.js +15 -0
  9. package/dist-es/commands/ModifyActivityStreamCommand.js +39 -0
  10. package/dist-es/commands/index.js +1 -0
  11. package/dist-es/models/models_0.js +7 -4
  12. package/dist-es/models/models_1.js +17 -0
  13. package/dist-es/protocols/Aws_query.js +112 -0
  14. package/dist-types/RDS.d.ts +55 -68
  15. package/dist-types/RDSClient.d.ts +3 -2
  16. package/dist-types/commands/BacktrackDBClusterCommand.d.ts +1 -1
  17. package/dist-types/commands/CopyDBClusterSnapshotCommand.d.ts +9 -42
  18. package/dist-types/commands/CopyDBSnapshotCommand.d.ts +3 -3
  19. package/dist-types/commands/CreateDBClusterCommand.d.ts +1 -3
  20. package/dist-types/commands/CreateDBClusterEndpointCommand.d.ts +1 -1
  21. package/dist-types/commands/CreateDBClusterParameterGroupCommand.d.ts +9 -9
  22. package/dist-types/commands/CreateDBInstanceCommand.d.ts +8 -0
  23. package/dist-types/commands/CreateDBInstanceReadReplicaCommand.d.ts +2 -2
  24. package/dist-types/commands/CreateEventSubscriptionCommand.d.ts +1 -1
  25. package/dist-types/commands/CreateGlobalClusterCommand.d.ts +1 -1
  26. package/dist-types/commands/DescribeEventsCommand.d.ts +2 -0
  27. package/dist-types/commands/FailoverDBClusterCommand.d.ts +1 -1
  28. package/dist-types/commands/ModifyActivityStreamCommand.d.ts +39 -0
  29. package/dist-types/commands/ModifyDBClusterParameterGroupCommand.d.ts +1 -1
  30. package/dist-types/commands/ModifyDBClusterSnapshotAttributeCommand.d.ts +1 -1
  31. package/dist-types/commands/ModifyDBSnapshotAttributeCommand.d.ts +1 -1
  32. package/dist-types/commands/RebootDBInstanceCommand.d.ts +1 -0
  33. package/dist-types/commands/StopDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -1
  34. package/dist-types/commands/index.d.ts +1 -0
  35. package/dist-types/models/models_0.d.ts +342 -133
  36. package/dist-types/models/models_1.d.ts +216 -39
  37. package/dist-types/protocols/Aws_query.d.ts +3 -0
  38. package/dist-types/ts3.4/RDS.d.ts +5 -0
  39. package/dist-types/ts3.4/RDSClient.d.ts +3 -2
  40. package/dist-types/ts3.4/commands/ModifyActivityStreamCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  42. package/dist-types/ts3.4/models/models_0.d.ts +8 -11
  43. package/dist-types/ts3.4/models/models_1.d.ts +44 -1
  44. package/dist-types/ts3.4/protocols/Aws_query.d.ts +3 -0
  45. package/package.json +4 -4
@@ -886,6 +886,16 @@ export var serializeAws_queryListTagsForResourceCommand = function (input, conte
886
886
  return [2, buildHttpRpcRequest(context, headers, "/", undefined, body)];
887
887
  });
888
888
  }); };
889
+ export var serializeAws_queryModifyActivityStreamCommand = function (input, context) { return __awaiter(void 0, void 0, void 0, function () {
890
+ var headers, body;
891
+ return __generator(this, function (_a) {
892
+ headers = {
893
+ "content-type": "application/x-www-form-urlencoded",
894
+ };
895
+ body = buildFormUrlencodedString(__assign(__assign({}, serializeAws_queryModifyActivityStreamRequest(input, context)), { Action: "ModifyActivityStream", Version: "2014-10-31" }));
896
+ return [2, buildHttpRpcRequest(context, headers, "/", undefined, body)];
897
+ });
898
+ }); };
889
899
  export var serializeAws_queryModifyCertificatesCommand = function (input, context) { return __awaiter(void 0, void 0, void 0, function () {
890
900
  var headers, body;
891
901
  return __generator(this, function (_a) {
@@ -6491,6 +6501,65 @@ var deserializeAws_queryListTagsForResourceCommandError = function (output, cont
6491
6501
  }
6492
6502
  });
6493
6503
  }); };
6504
+ export var deserializeAws_queryModifyActivityStreamCommand = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
6505
+ var data, contents, response;
6506
+ return __generator(this, function (_a) {
6507
+ switch (_a.label) {
6508
+ case 0:
6509
+ if (output.statusCode >= 300) {
6510
+ return [2, deserializeAws_queryModifyActivityStreamCommandError(output, context)];
6511
+ }
6512
+ return [4, parseBody(output.body, context)];
6513
+ case 1:
6514
+ data = _a.sent();
6515
+ contents = {};
6516
+ contents = deserializeAws_queryModifyActivityStreamResponse(data.ModifyActivityStreamResult, context);
6517
+ response = __assign({ $metadata: deserializeMetadata(output) }, contents);
6518
+ return [2, Promise.resolve(response)];
6519
+ }
6520
+ });
6521
+ }); };
6522
+ var deserializeAws_queryModifyActivityStreamCommandError = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
6523
+ var parsedOutput, _a, response, errorCode, _b, parsedBody, $metadata, statusCode;
6524
+ var _c;
6525
+ return __generator(this, function (_d) {
6526
+ switch (_d.label) {
6527
+ case 0:
6528
+ _a = [__assign({}, output)];
6529
+ _c = {};
6530
+ return [4, parseBody(output.body, context)];
6531
+ case 1:
6532
+ parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
6533
+ errorCode = loadQueryErrorCode(output, parsedOutput.body);
6534
+ _b = errorCode;
6535
+ switch (_b) {
6536
+ case "DBInstanceNotFoundFault": return [3, 2];
6537
+ case "com.amazonaws.rds#DBInstanceNotFoundFault": return [3, 2];
6538
+ case "InvalidDBInstanceStateFault": return [3, 4];
6539
+ case "com.amazonaws.rds#InvalidDBInstanceStateFault": return [3, 4];
6540
+ case "ResourceNotFoundFault": return [3, 6];
6541
+ case "com.amazonaws.rds#ResourceNotFoundFault": return [3, 6];
6542
+ }
6543
+ return [3, 8];
6544
+ case 2: return [4, deserializeAws_queryDBInstanceNotFoundFaultResponse(parsedOutput, context)];
6545
+ case 3: throw _d.sent();
6546
+ case 4: return [4, deserializeAws_queryInvalidDBInstanceStateFaultResponse(parsedOutput, context)];
6547
+ case 5: throw _d.sent();
6548
+ case 6: return [4, deserializeAws_queryResourceNotFoundFaultResponse(parsedOutput, context)];
6549
+ case 7: throw _d.sent();
6550
+ case 8:
6551
+ parsedBody = parsedOutput.body;
6552
+ $metadata = deserializeMetadata(output);
6553
+ statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
6554
+ response = new __BaseException({
6555
+ name: parsedBody.Error.code || parsedBody.Error.Code || errorCode || statusCode || "UnknowError",
6556
+ $fault: "client",
6557
+ $metadata: $metadata,
6558
+ });
6559
+ throw __decorateServiceException(response, parsedBody.Error);
6560
+ }
6561
+ });
6562
+ }); };
6494
6563
  export var deserializeAws_queryModifyCertificatesCommand = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
6495
6564
  var data, contents, response;
6496
6565
  return __generator(this, function (_a) {
@@ -13365,6 +13434,16 @@ var serializeAws_queryLogTypeList = function (input, context) {
13365
13434
  }
13366
13435
  return entries;
13367
13436
  };
13437
+ var serializeAws_queryModifyActivityStreamRequest = function (input, context) {
13438
+ var entries = {};
13439
+ if (input.ResourceArn !== undefined && input.ResourceArn !== null) {
13440
+ entries["ResourceArn"] = input.ResourceArn;
13441
+ }
13442
+ if (input.AuditPolicyState !== undefined && input.AuditPolicyState !== null) {
13443
+ entries["AuditPolicyState"] = input.AuditPolicyState;
13444
+ }
13445
+ return entries;
13446
+ };
13368
13447
  var serializeAws_queryModifyCertificatesMessage = function (input, context) {
13369
13448
  var entries = {};
13370
13449
  if (input.CertificateIdentifier !== undefined && input.CertificateIdentifier !== null) {
@@ -17227,6 +17306,7 @@ var deserializeAws_queryDBInstance = function (output, context) {
17227
17306
  CustomIamInstanceProfile: undefined,
17228
17307
  BackupTarget: undefined,
17229
17308
  NetworkType: undefined,
17309
+ ActivityStreamPolicyStatus: undefined,
17230
17310
  };
17231
17311
  if (output["DBInstanceIdentifier"] !== undefined) {
17232
17312
  contents.DBInstanceIdentifier = __expectString(output["DBInstanceIdentifier"]);
@@ -17501,6 +17581,9 @@ var deserializeAws_queryDBInstance = function (output, context) {
17501
17581
  if (output["NetworkType"] !== undefined) {
17502
17582
  contents.NetworkType = __expectString(output["NetworkType"]);
17503
17583
  }
17584
+ if (output["ActivityStreamPolicyStatus"] !== undefined) {
17585
+ contents.ActivityStreamPolicyStatus = __expectString(output["ActivityStreamPolicyStatus"]);
17586
+ }
17504
17587
  return contents;
17505
17588
  };
17506
17589
  var deserializeAws_queryDBInstanceAlreadyExistsFault = function (output, context) {
@@ -19966,6 +20049,35 @@ var deserializeAws_queryMinimumEngineVersionPerAllowedValueList = function (outp
19966
20049
  return deserializeAws_queryMinimumEngineVersionPerAllowedValue(entry, context);
19967
20050
  });
19968
20051
  };
20052
+ var deserializeAws_queryModifyActivityStreamResponse = function (output, context) {
20053
+ var contents = {
20054
+ KmsKeyId: undefined,
20055
+ KinesisStreamName: undefined,
20056
+ Status: undefined,
20057
+ Mode: undefined,
20058
+ EngineNativeAuditFieldsIncluded: undefined,
20059
+ PolicyStatus: undefined,
20060
+ };
20061
+ if (output["KmsKeyId"] !== undefined) {
20062
+ contents.KmsKeyId = __expectString(output["KmsKeyId"]);
20063
+ }
20064
+ if (output["KinesisStreamName"] !== undefined) {
20065
+ contents.KinesisStreamName = __expectString(output["KinesisStreamName"]);
20066
+ }
20067
+ if (output["Status"] !== undefined) {
20068
+ contents.Status = __expectString(output["Status"]);
20069
+ }
20070
+ if (output["Mode"] !== undefined) {
20071
+ contents.Mode = __expectString(output["Mode"]);
20072
+ }
20073
+ if (output["EngineNativeAuditFieldsIncluded"] !== undefined) {
20074
+ contents.EngineNativeAuditFieldsIncluded = __parseBoolean(output["EngineNativeAuditFieldsIncluded"]);
20075
+ }
20076
+ if (output["PolicyStatus"] !== undefined) {
20077
+ contents.PolicyStatus = __expectString(output["PolicyStatus"]);
20078
+ }
20079
+ return contents;
20080
+ };
19969
20081
  var deserializeAws_queryModifyCertificatesResult = function (output, context) {
19970
20082
  var contents = {
19971
20083
  Certificate: undefined,
@@ -87,6 +87,7 @@ import { DownloadDBLogFilePortionCommandInput, DownloadDBLogFilePortionCommandOu
87
87
  import { FailoverDBClusterCommandInput, FailoverDBClusterCommandOutput } from "./commands/FailoverDBClusterCommand";
88
88
  import { FailoverGlobalClusterCommandInput, FailoverGlobalClusterCommandOutput } from "./commands/FailoverGlobalClusterCommand";
89
89
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
90
+ import { ModifyActivityStreamCommandInput, ModifyActivityStreamCommandOutput } from "./commands/ModifyActivityStreamCommand";
90
91
  import { ModifyCertificatesCommandInput, ModifyCertificatesCommandOutput } from "./commands/ModifyCertificatesCommand";
91
92
  import { ModifyCurrentDBClusterCapacityCommandInput, ModifyCurrentDBClusterCapacityCommandOutput } from "./commands/ModifyCurrentDBClusterCapacityCommand";
92
93
  import { ModifyCustomDBEngineVersionCommandInput, ModifyCustomDBEngineVersionCommandOutput } from "./commands/ModifyCustomDBEngineVersionCommand";
@@ -251,7 +252,7 @@ export declare class RDS extends RDSClient {
251
252
  * Backtracking an Aurora DB Cluster</a> in the
252
253
  * <i>Amazon Aurora User Guide</i>.</p>
253
254
  * <note>
254
- * <p>This action only applies to Aurora MySQL DB clusters.</p>
255
+ * <p>This action applies only to Aurora MySQL DB clusters.</p>
255
256
  * </note>
256
257
  */
257
258
  backtrackDBCluster(args: BacktrackDBClusterCommandInput, options?: __HttpHandlerOptions): Promise<BacktrackDBClusterCommandOutput>;
@@ -274,9 +275,11 @@ export declare class RDS extends RDSClient {
274
275
  * <p>Copies a snapshot of a DB cluster.</p>
275
276
  * <p>To copy a DB cluster snapshot from a shared manual DB cluster snapshot, <code>SourceDBClusterSnapshotIdentifier</code>
276
277
  * must be the Amazon Resource Name (ARN) of the shared DB cluster snapshot.</p>
277
- * <p>You can copy an encrypted DB cluster snapshot from another Amazon Web Services Region. In that case, the Amazon Web Services Region where you call the <code>CopyDBClusterSnapshot</code> action
278
- * is the destination Amazon Web Services Region for the encrypted DB cluster snapshot to be copied to. To copy an encrypted DB cluster snapshot from another Amazon Web Services Region,
279
- * you must provide the following values:</p>
278
+ * <p>You can copy an encrypted DB cluster snapshot from another Amazon Web Services Region. In that case,
279
+ * the Amazon Web Services Region where you call the <code>CopyDBClusterSnapshot</code> operation is the
280
+ * destination Amazon Web Services Region for the encrypted DB cluster snapshot to be copied to. To copy
281
+ * an encrypted DB cluster snapshot from another Amazon Web Services Region, you must provide the
282
+ * following values:</p>
280
283
  * <ul>
281
284
  * <li>
282
285
  * <p>
@@ -285,49 +288,14 @@ export declare class RDS extends RDSClient {
285
288
  * </li>
286
289
  * <li>
287
290
  * <p>
288
- * <code>PreSignedUrl</code> - A URL that contains a Signature Version 4 signed request for the
289
- * <code>CopyDBClusterSnapshot</code> action to be called in the source Amazon Web Services Region where the DB cluster snapshot is copied from.
290
- * The pre-signed URL must be a valid request for the <code>CopyDBClusterSnapshot</code> API action that can be executed in the
291
- * source Amazon Web Services Region that contains the encrypted DB cluster snapshot to be copied.</p>
292
- * <p>The pre-signed URL request must contain the following parameter values:</p>
293
- * <ul>
294
- * <li>
295
- * <p>
296
- * <code>KmsKeyId</code> - The Amazon Web Services KMS key identifier for the KMS key to use to encrypt the copy of the DB
297
- * cluster snapshot in the destination Amazon Web Services Region. This is the same identifier for both the <code>CopyDBClusterSnapshot</code>
298
- * action that is called in the destination Amazon Web Services Region, and the action contained in the pre-signed URL.</p>
299
- * </li>
300
- * <li>
301
- * <p>
302
- * <code>DestinationRegion</code> - The name of the Amazon Web Services Region that the DB cluster snapshot is to be created in.</p>
303
- * </li>
304
- * <li>
305
- * <p>
306
- * <code>SourceDBClusterSnapshotIdentifier</code> - The DB cluster snapshot identifier for the encrypted DB cluster
307
- * snapshot to be copied. This identifier must be in the Amazon Resource Name (ARN) format for the source Amazon Web Services Region. For example,
308
- * if you are copying an encrypted DB cluster snapshot from the us-west-2 Amazon Web Services Region, then your <code>SourceDBClusterSnapshotIdentifier</code>
309
- * looks like the following example: <code>arn:aws:rds:us-west-2:123456789012:cluster-snapshot:aurora-cluster1-snapshot-20161115</code>.</p>
310
- * </li>
311
- * </ul>
312
- * <p>To learn how to generate a Signature Version 4 signed request, see
313
- * <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html">
314
- * Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4)</a> and
315
- * <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">
316
- * Signature Version 4 Signing Process</a>.</p>
317
- * <note>
318
- * <p>If you are using an Amazon Web Services SDK tool or the CLI, you can specify <code>SourceRegion</code> (or <code>--source-region</code> for the CLI)
319
- * instead of specifying <code>PreSignedUrl</code> manually. Specifying <code>SourceRegion</code> autogenerates a pre-signed URL that is a valid
320
- * request for the operation that can be executed in the source Amazon Web Services Region.</p>
321
- * </note>
322
- * </li>
323
- * <li>
324
- * <p>
325
291
  * <code>TargetDBClusterSnapshotIdentifier</code> - The identifier for the new copy of the DB cluster snapshot in the destination Amazon Web Services Region.</p>
326
292
  * </li>
327
293
  * <li>
328
294
  * <p>
329
- * <code>SourceDBClusterSnapshotIdentifier</code> - The DB cluster snapshot identifier for the encrypted DB cluster snapshot to be copied.
330
- * This identifier must be in the ARN format for the source Amazon Web Services Region and is the same value as the <code>SourceDBClusterSnapshotIdentifier</code> in the pre-signed URL.</p>
295
+ * <code>SourceDBClusterSnapshotIdentifier</code> - The DB cluster snapshot
296
+ * identifier for the encrypted DB cluster snapshot to be copied. This identifier
297
+ * must be in the ARN format for the source Amazon Web Services Region and is the same value as
298
+ * the <code>SourceDBClusterSnapshotIdentifier</code> in the presigned URL.</p>
331
299
  * </li>
332
300
  * </ul>
333
301
  * <p>To cancel the copy operation once it is in progress, delete the target DB cluster snapshot identified
@@ -353,9 +321,9 @@ export declare class RDS extends RDSClient {
353
321
  copyDBParameterGroup(args: CopyDBParameterGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CopyDBParameterGroupCommandOutput) => void): void;
354
322
  /**
355
323
  * <p>Copies the specified DB snapshot. The source DB snapshot must be in the <code>available</code> state.</p>
356
- * <p>You can copy a snapshot from one Amazon Web Services Region to another. In that case, the Amazon Web Services Region
357
- * where you call the <code>CopyDBSnapshot</code> action is the destination Amazon Web Services Region for the
358
- * DB snapshot copy.</p>
324
+ * <p>You can copy a snapshot from one Amazon Web Services Region to another. In that case, the
325
+ * Amazon Web Services Region where you call the <code>CopyDBSnapshot</code> operation is the destination
326
+ * Amazon Web Services Region for the DB snapshot copy.</p>
359
327
  * <p>This command doesn't apply to RDS Custom.</p>
360
328
  * <p>For more information about copying snapshots, see
361
329
  * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopyDBSnapshot">Copying a DB Snapshot</a> in the <i>Amazon RDS User Guide</i>.</p>
@@ -409,9 +377,7 @@ export declare class RDS extends RDSClient {
409
377
  * <p>Creates a new Amazon Aurora DB cluster or Multi-AZ DB cluster.</p>
410
378
  * <p>You can use the <code>ReplicationSourceIdentifier</code> parameter to create an Amazon
411
379
  * Aurora DB cluster as a read replica of another DB cluster or Amazon RDS MySQL or
412
- * PostgreSQL DB instance. For cross-Region replication where the DB cluster identified by
413
- * <code>ReplicationSourceIdentifier</code> is encrypted, also specify the
414
- * <code>PreSignedUrl</code> parameter.</p>
380
+ * PostgreSQL DB instance.</p>
415
381
  * <p>For more information on Amazon Aurora, see
416
382
  * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
417
383
  * What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide</i>.</p>
@@ -425,7 +391,7 @@ export declare class RDS extends RDSClient {
425
391
  /**
426
392
  * <p>Creates a new custom endpoint and associates it with an Amazon Aurora DB cluster.</p>
427
393
  * <note>
428
- * <p>This action only applies to Aurora DB clusters.</p>
394
+ * <p>This action applies only to Aurora DB clusters.</p>
429
395
  * </note>
430
396
  */
431
397
  createDBClusterEndpoint(args: CreateDBClusterEndpointCommandInput, options?: __HttpHandlerOptions): Promise<CreateDBClusterEndpointCommandOutput>;
@@ -446,15 +412,15 @@ export declare class RDS extends RDSClient {
446
412
  * cluster without failover for the new DB cluster parameter group and associated settings to take effect.</p>
447
413
  * <important>
448
414
  * <p>After you create a DB cluster parameter group, you should wait at least 5 minutes
449
- * before creating your first DB cluster
450
- * that uses that DB cluster parameter group as the default parameter
451
- * group. This allows Amazon RDS to fully complete the create action before the DB cluster parameter
452
- * group is used as the default for a new DB cluster. This is especially important for parameters
453
- * that are critical when creating the default database for a DB cluster, such as the character set
454
- * for the default database defined by the <code>character_set_database</code> parameter. You can use the
455
- * <i>Parameter Groups</i> option of the <a href="https://console.aws.amazon.com/rds/">Amazon RDS console</a> or the
456
- * <code>DescribeDBClusterParameters</code> action to verify
457
- * that your DB cluster parameter group has been created or modified.</p>
415
+ * before creating your first DB cluster that uses that DB cluster parameter group as
416
+ * the default parameter group. This allows Amazon RDS to fully complete the create
417
+ * action before the DB cluster parameter group is used as the default for a new DB
418
+ * cluster. This is especially important for parameters that are critical when creating
419
+ * the default database for a DB cluster, such as the character set for the default
420
+ * database defined by the <code>character_set_database</code> parameter. You can use
421
+ * the <i>Parameter Groups</i> option of the <a href="https://console.aws.amazon.com/rds/">Amazon RDS console</a> or the
422
+ * <code>DescribeDBClusterParameters</code> operation to verify that your DB
423
+ * cluster parameter group has been created or modified.</p>
458
424
  * </important>
459
425
  * <p>For more information on Amazon Aurora, see
460
426
  * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
@@ -479,6 +445,14 @@ export declare class RDS extends RDSClient {
479
445
  createDBClusterSnapshot(args: CreateDBClusterSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDBClusterSnapshotCommandOutput) => void): void;
480
446
  /**
481
447
  * <p>Creates a new DB instance.</p>
448
+ * <p>The new DB instance can be an RDS DB instance, or it can be a DB instance in an Aurora DB cluster.
449
+ * For an Aurora DB cluster, you can call this operation multiple times to add more than one DB instance
450
+ * to the cluster.</p>
451
+ * <p>For more information about creating an RDS DB instance, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CreateDBInstance.html">
452
+ * Creating an Amazon RDS DB instance</a> in the <i>Amazon RDS User Guide</i>.</p>
453
+ * <p>For more information about creating a DB instance in an Aurora DB cluster, see
454
+ * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.CreateInstance.html">
455
+ * Creating an Amazon Aurora DB cluster</a> in the <i>Amazon Aurora User Guide</i>.</p>
482
456
  */
483
457
  createDBInstance(args: CreateDBInstanceCommandInput, options?: __HttpHandlerOptions): Promise<CreateDBInstanceCommandOutput>;
484
458
  createDBInstance(args: CreateDBInstanceCommandInput, cb: (err: any, data?: CreateDBInstanceCommandOutput) => void): void;
@@ -488,8 +462,8 @@ export declare class RDS extends RDSClient {
488
462
  * instance. You can create a read replica for a DB instance running MySQL, MariaDB,
489
463
  * Oracle, PostgreSQL, or SQL Server. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReadRepl.html">Working with Read
490
464
  * Replicas</a> in the <i>Amazon RDS User Guide</i>.</p>
491
- * <p>Amazon Aurora doesn't support this action. Call the <code>CreateDBInstance</code>
492
- * action to create a DB instance for an Aurora DB cluster.</p>
465
+ * <p>Amazon Aurora doesn't support this operation. Call the <code>CreateDBInstance</code>
466
+ * operation to create a DB instance for an Aurora DB cluster.</p>
493
467
  * <p>All read replica DB instances are created with backups disabled. All other DB
494
468
  * instance attributes (including DB security groups and DB parameter groups) are inherited
495
469
  * from the source DB instance, except as specified.</p>
@@ -562,7 +536,7 @@ export declare class RDS extends RDSClient {
562
536
  createDBSubnetGroup(args: CreateDBSubnetGroupCommandInput, cb: (err: any, data?: CreateDBSubnetGroupCommandOutput) => void): void;
563
537
  createDBSubnetGroup(args: CreateDBSubnetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDBSubnetGroupCommandOutput) => void): void;
564
538
  /**
565
- * <p>Creates an RDS event notification subscription. This action requires a topic Amazon
539
+ * <p>Creates an RDS event notification subscription. This operation requires a topic Amazon
566
540
  * Resource Name (ARN) created by either the RDS console, the SNS console, or the SNS API.
567
541
  * To obtain an ARN with SNS, you must create a topic in Amazon SNS and subscribe to the
568
542
  * topic. The ARN is displayed in the SNS console.</p>
@@ -600,7 +574,7 @@ export declare class RDS extends RDSClient {
600
574
  * Or you can specify an existing Aurora cluster during the create operation,
601
575
  * and this cluster becomes the primary cluster of the global database.</p>
602
576
  * <note>
603
- * <p>This action only applies to Aurora DB clusters.</p>
577
+ * <p>This action applies only to Aurora DB clusters.</p>
604
578
  * </note>
605
579
  */
606
580
  createGlobalCluster(args: CreateGlobalClusterCommandInput, options?: __HttpHandlerOptions): Promise<CreateGlobalClusterCommandOutput>;
@@ -1034,6 +1008,8 @@ export declare class RDS extends RDSClient {
1034
1008
  * <p>Returns events related to DB instances, DB clusters, DB parameter groups, DB security groups, DB snapshots, DB cluster snapshots, and RDS Proxies for the past 14 days.
1035
1009
  * Events specific to a particular DB instance, DB cluster, DB parameter group, DB security group, DB snapshot, DB cluster snapshot group, or RDS Proxy can be
1036
1010
  * obtained by providing the name as a parameter.</p>
1011
+ * <p>For more information on working with events, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/working-with-events.html">Monitoring Amazon RDS events</a> in the <i>Amazon RDS User Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/working-with-events.html">Monitoring Amazon Aurora
1012
+ * events</a> in the <i>Amazon Aurora User Guide</i>.</p>
1037
1013
  * <note>
1038
1014
  * <p>By default, RDS returns events that were generated in the past hour.</p>
1039
1015
  * </note>
@@ -1132,7 +1108,7 @@ export declare class RDS extends RDSClient {
1132
1108
  * <p>For a Multi-AZ DB cluster, failover for a DB cluster promotes one of the readable standby DB instances (read-only instances)
1133
1109
  * in the DB cluster to be the primary DB instance (the cluster writer).</p>
1134
1110
  * <p>An Amazon Aurora DB cluster automatically fails over to an Aurora Replica, if one exists,
1135
- * when the primary DB instance fails. A Multi-AZ DB cluster automatically fails over to a readbable standby
1111
+ * when the primary DB instance fails. A Multi-AZ DB cluster automatically fails over to a readable standby
1136
1112
  * DB instance when the primary DB instance fails.</p>
1137
1113
  * <p>To simulate a failure of a primary instance for testing, you can force a failover.
1138
1114
  * Because each instance in a DB cluster has its own endpoint address, make sure to clean up and re-establish any existing
@@ -1174,6 +1150,16 @@ export declare class RDS extends RDSClient {
1174
1150
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
1175
1151
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
1176
1152
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
1153
+ /**
1154
+ * <p>Changes the audit policy state of a database activity stream to either locked (default) or unlocked. A locked policy is read-only,
1155
+ * whereas an unlocked policy is read/write. If your activity stream is started and locked, you can unlock it, customize your audit policy,
1156
+ * and then lock your activity stream. Restarting the activity stream isn't required. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/DBActivityStreams.Modifying.html"> Modifying a database activity stream</a> in the
1157
+ * <i>Amazon RDS User Guide</i>. </p>
1158
+ * <p>This operation is supported for RDS for Oracle only.</p>
1159
+ */
1160
+ modifyActivityStream(args: ModifyActivityStreamCommandInput, options?: __HttpHandlerOptions): Promise<ModifyActivityStreamCommandOutput>;
1161
+ modifyActivityStream(args: ModifyActivityStreamCommandInput, cb: (err: any, data?: ModifyActivityStreamCommandOutput) => void): void;
1162
+ modifyActivityStream(args: ModifyActivityStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyActivityStreamCommandOutput) => void): void;
1177
1163
  /**
1178
1164
  * <p>Override the system-default Secure Sockets Layer/Transport Layer Security (SSL/TLS)
1179
1165
  * certificate for Amazon RDS for new DB instances, or remove the override.</p>
@@ -1279,7 +1265,7 @@ export declare class RDS extends RDSClient {
1279
1265
  * that are critical when creating the default database for a DB cluster, such as the character set
1280
1266
  * for the default database defined by the <code>character_set_database</code> parameter. You can use the
1281
1267
  * <i>Parameter Groups</i> option of the <a href="https://console.aws.amazon.com/rds/">Amazon RDS console</a> or the
1282
- * <code>DescribeDBClusterParameters</code> action to verify
1268
+ * <code>DescribeDBClusterParameters</code> operation to verify
1283
1269
  * that your DB cluster parameter group has been created or modified.</p>
1284
1270
  * <p>If the modified DB cluster parameter group is used by an Aurora Serverless v1 cluster, Aurora
1285
1271
  * applies the update immediately. The cluster restart might interrupt your workload. In that case,
@@ -1315,7 +1301,7 @@ export declare class RDS extends RDSClient {
1315
1301
  * parameter. You can't use <code>all</code> as a value for that parameter in this
1316
1302
  * case.</p>
1317
1303
  * <p>To view which Amazon Web Services accounts have access to copy or restore a manual DB cluster
1318
- * snapshot, or whether a manual DB cluster snapshot is public or private, use the <a>DescribeDBClusterSnapshotAttributes</a> API action. The accounts are
1304
+ * snapshot, or whether a manual DB cluster snapshot is public or private, use the <a>DescribeDBClusterSnapshotAttributes</a> API operation. The accounts are
1319
1305
  * returned as values for the <code>restore</code> attribute.</p>
1320
1306
  */
1321
1307
  modifyDBClusterSnapshotAttribute(args: ModifyDBClusterSnapshotAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ModifyDBClusterSnapshotAttributeCommandOutput>;
@@ -1395,7 +1381,7 @@ export declare class RDS extends RDSClient {
1395
1381
  * list of authorized Amazon Web Services account IDs for the <code>ValuesToAdd</code> parameter. You
1396
1382
  * can't use <code>all</code> as a value for that parameter in this case.</p>
1397
1383
  * <p>To view which Amazon Web Services accounts have access to copy or restore a manual DB snapshot, or
1398
- * whether a manual DB snapshot public or private, use the <a>DescribeDBSnapshotAttributes</a> API action. The accounts are returned as
1384
+ * whether a manual DB snapshot public or private, use the <a>DescribeDBSnapshotAttributes</a> API operation. The accounts are returned as
1399
1385
  * values for the <code>restore</code> attribute.</p>
1400
1386
  */
1401
1387
  modifyDBSnapshotAttribute(args: ModifyDBSnapshotAttributeCommandInput, options?: __HttpHandlerOptions): Promise<ModifyDBSnapshotAttributeCommandOutput>;
@@ -1497,6 +1483,7 @@ export declare class RDS extends RDSClient {
1497
1483
  * <p>For more information about rebooting, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_RebootInstance.html">Rebooting a DB Instance</a> in the <i>Amazon RDS User Guide.</i>
1498
1484
  * </p>
1499
1485
  * <p>This command doesn't apply to RDS Custom.</p>
1486
+ * <p>If your DB instance is part of a Multi-AZ DB cluster, you can reboot the DB cluster with the <code>RebootDBCluster</code> operation.</p>
1500
1487
  */
1501
1488
  rebootDBInstance(args: RebootDBInstanceCommandInput, options?: __HttpHandlerOptions): Promise<RebootDBInstanceCommandOutput>;
1502
1489
  rebootDBInstance(args: RebootDBInstanceCommandInput, cb: (err: any, data?: RebootDBInstanceCommandOutput) => void): void;
@@ -1812,7 +1799,7 @@ export declare class RDS extends RDSClient {
1812
1799
  stopDBInstance(args: StopDBInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopDBInstanceCommandOutput) => void): void;
1813
1800
  /**
1814
1801
  * <p>Stops automated backup replication for a DB instance.</p>
1815
- * <p>This command doesn't apply to RDS Custom.</p>
1802
+ * <p>This command doesn't apply to RDS Custom, Aurora MySQL, and Aurora PostgreSQL.</p>
1816
1803
  * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html">
1817
1804
  * Replicating Automated Backups to Another Amazon Web Services Region</a> in the <i>Amazon RDS User Guide.</i>
1818
1805
  * </p>
@@ -94,6 +94,7 @@ import { DownloadDBLogFilePortionCommandInput, DownloadDBLogFilePortionCommandOu
94
94
  import { FailoverDBClusterCommandInput, FailoverDBClusterCommandOutput } from "./commands/FailoverDBClusterCommand";
95
95
  import { FailoverGlobalClusterCommandInput, FailoverGlobalClusterCommandOutput } from "./commands/FailoverGlobalClusterCommand";
96
96
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
97
+ import { ModifyActivityStreamCommandInput, ModifyActivityStreamCommandOutput } from "./commands/ModifyActivityStreamCommand";
97
98
  import { ModifyCertificatesCommandInput, ModifyCertificatesCommandOutput } from "./commands/ModifyCertificatesCommand";
98
99
  import { ModifyCurrentDBClusterCapacityCommandInput, ModifyCurrentDBClusterCapacityCommandOutput } from "./commands/ModifyCurrentDBClusterCapacityCommand";
99
100
  import { ModifyCustomDBEngineVersionCommandInput, ModifyCustomDBEngineVersionCommandOutput } from "./commands/ModifyCustomDBEngineVersionCommand";
@@ -141,8 +142,8 @@ import { StopActivityStreamCommandInput, StopActivityStreamCommandOutput } from
141
142
  import { StopDBClusterCommandInput, StopDBClusterCommandOutput } from "./commands/StopDBClusterCommand";
142
143
  import { StopDBInstanceAutomatedBackupsReplicationCommandInput, StopDBInstanceAutomatedBackupsReplicationCommandOutput } from "./commands/StopDBInstanceAutomatedBackupsReplicationCommand";
143
144
  import { StopDBInstanceCommandInput, StopDBInstanceCommandOutput } from "./commands/StopDBInstanceCommand";
144
- export declare type ServiceInputTypes = AddRoleToDBClusterCommandInput | AddRoleToDBInstanceCommandInput | AddSourceIdentifierToSubscriptionCommandInput | AddTagsToResourceCommandInput | ApplyPendingMaintenanceActionCommandInput | AuthorizeDBSecurityGroupIngressCommandInput | BacktrackDBClusterCommandInput | CancelExportTaskCommandInput | CopyDBClusterParameterGroupCommandInput | CopyDBClusterSnapshotCommandInput | CopyDBParameterGroupCommandInput | CopyDBSnapshotCommandInput | CopyOptionGroupCommandInput | CreateCustomDBEngineVersionCommandInput | CreateDBClusterCommandInput | CreateDBClusterEndpointCommandInput | CreateDBClusterParameterGroupCommandInput | CreateDBClusterSnapshotCommandInput | CreateDBInstanceCommandInput | CreateDBInstanceReadReplicaCommandInput | CreateDBParameterGroupCommandInput | CreateDBProxyCommandInput | CreateDBProxyEndpointCommandInput | CreateDBSecurityGroupCommandInput | CreateDBSnapshotCommandInput | CreateDBSubnetGroupCommandInput | CreateEventSubscriptionCommandInput | CreateGlobalClusterCommandInput | CreateOptionGroupCommandInput | DeleteCustomDBEngineVersionCommandInput | DeleteDBClusterCommandInput | DeleteDBClusterEndpointCommandInput | DeleteDBClusterParameterGroupCommandInput | DeleteDBClusterSnapshotCommandInput | DeleteDBInstanceAutomatedBackupCommandInput | DeleteDBInstanceCommandInput | DeleteDBParameterGroupCommandInput | DeleteDBProxyCommandInput | DeleteDBProxyEndpointCommandInput | DeleteDBSecurityGroupCommandInput | DeleteDBSnapshotCommandInput | DeleteDBSubnetGroupCommandInput | DeleteEventSubscriptionCommandInput | DeleteGlobalClusterCommandInput | DeleteOptionGroupCommandInput | DeregisterDBProxyTargetsCommandInput | DescribeAccountAttributesCommandInput | DescribeCertificatesCommandInput | DescribeDBClusterBacktracksCommandInput | DescribeDBClusterEndpointsCommandInput | DescribeDBClusterParameterGroupsCommandInput | DescribeDBClusterParametersCommandInput | DescribeDBClusterSnapshotAttributesCommandInput | DescribeDBClusterSnapshotsCommandInput | DescribeDBClustersCommandInput | DescribeDBEngineVersionsCommandInput | DescribeDBInstanceAutomatedBackupsCommandInput | DescribeDBInstancesCommandInput | DescribeDBLogFilesCommandInput | DescribeDBParameterGroupsCommandInput | DescribeDBParametersCommandInput | DescribeDBProxiesCommandInput | DescribeDBProxyEndpointsCommandInput | DescribeDBProxyTargetGroupsCommandInput | DescribeDBProxyTargetsCommandInput | DescribeDBSecurityGroupsCommandInput | DescribeDBSnapshotAttributesCommandInput | DescribeDBSnapshotsCommandInput | DescribeDBSubnetGroupsCommandInput | DescribeEngineDefaultClusterParametersCommandInput | DescribeEngineDefaultParametersCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeExportTasksCommandInput | DescribeGlobalClustersCommandInput | DescribeOptionGroupOptionsCommandInput | DescribeOptionGroupsCommandInput | DescribeOrderableDBInstanceOptionsCommandInput | DescribePendingMaintenanceActionsCommandInput | DescribeReservedDBInstancesCommandInput | DescribeReservedDBInstancesOfferingsCommandInput | DescribeSourceRegionsCommandInput | DescribeValidDBInstanceModificationsCommandInput | DownloadDBLogFilePortionCommandInput | FailoverDBClusterCommandInput | FailoverGlobalClusterCommandInput | ListTagsForResourceCommandInput | ModifyCertificatesCommandInput | ModifyCurrentDBClusterCapacityCommandInput | ModifyCustomDBEngineVersionCommandInput | ModifyDBClusterCommandInput | ModifyDBClusterEndpointCommandInput | ModifyDBClusterParameterGroupCommandInput | ModifyDBClusterSnapshotAttributeCommandInput | ModifyDBInstanceCommandInput | ModifyDBParameterGroupCommandInput | ModifyDBProxyCommandInput | ModifyDBProxyEndpointCommandInput | ModifyDBProxyTargetGroupCommandInput | ModifyDBSnapshotAttributeCommandInput | ModifyDBSnapshotCommandInput | ModifyDBSubnetGroupCommandInput | ModifyEventSubscriptionCommandInput | ModifyGlobalClusterCommandInput | ModifyOptionGroupCommandInput | PromoteReadReplicaCommandInput | PromoteReadReplicaDBClusterCommandInput | PurchaseReservedDBInstancesOfferingCommandInput | RebootDBClusterCommandInput | RebootDBInstanceCommandInput | RegisterDBProxyTargetsCommandInput | RemoveFromGlobalClusterCommandInput | RemoveRoleFromDBClusterCommandInput | RemoveRoleFromDBInstanceCommandInput | RemoveSourceIdentifierFromSubscriptionCommandInput | RemoveTagsFromResourceCommandInput | ResetDBClusterParameterGroupCommandInput | ResetDBParameterGroupCommandInput | RestoreDBClusterFromS3CommandInput | RestoreDBClusterFromSnapshotCommandInput | RestoreDBClusterToPointInTimeCommandInput | RestoreDBInstanceFromDBSnapshotCommandInput | RestoreDBInstanceFromS3CommandInput | RestoreDBInstanceToPointInTimeCommandInput | RevokeDBSecurityGroupIngressCommandInput | StartActivityStreamCommandInput | StartDBClusterCommandInput | StartDBInstanceAutomatedBackupsReplicationCommandInput | StartDBInstanceCommandInput | StartExportTaskCommandInput | StopActivityStreamCommandInput | StopDBClusterCommandInput | StopDBInstanceAutomatedBackupsReplicationCommandInput | StopDBInstanceCommandInput;
145
- export declare type ServiceOutputTypes = AddRoleToDBClusterCommandOutput | AddRoleToDBInstanceCommandOutput | AddSourceIdentifierToSubscriptionCommandOutput | AddTagsToResourceCommandOutput | ApplyPendingMaintenanceActionCommandOutput | AuthorizeDBSecurityGroupIngressCommandOutput | BacktrackDBClusterCommandOutput | CancelExportTaskCommandOutput | CopyDBClusterParameterGroupCommandOutput | CopyDBClusterSnapshotCommandOutput | CopyDBParameterGroupCommandOutput | CopyDBSnapshotCommandOutput | CopyOptionGroupCommandOutput | CreateCustomDBEngineVersionCommandOutput | CreateDBClusterCommandOutput | CreateDBClusterEndpointCommandOutput | CreateDBClusterParameterGroupCommandOutput | CreateDBClusterSnapshotCommandOutput | CreateDBInstanceCommandOutput | CreateDBInstanceReadReplicaCommandOutput | CreateDBParameterGroupCommandOutput | CreateDBProxyCommandOutput | CreateDBProxyEndpointCommandOutput | CreateDBSecurityGroupCommandOutput | CreateDBSnapshotCommandOutput | CreateDBSubnetGroupCommandOutput | CreateEventSubscriptionCommandOutput | CreateGlobalClusterCommandOutput | CreateOptionGroupCommandOutput | DeleteCustomDBEngineVersionCommandOutput | DeleteDBClusterCommandOutput | DeleteDBClusterEndpointCommandOutput | DeleteDBClusterParameterGroupCommandOutput | DeleteDBClusterSnapshotCommandOutput | DeleteDBInstanceAutomatedBackupCommandOutput | DeleteDBInstanceCommandOutput | DeleteDBParameterGroupCommandOutput | DeleteDBProxyCommandOutput | DeleteDBProxyEndpointCommandOutput | DeleteDBSecurityGroupCommandOutput | DeleteDBSnapshotCommandOutput | DeleteDBSubnetGroupCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteGlobalClusterCommandOutput | DeleteOptionGroupCommandOutput | DeregisterDBProxyTargetsCommandOutput | DescribeAccountAttributesCommandOutput | DescribeCertificatesCommandOutput | DescribeDBClusterBacktracksCommandOutput | DescribeDBClusterEndpointsCommandOutput | DescribeDBClusterParameterGroupsCommandOutput | DescribeDBClusterParametersCommandOutput | DescribeDBClusterSnapshotAttributesCommandOutput | DescribeDBClusterSnapshotsCommandOutput | DescribeDBClustersCommandOutput | DescribeDBEngineVersionsCommandOutput | DescribeDBInstanceAutomatedBackupsCommandOutput | DescribeDBInstancesCommandOutput | DescribeDBLogFilesCommandOutput | DescribeDBParameterGroupsCommandOutput | DescribeDBParametersCommandOutput | DescribeDBProxiesCommandOutput | DescribeDBProxyEndpointsCommandOutput | DescribeDBProxyTargetGroupsCommandOutput | DescribeDBProxyTargetsCommandOutput | DescribeDBSecurityGroupsCommandOutput | DescribeDBSnapshotAttributesCommandOutput | DescribeDBSnapshotsCommandOutput | DescribeDBSubnetGroupsCommandOutput | DescribeEngineDefaultClusterParametersCommandOutput | DescribeEngineDefaultParametersCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeExportTasksCommandOutput | DescribeGlobalClustersCommandOutput | DescribeOptionGroupOptionsCommandOutput | DescribeOptionGroupsCommandOutput | DescribeOrderableDBInstanceOptionsCommandOutput | DescribePendingMaintenanceActionsCommandOutput | DescribeReservedDBInstancesCommandOutput | DescribeReservedDBInstancesOfferingsCommandOutput | DescribeSourceRegionsCommandOutput | DescribeValidDBInstanceModificationsCommandOutput | DownloadDBLogFilePortionCommandOutput | FailoverDBClusterCommandOutput | FailoverGlobalClusterCommandOutput | ListTagsForResourceCommandOutput | ModifyCertificatesCommandOutput | ModifyCurrentDBClusterCapacityCommandOutput | ModifyCustomDBEngineVersionCommandOutput | ModifyDBClusterCommandOutput | ModifyDBClusterEndpointCommandOutput | ModifyDBClusterParameterGroupCommandOutput | ModifyDBClusterSnapshotAttributeCommandOutput | ModifyDBInstanceCommandOutput | ModifyDBParameterGroupCommandOutput | ModifyDBProxyCommandOutput | ModifyDBProxyEndpointCommandOutput | ModifyDBProxyTargetGroupCommandOutput | ModifyDBSnapshotAttributeCommandOutput | ModifyDBSnapshotCommandOutput | ModifyDBSubnetGroupCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyGlobalClusterCommandOutput | ModifyOptionGroupCommandOutput | PromoteReadReplicaCommandOutput | PromoteReadReplicaDBClusterCommandOutput | PurchaseReservedDBInstancesOfferingCommandOutput | RebootDBClusterCommandOutput | RebootDBInstanceCommandOutput | RegisterDBProxyTargetsCommandOutput | RemoveFromGlobalClusterCommandOutput | RemoveRoleFromDBClusterCommandOutput | RemoveRoleFromDBInstanceCommandOutput | RemoveSourceIdentifierFromSubscriptionCommandOutput | RemoveTagsFromResourceCommandOutput | ResetDBClusterParameterGroupCommandOutput | ResetDBParameterGroupCommandOutput | RestoreDBClusterFromS3CommandOutput | RestoreDBClusterFromSnapshotCommandOutput | RestoreDBClusterToPointInTimeCommandOutput | RestoreDBInstanceFromDBSnapshotCommandOutput | RestoreDBInstanceFromS3CommandOutput | RestoreDBInstanceToPointInTimeCommandOutput | RevokeDBSecurityGroupIngressCommandOutput | StartActivityStreamCommandOutput | StartDBClusterCommandOutput | StartDBInstanceAutomatedBackupsReplicationCommandOutput | StartDBInstanceCommandOutput | StartExportTaskCommandOutput | StopActivityStreamCommandOutput | StopDBClusterCommandOutput | StopDBInstanceAutomatedBackupsReplicationCommandOutput | StopDBInstanceCommandOutput;
145
+ export declare type ServiceInputTypes = AddRoleToDBClusterCommandInput | AddRoleToDBInstanceCommandInput | AddSourceIdentifierToSubscriptionCommandInput | AddTagsToResourceCommandInput | ApplyPendingMaintenanceActionCommandInput | AuthorizeDBSecurityGroupIngressCommandInput | BacktrackDBClusterCommandInput | CancelExportTaskCommandInput | CopyDBClusterParameterGroupCommandInput | CopyDBClusterSnapshotCommandInput | CopyDBParameterGroupCommandInput | CopyDBSnapshotCommandInput | CopyOptionGroupCommandInput | CreateCustomDBEngineVersionCommandInput | CreateDBClusterCommandInput | CreateDBClusterEndpointCommandInput | CreateDBClusterParameterGroupCommandInput | CreateDBClusterSnapshotCommandInput | CreateDBInstanceCommandInput | CreateDBInstanceReadReplicaCommandInput | CreateDBParameterGroupCommandInput | CreateDBProxyCommandInput | CreateDBProxyEndpointCommandInput | CreateDBSecurityGroupCommandInput | CreateDBSnapshotCommandInput | CreateDBSubnetGroupCommandInput | CreateEventSubscriptionCommandInput | CreateGlobalClusterCommandInput | CreateOptionGroupCommandInput | DeleteCustomDBEngineVersionCommandInput | DeleteDBClusterCommandInput | DeleteDBClusterEndpointCommandInput | DeleteDBClusterParameterGroupCommandInput | DeleteDBClusterSnapshotCommandInput | DeleteDBInstanceAutomatedBackupCommandInput | DeleteDBInstanceCommandInput | DeleteDBParameterGroupCommandInput | DeleteDBProxyCommandInput | DeleteDBProxyEndpointCommandInput | DeleteDBSecurityGroupCommandInput | DeleteDBSnapshotCommandInput | DeleteDBSubnetGroupCommandInput | DeleteEventSubscriptionCommandInput | DeleteGlobalClusterCommandInput | DeleteOptionGroupCommandInput | DeregisterDBProxyTargetsCommandInput | DescribeAccountAttributesCommandInput | DescribeCertificatesCommandInput | DescribeDBClusterBacktracksCommandInput | DescribeDBClusterEndpointsCommandInput | DescribeDBClusterParameterGroupsCommandInput | DescribeDBClusterParametersCommandInput | DescribeDBClusterSnapshotAttributesCommandInput | DescribeDBClusterSnapshotsCommandInput | DescribeDBClustersCommandInput | DescribeDBEngineVersionsCommandInput | DescribeDBInstanceAutomatedBackupsCommandInput | DescribeDBInstancesCommandInput | DescribeDBLogFilesCommandInput | DescribeDBParameterGroupsCommandInput | DescribeDBParametersCommandInput | DescribeDBProxiesCommandInput | DescribeDBProxyEndpointsCommandInput | DescribeDBProxyTargetGroupsCommandInput | DescribeDBProxyTargetsCommandInput | DescribeDBSecurityGroupsCommandInput | DescribeDBSnapshotAttributesCommandInput | DescribeDBSnapshotsCommandInput | DescribeDBSubnetGroupsCommandInput | DescribeEngineDefaultClusterParametersCommandInput | DescribeEngineDefaultParametersCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeExportTasksCommandInput | DescribeGlobalClustersCommandInput | DescribeOptionGroupOptionsCommandInput | DescribeOptionGroupsCommandInput | DescribeOrderableDBInstanceOptionsCommandInput | DescribePendingMaintenanceActionsCommandInput | DescribeReservedDBInstancesCommandInput | DescribeReservedDBInstancesOfferingsCommandInput | DescribeSourceRegionsCommandInput | DescribeValidDBInstanceModificationsCommandInput | DownloadDBLogFilePortionCommandInput | FailoverDBClusterCommandInput | FailoverGlobalClusterCommandInput | ListTagsForResourceCommandInput | ModifyActivityStreamCommandInput | ModifyCertificatesCommandInput | ModifyCurrentDBClusterCapacityCommandInput | ModifyCustomDBEngineVersionCommandInput | ModifyDBClusterCommandInput | ModifyDBClusterEndpointCommandInput | ModifyDBClusterParameterGroupCommandInput | ModifyDBClusterSnapshotAttributeCommandInput | ModifyDBInstanceCommandInput | ModifyDBParameterGroupCommandInput | ModifyDBProxyCommandInput | ModifyDBProxyEndpointCommandInput | ModifyDBProxyTargetGroupCommandInput | ModifyDBSnapshotAttributeCommandInput | ModifyDBSnapshotCommandInput | ModifyDBSubnetGroupCommandInput | ModifyEventSubscriptionCommandInput | ModifyGlobalClusterCommandInput | ModifyOptionGroupCommandInput | PromoteReadReplicaCommandInput | PromoteReadReplicaDBClusterCommandInput | PurchaseReservedDBInstancesOfferingCommandInput | RebootDBClusterCommandInput | RebootDBInstanceCommandInput | RegisterDBProxyTargetsCommandInput | RemoveFromGlobalClusterCommandInput | RemoveRoleFromDBClusterCommandInput | RemoveRoleFromDBInstanceCommandInput | RemoveSourceIdentifierFromSubscriptionCommandInput | RemoveTagsFromResourceCommandInput | ResetDBClusterParameterGroupCommandInput | ResetDBParameterGroupCommandInput | RestoreDBClusterFromS3CommandInput | RestoreDBClusterFromSnapshotCommandInput | RestoreDBClusterToPointInTimeCommandInput | RestoreDBInstanceFromDBSnapshotCommandInput | RestoreDBInstanceFromS3CommandInput | RestoreDBInstanceToPointInTimeCommandInput | RevokeDBSecurityGroupIngressCommandInput | StartActivityStreamCommandInput | StartDBClusterCommandInput | StartDBInstanceAutomatedBackupsReplicationCommandInput | StartDBInstanceCommandInput | StartExportTaskCommandInput | StopActivityStreamCommandInput | StopDBClusterCommandInput | StopDBInstanceAutomatedBackupsReplicationCommandInput | StopDBInstanceCommandInput;
146
+ export declare type ServiceOutputTypes = AddRoleToDBClusterCommandOutput | AddRoleToDBInstanceCommandOutput | AddSourceIdentifierToSubscriptionCommandOutput | AddTagsToResourceCommandOutput | ApplyPendingMaintenanceActionCommandOutput | AuthorizeDBSecurityGroupIngressCommandOutput | BacktrackDBClusterCommandOutput | CancelExportTaskCommandOutput | CopyDBClusterParameterGroupCommandOutput | CopyDBClusterSnapshotCommandOutput | CopyDBParameterGroupCommandOutput | CopyDBSnapshotCommandOutput | CopyOptionGroupCommandOutput | CreateCustomDBEngineVersionCommandOutput | CreateDBClusterCommandOutput | CreateDBClusterEndpointCommandOutput | CreateDBClusterParameterGroupCommandOutput | CreateDBClusterSnapshotCommandOutput | CreateDBInstanceCommandOutput | CreateDBInstanceReadReplicaCommandOutput | CreateDBParameterGroupCommandOutput | CreateDBProxyCommandOutput | CreateDBProxyEndpointCommandOutput | CreateDBSecurityGroupCommandOutput | CreateDBSnapshotCommandOutput | CreateDBSubnetGroupCommandOutput | CreateEventSubscriptionCommandOutput | CreateGlobalClusterCommandOutput | CreateOptionGroupCommandOutput | DeleteCustomDBEngineVersionCommandOutput | DeleteDBClusterCommandOutput | DeleteDBClusterEndpointCommandOutput | DeleteDBClusterParameterGroupCommandOutput | DeleteDBClusterSnapshotCommandOutput | DeleteDBInstanceAutomatedBackupCommandOutput | DeleteDBInstanceCommandOutput | DeleteDBParameterGroupCommandOutput | DeleteDBProxyCommandOutput | DeleteDBProxyEndpointCommandOutput | DeleteDBSecurityGroupCommandOutput | DeleteDBSnapshotCommandOutput | DeleteDBSubnetGroupCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteGlobalClusterCommandOutput | DeleteOptionGroupCommandOutput | DeregisterDBProxyTargetsCommandOutput | DescribeAccountAttributesCommandOutput | DescribeCertificatesCommandOutput | DescribeDBClusterBacktracksCommandOutput | DescribeDBClusterEndpointsCommandOutput | DescribeDBClusterParameterGroupsCommandOutput | DescribeDBClusterParametersCommandOutput | DescribeDBClusterSnapshotAttributesCommandOutput | DescribeDBClusterSnapshotsCommandOutput | DescribeDBClustersCommandOutput | DescribeDBEngineVersionsCommandOutput | DescribeDBInstanceAutomatedBackupsCommandOutput | DescribeDBInstancesCommandOutput | DescribeDBLogFilesCommandOutput | DescribeDBParameterGroupsCommandOutput | DescribeDBParametersCommandOutput | DescribeDBProxiesCommandOutput | DescribeDBProxyEndpointsCommandOutput | DescribeDBProxyTargetGroupsCommandOutput | DescribeDBProxyTargetsCommandOutput | DescribeDBSecurityGroupsCommandOutput | DescribeDBSnapshotAttributesCommandOutput | DescribeDBSnapshotsCommandOutput | DescribeDBSubnetGroupsCommandOutput | DescribeEngineDefaultClusterParametersCommandOutput | DescribeEngineDefaultParametersCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeExportTasksCommandOutput | DescribeGlobalClustersCommandOutput | DescribeOptionGroupOptionsCommandOutput | DescribeOptionGroupsCommandOutput | DescribeOrderableDBInstanceOptionsCommandOutput | DescribePendingMaintenanceActionsCommandOutput | DescribeReservedDBInstancesCommandOutput | DescribeReservedDBInstancesOfferingsCommandOutput | DescribeSourceRegionsCommandOutput | DescribeValidDBInstanceModificationsCommandOutput | DownloadDBLogFilePortionCommandOutput | FailoverDBClusterCommandOutput | FailoverGlobalClusterCommandOutput | ListTagsForResourceCommandOutput | ModifyActivityStreamCommandOutput | ModifyCertificatesCommandOutput | ModifyCurrentDBClusterCapacityCommandOutput | ModifyCustomDBEngineVersionCommandOutput | ModifyDBClusterCommandOutput | ModifyDBClusterEndpointCommandOutput | ModifyDBClusterParameterGroupCommandOutput | ModifyDBClusterSnapshotAttributeCommandOutput | ModifyDBInstanceCommandOutput | ModifyDBParameterGroupCommandOutput | ModifyDBProxyCommandOutput | ModifyDBProxyEndpointCommandOutput | ModifyDBProxyTargetGroupCommandOutput | ModifyDBSnapshotAttributeCommandOutput | ModifyDBSnapshotCommandOutput | ModifyDBSubnetGroupCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyGlobalClusterCommandOutput | ModifyOptionGroupCommandOutput | PromoteReadReplicaCommandOutput | PromoteReadReplicaDBClusterCommandOutput | PurchaseReservedDBInstancesOfferingCommandOutput | RebootDBClusterCommandOutput | RebootDBInstanceCommandOutput | RegisterDBProxyTargetsCommandOutput | RemoveFromGlobalClusterCommandOutput | RemoveRoleFromDBClusterCommandOutput | RemoveRoleFromDBInstanceCommandOutput | RemoveSourceIdentifierFromSubscriptionCommandOutput | RemoveTagsFromResourceCommandOutput | ResetDBClusterParameterGroupCommandOutput | ResetDBParameterGroupCommandOutput | RestoreDBClusterFromS3CommandOutput | RestoreDBClusterFromSnapshotCommandOutput | RestoreDBClusterToPointInTimeCommandOutput | RestoreDBInstanceFromDBSnapshotCommandOutput | RestoreDBInstanceFromS3CommandOutput | RestoreDBInstanceToPointInTimeCommandOutput | RevokeDBSecurityGroupIngressCommandOutput | StartActivityStreamCommandOutput | StartDBClusterCommandOutput | StartDBInstanceAutomatedBackupsReplicationCommandOutput | StartDBInstanceCommandOutput | StartExportTaskCommandOutput | StopActivityStreamCommandOutput | StopDBClusterCommandOutput | StopDBInstanceAutomatedBackupsReplicationCommandOutput | StopDBInstanceCommandOutput;
146
147
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
147
148
  /**
148
149
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
@@ -13,7 +13,7 @@ export interface BacktrackDBClusterCommandOutput extends DBClusterBacktrack, __M
13
13
  * Backtracking an Aurora DB Cluster</a> in the
14
14
  * <i>Amazon Aurora User Guide</i>.</p>
15
15
  * <note>
16
- * <p>This action only applies to Aurora MySQL DB clusters.</p>
16
+ * <p>This action applies only to Aurora MySQL DB clusters.</p>
17
17
  * </note>
18
18
  * @example
19
19
  * Use a bare-bones client and the command you need to make an API call.
@@ -10,9 +10,11 @@ export interface CopyDBClusterSnapshotCommandOutput extends CopyDBClusterSnapsho
10
10
  * <p>Copies a snapshot of a DB cluster.</p>
11
11
  * <p>To copy a DB cluster snapshot from a shared manual DB cluster snapshot, <code>SourceDBClusterSnapshotIdentifier</code>
12
12
  * must be the Amazon Resource Name (ARN) of the shared DB cluster snapshot.</p>
13
- * <p>You can copy an encrypted DB cluster snapshot from another Amazon Web Services Region. In that case, the Amazon Web Services Region where you call the <code>CopyDBClusterSnapshot</code> action
14
- * is the destination Amazon Web Services Region for the encrypted DB cluster snapshot to be copied to. To copy an encrypted DB cluster snapshot from another Amazon Web Services Region,
15
- * you must provide the following values:</p>
13
+ * <p>You can copy an encrypted DB cluster snapshot from another Amazon Web Services Region. In that case,
14
+ * the Amazon Web Services Region where you call the <code>CopyDBClusterSnapshot</code> operation is the
15
+ * destination Amazon Web Services Region for the encrypted DB cluster snapshot to be copied to. To copy
16
+ * an encrypted DB cluster snapshot from another Amazon Web Services Region, you must provide the
17
+ * following values:</p>
16
18
  * <ul>
17
19
  * <li>
18
20
  * <p>
@@ -21,49 +23,14 @@ export interface CopyDBClusterSnapshotCommandOutput extends CopyDBClusterSnapsho
21
23
  * </li>
22
24
  * <li>
23
25
  * <p>
24
- * <code>PreSignedUrl</code> - A URL that contains a Signature Version 4 signed request for the
25
- * <code>CopyDBClusterSnapshot</code> action to be called in the source Amazon Web Services Region where the DB cluster snapshot is copied from.
26
- * The pre-signed URL must be a valid request for the <code>CopyDBClusterSnapshot</code> API action that can be executed in the
27
- * source Amazon Web Services Region that contains the encrypted DB cluster snapshot to be copied.</p>
28
- * <p>The pre-signed URL request must contain the following parameter values:</p>
29
- * <ul>
30
- * <li>
31
- * <p>
32
- * <code>KmsKeyId</code> - The Amazon Web Services KMS key identifier for the KMS key to use to encrypt the copy of the DB
33
- * cluster snapshot in the destination Amazon Web Services Region. This is the same identifier for both the <code>CopyDBClusterSnapshot</code>
34
- * action that is called in the destination Amazon Web Services Region, and the action contained in the pre-signed URL.</p>
35
- * </li>
36
- * <li>
37
- * <p>
38
- * <code>DestinationRegion</code> - The name of the Amazon Web Services Region that the DB cluster snapshot is to be created in.</p>
39
- * </li>
40
- * <li>
41
- * <p>
42
- * <code>SourceDBClusterSnapshotIdentifier</code> - The DB cluster snapshot identifier for the encrypted DB cluster
43
- * snapshot to be copied. This identifier must be in the Amazon Resource Name (ARN) format for the source Amazon Web Services Region. For example,
44
- * if you are copying an encrypted DB cluster snapshot from the us-west-2 Amazon Web Services Region, then your <code>SourceDBClusterSnapshotIdentifier</code>
45
- * looks like the following example: <code>arn:aws:rds:us-west-2:123456789012:cluster-snapshot:aurora-cluster1-snapshot-20161115</code>.</p>
46
- * </li>
47
- * </ul>
48
- * <p>To learn how to generate a Signature Version 4 signed request, see
49
- * <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html">
50
- * Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4)</a> and
51
- * <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">
52
- * Signature Version 4 Signing Process</a>.</p>
53
- * <note>
54
- * <p>If you are using an Amazon Web Services SDK tool or the CLI, you can specify <code>SourceRegion</code> (or <code>--source-region</code> for the CLI)
55
- * instead of specifying <code>PreSignedUrl</code> manually. Specifying <code>SourceRegion</code> autogenerates a pre-signed URL that is a valid
56
- * request for the operation that can be executed in the source Amazon Web Services Region.</p>
57
- * </note>
58
- * </li>
59
- * <li>
60
- * <p>
61
26
  * <code>TargetDBClusterSnapshotIdentifier</code> - The identifier for the new copy of the DB cluster snapshot in the destination Amazon Web Services Region.</p>
62
27
  * </li>
63
28
  * <li>
64
29
  * <p>
65
- * <code>SourceDBClusterSnapshotIdentifier</code> - The DB cluster snapshot identifier for the encrypted DB cluster snapshot to be copied.
66
- * This identifier must be in the ARN format for the source Amazon Web Services Region and is the same value as the <code>SourceDBClusterSnapshotIdentifier</code> in the pre-signed URL.</p>
30
+ * <code>SourceDBClusterSnapshotIdentifier</code> - The DB cluster snapshot
31
+ * identifier for the encrypted DB cluster snapshot to be copied. This identifier
32
+ * must be in the ARN format for the source Amazon Web Services Region and is the same value as
33
+ * the <code>SourceDBClusterSnapshotIdentifier</code> in the presigned URL.</p>
67
34
  * </li>
68
35
  * </ul>
69
36
  * <p>To cancel the copy operation once it is in progress, delete the target DB cluster snapshot identified
@@ -8,9 +8,9 @@ export interface CopyDBSnapshotCommandOutput extends CopyDBSnapshotResult, __Met
8
8
  }
9
9
  /**
10
10
  * <p>Copies the specified DB snapshot. The source DB snapshot must be in the <code>available</code> state.</p>
11
- * <p>You can copy a snapshot from one Amazon Web Services Region to another. In that case, the Amazon Web Services Region
12
- * where you call the <code>CopyDBSnapshot</code> action is the destination Amazon Web Services Region for the
13
- * DB snapshot copy.</p>
11
+ * <p>You can copy a snapshot from one Amazon Web Services Region to another. In that case, the
12
+ * Amazon Web Services Region where you call the <code>CopyDBSnapshot</code> operation is the destination
13
+ * Amazon Web Services Region for the DB snapshot copy.</p>
14
14
  * <p>This command doesn't apply to RDS Custom.</p>
15
15
  * <p>For more information about copying snapshots, see
16
16
  * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopyDBSnapshot">Copying a DB Snapshot</a> in the <i>Amazon RDS User Guide</i>.</p>
@@ -10,9 +10,7 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M
10
10
  * <p>Creates a new Amazon Aurora DB cluster or Multi-AZ DB cluster.</p>
11
11
  * <p>You can use the <code>ReplicationSourceIdentifier</code> parameter to create an Amazon
12
12
  * Aurora DB cluster as a read replica of another DB cluster or Amazon RDS MySQL or
13
- * PostgreSQL DB instance. For cross-Region replication where the DB cluster identified by
14
- * <code>ReplicationSourceIdentifier</code> is encrypted, also specify the
15
- * <code>PreSignedUrl</code> parameter.</p>
13
+ * PostgreSQL DB instance.</p>
16
14
  * <p>For more information on Amazon Aurora, see
17
15
  * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
18
16
  * What is Amazon Aurora?</a> in the <i>Amazon Aurora User Guide</i>.</p>
@@ -9,7 +9,7 @@ export interface CreateDBClusterEndpointCommandOutput extends DBClusterEndpoint,
9
9
  /**
10
10
  * <p>Creates a new custom endpoint and associates it with an Amazon Aurora DB cluster.</p>
11
11
  * <note>
12
- * <p>This action only applies to Aurora DB clusters.</p>
12
+ * <p>This action applies only to Aurora DB clusters.</p>
13
13
  * </note>
14
14
  * @example
15
15
  * Use a bare-bones client and the command you need to make an API call.