@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.
- package/CHANGELOG.md +27 -0
- package/dist-cjs/RDS.js +15 -0
- package/dist-cjs/commands/ModifyActivityStreamCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +13 -12
- package/dist-cjs/models/models_1.js +27 -4
- package/dist-cjs/protocols/Aws_query.js +104 -5
- package/dist-es/RDS.js +15 -0
- package/dist-es/commands/ModifyActivityStreamCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +7 -4
- package/dist-es/models/models_1.js +17 -0
- package/dist-es/protocols/Aws_query.js +112 -0
- package/dist-types/RDS.d.ts +55 -68
- package/dist-types/RDSClient.d.ts +3 -2
- package/dist-types/commands/BacktrackDBClusterCommand.d.ts +1 -1
- package/dist-types/commands/CopyDBClusterSnapshotCommand.d.ts +9 -42
- package/dist-types/commands/CopyDBSnapshotCommand.d.ts +3 -3
- package/dist-types/commands/CreateDBClusterCommand.d.ts +1 -3
- package/dist-types/commands/CreateDBClusterEndpointCommand.d.ts +1 -1
- package/dist-types/commands/CreateDBClusterParameterGroupCommand.d.ts +9 -9
- package/dist-types/commands/CreateDBInstanceCommand.d.ts +8 -0
- package/dist-types/commands/CreateDBInstanceReadReplicaCommand.d.ts +2 -2
- package/dist-types/commands/CreateEventSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/CreateGlobalClusterCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEventsCommand.d.ts +2 -0
- package/dist-types/commands/FailoverDBClusterCommand.d.ts +1 -1
- package/dist-types/commands/ModifyActivityStreamCommand.d.ts +39 -0
- package/dist-types/commands/ModifyDBClusterParameterGroupCommand.d.ts +1 -1
- package/dist-types/commands/ModifyDBClusterSnapshotAttributeCommand.d.ts +1 -1
- package/dist-types/commands/ModifyDBSnapshotAttributeCommand.d.ts +1 -1
- package/dist-types/commands/RebootDBInstanceCommand.d.ts +1 -0
- package/dist-types/commands/StopDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +342 -133
- package/dist-types/models/models_1.d.ts +216 -39
- package/dist-types/protocols/Aws_query.d.ts +3 -0
- package/dist-types/ts3.4/RDS.d.ts +5 -0
- package/dist-types/ts3.4/RDSClient.d.ts +3 -2
- package/dist-types/ts3.4/commands/ModifyActivityStreamCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +8 -11
- package/dist-types/ts3.4/models/models_1.d.ts +44 -1
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +3 -0
- package/package.json +4 -4
|
@@ -1,6 +1,36 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { ActivityStreamMode, ActivityStreamStatus, AutomationMode, AvailabilityZone, Certificate, DBCluster, DBClusterSnapshotAttributesResult, DBInstance, DBInstanceAutomatedBackup, DBProxy, DBProxyEndpoint, DBProxyTarget, DBProxyTargetGroup, DBSecurityGroup, DBSnapshot,
|
|
2
|
+
import { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, AutomationMode, AvailabilityZone, Certificate, DBCluster, DBClusterSnapshotAttributesResult, DBInstance, DBInstanceAutomatedBackup, DBProxy, DBProxyEndpoint, DBProxyTarget, DBProxyTargetGroup, DBSecurityGroup, DBSnapshot, DBSubnetGroup, EventSubscription, ExportTask, Filter, GlobalCluster, OptionGroup, OptionSetting, Parameter, ProcessorFeature, ReplicaMode, ResourcePendingMaintenanceActions, ScalingConfiguration, ServerlessV2ScalingConfiguration, Tag, UserAuthConfig } from "./models_0";
|
|
3
3
|
import { RDSServiceException as __BaseException } from "./RDSServiceException";
|
|
4
|
+
/**
|
|
5
|
+
* <p>Contains the name and values of a manual DB snapshot attribute</p>
|
|
6
|
+
* <p>Manual DB snapshot attributes are used to authorize other Amazon Web Services accounts
|
|
7
|
+
* to restore a manual DB snapshot. For more information, see the <code>ModifyDBSnapshotAttribute</code>
|
|
8
|
+
* API.</p>
|
|
9
|
+
*/
|
|
10
|
+
export interface DBSnapshotAttribute {
|
|
11
|
+
/**
|
|
12
|
+
* <p>The name of the manual DB snapshot attribute.</p>
|
|
13
|
+
* <p>The attribute named <code>restore</code> refers to the list of Amazon Web Services accounts that
|
|
14
|
+
* have permission to copy or restore the manual DB cluster snapshot. For more information,
|
|
15
|
+
* see the <code>ModifyDBSnapshotAttribute</code>
|
|
16
|
+
* API action.</p>
|
|
17
|
+
*/
|
|
18
|
+
AttributeName?: string;
|
|
19
|
+
/**
|
|
20
|
+
* <p>The value or values for the manual DB snapshot attribute.</p>
|
|
21
|
+
* <p>If the <code>AttributeName</code> field is set to <code>restore</code>, then this element
|
|
22
|
+
* returns a list of IDs of the Amazon Web Services accounts that are authorized to copy or restore the manual
|
|
23
|
+
* DB snapshot. If a value of <code>all</code> is in the list, then the manual DB snapshot
|
|
24
|
+
* is public and available for any Amazon Web Services account to copy or restore.</p>
|
|
25
|
+
*/
|
|
26
|
+
AttributeValues?: string[];
|
|
27
|
+
}
|
|
28
|
+
export declare namespace DBSnapshotAttribute {
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
const filterSensitiveLog: (obj: DBSnapshotAttribute) => any;
|
|
33
|
+
}
|
|
4
34
|
/**
|
|
5
35
|
* <p>Contains the results of a successful call to the <code>DescribeDBSnapshotAttributes</code>
|
|
6
36
|
* API action.</p>
|
|
@@ -68,7 +98,6 @@ export declare namespace DBSnapshotMessage {
|
|
|
68
98
|
export interface DescribeDBSnapshotsMessage {
|
|
69
99
|
/**
|
|
70
100
|
* <p>The ID of the DB instance to retrieve the list of DB snapshots for.
|
|
71
|
-
* This parameter can't be used in conjunction with <code>DBSnapshotIdentifier</code>.
|
|
72
101
|
* This parameter isn't case-sensitive.</p>
|
|
73
102
|
* <p>Constraints:</p>
|
|
74
103
|
* <ul>
|
|
@@ -79,7 +108,7 @@ export interface DescribeDBSnapshotsMessage {
|
|
|
79
108
|
*/
|
|
80
109
|
DBInstanceIdentifier?: string;
|
|
81
110
|
/**
|
|
82
|
-
* <p>A specific DB snapshot identifier to describe.
|
|
111
|
+
* <p>A specific DB snapshot identifier to describe.
|
|
83
112
|
* This value is stored as a lowercase string.</p>
|
|
84
113
|
* <p>Constraints:</p>
|
|
85
114
|
* <ul>
|
|
@@ -604,7 +633,8 @@ export declare namespace DescribeEventCategoriesMessage {
|
|
|
604
633
|
const filterSensitiveLog: (obj: DescribeEventCategoriesMessage) => any;
|
|
605
634
|
}
|
|
606
635
|
/**
|
|
607
|
-
* <p>Contains the results of a successful invocation of the <
|
|
636
|
+
* <p>Contains the results of a successful invocation of the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeEventCategories.html">DescribeEventCategories</a>
|
|
637
|
+
* operation.</p>
|
|
608
638
|
*/
|
|
609
639
|
export interface EventCategoriesMap {
|
|
610
640
|
/**
|
|
@@ -734,7 +764,7 @@ export declare namespace DescribeEventsMessage {
|
|
|
734
764
|
const filterSensitiveLog: (obj: DescribeEventsMessage) => any;
|
|
735
765
|
}
|
|
736
766
|
/**
|
|
737
|
-
* <p>This data type is used as a response element in the <
|
|
767
|
+
* <p>This data type is used as a response element in the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeEvents.html">DescribeEvents</a> action.</p>
|
|
738
768
|
*/
|
|
739
769
|
export interface Event {
|
|
740
770
|
/**
|
|
@@ -1528,7 +1558,7 @@ export interface DescribeOrderableDBInstanceOptionsMessage {
|
|
|
1528
1558
|
* a pagination token called a marker is included in the response so that
|
|
1529
1559
|
* you can retrieve the remaining results.</p>
|
|
1530
1560
|
* <p>Default: 100</p>
|
|
1531
|
-
* <p>Constraints: Minimum 20, maximum
|
|
1561
|
+
* <p>Constraints: Minimum 20, maximum 10000.</p>
|
|
1532
1562
|
*/
|
|
1533
1563
|
MaxRecords?: number;
|
|
1534
1564
|
/**
|
|
@@ -2622,6 +2652,60 @@ export declare namespace TagListMessage {
|
|
|
2622
2652
|
*/
|
|
2623
2653
|
const filterSensitiveLog: (obj: TagListMessage) => any;
|
|
2624
2654
|
}
|
|
2655
|
+
export declare enum AuditPolicyState {
|
|
2656
|
+
LOCKED_POLICY = "locked",
|
|
2657
|
+
UNLOCKED_POLICY = "unlocked"
|
|
2658
|
+
}
|
|
2659
|
+
export interface ModifyActivityStreamRequest {
|
|
2660
|
+
/**
|
|
2661
|
+
* <p>The Amazon Resource Name (ARN) of the RDS for Oracle DB instance,
|
|
2662
|
+
* for example, <code>arn:aws:rds:us-east-1:12345667890:instance:my-orcl-db</code>.</p>
|
|
2663
|
+
*/
|
|
2664
|
+
ResourceArn?: string;
|
|
2665
|
+
/**
|
|
2666
|
+
* <p>The audit policy state. When a policy is unlocked, it is read/write. When it is locked, it is
|
|
2667
|
+
* read-only. You can edit your audit policy only when the activity stream is unlocked or stopped.</p>
|
|
2668
|
+
*/
|
|
2669
|
+
AuditPolicyState?: AuditPolicyState | string;
|
|
2670
|
+
}
|
|
2671
|
+
export declare namespace ModifyActivityStreamRequest {
|
|
2672
|
+
/**
|
|
2673
|
+
* @internal
|
|
2674
|
+
*/
|
|
2675
|
+
const filterSensitiveLog: (obj: ModifyActivityStreamRequest) => any;
|
|
2676
|
+
}
|
|
2677
|
+
export interface ModifyActivityStreamResponse {
|
|
2678
|
+
/**
|
|
2679
|
+
* <p>The Amazon Web Services KMS key identifier for encryption of messages in the database activity stream.</p>
|
|
2680
|
+
*/
|
|
2681
|
+
KmsKeyId?: string;
|
|
2682
|
+
/**
|
|
2683
|
+
* <p>The name of the Amazon Kinesis data stream to be used for the database activity stream.</p>
|
|
2684
|
+
*/
|
|
2685
|
+
KinesisStreamName?: string;
|
|
2686
|
+
/**
|
|
2687
|
+
* <p>The status of the modification to the database activity stream.</p>
|
|
2688
|
+
*/
|
|
2689
|
+
Status?: ActivityStreamStatus | string;
|
|
2690
|
+
/**
|
|
2691
|
+
* <p>The mode of the database activity stream.</p>
|
|
2692
|
+
*/
|
|
2693
|
+
Mode?: ActivityStreamMode | string;
|
|
2694
|
+
/**
|
|
2695
|
+
* <p>Indicates whether engine-native audit fields are included in the database activity stream.</p>
|
|
2696
|
+
*/
|
|
2697
|
+
EngineNativeAuditFieldsIncluded?: boolean;
|
|
2698
|
+
/**
|
|
2699
|
+
* <p>The status of the modification to the policy state of the database activity stream.</p>
|
|
2700
|
+
*/
|
|
2701
|
+
PolicyStatus?: ActivityStreamPolicyStatus | string;
|
|
2702
|
+
}
|
|
2703
|
+
export declare namespace ModifyActivityStreamResponse {
|
|
2704
|
+
/**
|
|
2705
|
+
* @internal
|
|
2706
|
+
*/
|
|
2707
|
+
const filterSensitiveLog: (obj: ModifyActivityStreamResponse) => any;
|
|
2708
|
+
}
|
|
2625
2709
|
export interface ModifyCertificatesMessage {
|
|
2626
2710
|
/**
|
|
2627
2711
|
* <p>The new default certificate identifier to override the current one with.</p>
|
|
@@ -3178,7 +3262,35 @@ export interface ModifyDBClusterMessage {
|
|
|
3178
3262
|
*/
|
|
3179
3263
|
PerformanceInsightsKMSKeyId?: string;
|
|
3180
3264
|
/**
|
|
3181
|
-
* <p>The
|
|
3265
|
+
* <p>The number of days to retain Performance Insights data. The default is 7 days. The following values are valid:</p>
|
|
3266
|
+
* <ul>
|
|
3267
|
+
* <li>
|
|
3268
|
+
* <p>7</p>
|
|
3269
|
+
* </li>
|
|
3270
|
+
* <li>
|
|
3271
|
+
* <p>
|
|
3272
|
+
* <i>month</i> * 31, where <i>month</i> is a number of months from 1-23</p>
|
|
3273
|
+
* </li>
|
|
3274
|
+
* <li>
|
|
3275
|
+
* <p>731</p>
|
|
3276
|
+
* </li>
|
|
3277
|
+
* </ul>
|
|
3278
|
+
* <p>For example, the following values are valid:</p>
|
|
3279
|
+
* <ul>
|
|
3280
|
+
* <li>
|
|
3281
|
+
* <p>93 (3 months * 31)</p>
|
|
3282
|
+
* </li>
|
|
3283
|
+
* <li>
|
|
3284
|
+
* <p>341 (11 months * 31)</p>
|
|
3285
|
+
* </li>
|
|
3286
|
+
* <li>
|
|
3287
|
+
* <p>589 (19 months * 31)</p>
|
|
3288
|
+
* </li>
|
|
3289
|
+
* <li>
|
|
3290
|
+
* <p>731</p>
|
|
3291
|
+
* </li>
|
|
3292
|
+
* </ul>
|
|
3293
|
+
* <p>If you specify a retention period such as 94, which isn't a valid value, RDS issues an error.</p>
|
|
3182
3294
|
* <p>Valid for: Multi-AZ DB clusters only</p>
|
|
3183
3295
|
*/
|
|
3184
3296
|
PerformanceInsightsRetentionPeriod?: number;
|
|
@@ -3323,7 +3435,7 @@ export interface ModifyDBClusterSnapshotAttributeMessage {
|
|
|
3323
3435
|
* set this value to <code>restore</code>.</p>
|
|
3324
3436
|
* <note>
|
|
3325
3437
|
* <p>To view the list of attributes available to modify, use the
|
|
3326
|
-
* <a>DescribeDBClusterSnapshotAttributes</a> API
|
|
3438
|
+
* <a>DescribeDBClusterSnapshotAttributes</a> API operation.</p>
|
|
3327
3439
|
* </note>
|
|
3328
3440
|
*/
|
|
3329
3441
|
AttributeName: string | undefined;
|
|
@@ -3417,11 +3529,13 @@ export interface ModifyDBInstanceMessage {
|
|
|
3417
3529
|
*/
|
|
3418
3530
|
AllocatedStorage?: number;
|
|
3419
3531
|
/**
|
|
3420
|
-
* <p>The new compute and memory capacity of the DB instance, for example db.
|
|
3532
|
+
* <p>The new compute and memory capacity of the DB instance, for example db.m5.large.
|
|
3421
3533
|
* Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines.
|
|
3422
|
-
* For the full list of DB instance classes,
|
|
3423
|
-
*
|
|
3424
|
-
*
|
|
3534
|
+
* For the full list of DB instance classes, and availability for your engine, see
|
|
3535
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html">DB instance
|
|
3536
|
+
* classes</a> in the <i>Amazon RDS User Guide</i> or
|
|
3537
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html">Aurora
|
|
3538
|
+
* DB instance classes</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
3425
3539
|
* <p>If you modify the DB instance class, an outage occurs during the change.
|
|
3426
3540
|
* The change is applied during the next maintenance window,
|
|
3427
3541
|
* unless <code>ApplyImmediately</code> is enabled for this request.</p>
|
|
@@ -3521,7 +3635,7 @@ export interface ModifyDBInstanceMessage {
|
|
|
3521
3635
|
* </p>
|
|
3522
3636
|
* <p>Constraints: Must contain from 8 to 128 characters.</p>
|
|
3523
3637
|
* <note>
|
|
3524
|
-
* <p>Amazon RDS API
|
|
3638
|
+
* <p>Amazon RDS API operations never return the password,
|
|
3525
3639
|
* so this action provides a way to regain access to a primary instance user if the password is lost.
|
|
3526
3640
|
* This includes restoring privileges that might have been accidentally revoked.</p>
|
|
3527
3641
|
* </note>
|
|
@@ -3558,7 +3672,7 @@ export interface ModifyDBInstanceMessage {
|
|
|
3558
3672
|
* <ul>
|
|
3559
3673
|
* <li>
|
|
3560
3674
|
* <p>It must be a value from 0 to 35. It can't be set to 0 if the DB instance is a source to
|
|
3561
|
-
* read replicas. It can't be set to 0
|
|
3675
|
+
* read replicas. It can't be set to 0 for an RDS Custom for Oracle DB instance.</p>
|
|
3562
3676
|
* </li>
|
|
3563
3677
|
* <li>
|
|
3564
3678
|
* <p>It can be specified for a MySQL read replica only if the source is running MySQL 5.6 or
|
|
@@ -3912,7 +4026,7 @@ export interface ModifyDBInstanceMessage {
|
|
|
3912
4026
|
/**
|
|
3913
4027
|
* <p>A value that indicates whether to enable Performance Insights for the DB instance.</p>
|
|
3914
4028
|
* <p>For more information, see
|
|
3915
|
-
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html">Using Amazon Performance Insights</a> in the <i>Amazon RDS User Guide
|
|
4029
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html">Using Amazon Performance Insights</a> in the <i>Amazon RDS User Guide</i>.</p>
|
|
3916
4030
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
3917
4031
|
*/
|
|
3918
4032
|
EnablePerformanceInsights?: boolean;
|
|
@@ -3926,7 +4040,35 @@ export interface ModifyDBInstanceMessage {
|
|
|
3926
4040
|
*/
|
|
3927
4041
|
PerformanceInsightsKMSKeyId?: string;
|
|
3928
4042
|
/**
|
|
3929
|
-
* <p>The
|
|
4043
|
+
* <p>The number of days to retain Performance Insights data. The default is 7 days. The following values are valid:</p>
|
|
4044
|
+
* <ul>
|
|
4045
|
+
* <li>
|
|
4046
|
+
* <p>7</p>
|
|
4047
|
+
* </li>
|
|
4048
|
+
* <li>
|
|
4049
|
+
* <p>
|
|
4050
|
+
* <i>month</i> * 31, where <i>month</i> is a number of months from 1-23</p>
|
|
4051
|
+
* </li>
|
|
4052
|
+
* <li>
|
|
4053
|
+
* <p>731</p>
|
|
4054
|
+
* </li>
|
|
4055
|
+
* </ul>
|
|
4056
|
+
* <p>For example, the following values are valid:</p>
|
|
4057
|
+
* <ul>
|
|
4058
|
+
* <li>
|
|
4059
|
+
* <p>93 (3 months * 31)</p>
|
|
4060
|
+
* </li>
|
|
4061
|
+
* <li>
|
|
4062
|
+
* <p>341 (11 months * 31)</p>
|
|
4063
|
+
* </li>
|
|
4064
|
+
* <li>
|
|
4065
|
+
* <p>589 (19 months * 31)</p>
|
|
4066
|
+
* </li>
|
|
4067
|
+
* <li>
|
|
4068
|
+
* <p>731</p>
|
|
4069
|
+
* </li>
|
|
4070
|
+
* </ul>
|
|
4071
|
+
* <p>If you specify a retention period such as 94, which isn't a valid value, RDS issues an error.</p>
|
|
3930
4072
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
3931
4073
|
*/
|
|
3932
4074
|
PerformanceInsightsRetentionPeriod?: number;
|
|
@@ -4286,11 +4428,11 @@ export declare namespace ConnectionPoolConfiguration {
|
|
|
4286
4428
|
}
|
|
4287
4429
|
export interface ModifyDBProxyTargetGroupRequest {
|
|
4288
4430
|
/**
|
|
4289
|
-
* <p>The name of the
|
|
4431
|
+
* <p>The name of the target group to modify.</p>
|
|
4290
4432
|
*/
|
|
4291
4433
|
TargetGroupName: string | undefined;
|
|
4292
4434
|
/**
|
|
4293
|
-
* <p>The name of the
|
|
4435
|
+
* <p>The name of the proxy.</p>
|
|
4294
4436
|
*/
|
|
4295
4437
|
DBProxyName: string | undefined;
|
|
4296
4438
|
/**
|
|
@@ -4406,7 +4548,7 @@ export interface ModifyDBSnapshotAttributeMessage {
|
|
|
4406
4548
|
* set this value to <code>restore</code>.</p>
|
|
4407
4549
|
* <note>
|
|
4408
4550
|
* <p>To view the list of attributes available to modify, use the
|
|
4409
|
-
* <a>DescribeDBSnapshotAttributes</a> API
|
|
4551
|
+
* <a>DescribeDBSnapshotAttributes</a> API operation.</p>
|
|
4410
4552
|
* </note>
|
|
4411
4553
|
*/
|
|
4412
4554
|
AttributeName: string | undefined;
|
|
@@ -5371,8 +5513,8 @@ export interface RestoreDBClusterFromS3Message {
|
|
|
5371
5513
|
DBSubnetGroupName?: string;
|
|
5372
5514
|
/**
|
|
5373
5515
|
* <p>The name of the database engine to be used for this DB cluster.</p>
|
|
5374
|
-
* <p>Valid Values: <code>aurora</code> (for MySQL 5.6-compatible Aurora)
|
|
5375
|
-
*
|
|
5516
|
+
* <p>Valid Values: <code>aurora</code> (for MySQL 5.6-compatible Aurora) and <code>aurora-mysql</code>
|
|
5517
|
+
* (for MySQL 5.7-compatible and MySQL 8.0-compatible Aurora)</p>
|
|
5376
5518
|
*/
|
|
5377
5519
|
Engine: string | undefined;
|
|
5378
5520
|
/**
|
|
@@ -5385,19 +5527,11 @@ export interface RestoreDBClusterFromS3Message {
|
|
|
5385
5527
|
* <p>
|
|
5386
5528
|
* <code>aws rds describe-db-engine-versions --engine aurora-mysql --query "DBEngineVersions[].EngineVersion"</code>
|
|
5387
5529
|
* </p>
|
|
5388
|
-
* <p>To list all of the available engine versions for <code>aurora-postgresql</code>, use the following command:</p>
|
|
5389
|
-
* <p>
|
|
5390
|
-
* <code>aws rds describe-db-engine-versions --engine aurora-postgresql --query "DBEngineVersions[].EngineVersion"</code>
|
|
5391
|
-
* </p>
|
|
5392
5530
|
* <p>
|
|
5393
5531
|
* <b>Aurora MySQL</b>
|
|
5394
5532
|
* </p>
|
|
5395
|
-
* <p>Example: <code>5.6.10a</code>, <code>5.6.mysql_aurora.1.19.2</code>, <code>5.7.
|
|
5396
|
-
*
|
|
5397
|
-
* <p>
|
|
5398
|
-
* <b>Aurora PostgreSQL</b>
|
|
5399
|
-
* </p>
|
|
5400
|
-
* <p>Example: <code>9.6.3</code>, <code>10.7</code>
|
|
5533
|
+
* <p>Example: <code>5.6.10a</code>, <code>5.6.mysql_aurora.1.19.2</code>, <code>5.7.mysql_aurora.2.07.1</code>,
|
|
5534
|
+
* <code>8.0.mysql_aurora.3.02.0</code>
|
|
5401
5535
|
* </p>
|
|
5402
5536
|
*/
|
|
5403
5537
|
EngineVersion?: string;
|
|
@@ -5848,7 +5982,7 @@ export interface RestoreDBClusterFromSnapshotMessage {
|
|
|
5848
5982
|
* <b>Aurora PostgreSQL</b>
|
|
5849
5983
|
* </p>
|
|
5850
5984
|
* <p>Possible value is <code>postgresql</code>.</p>
|
|
5851
|
-
* <p>For more information about exporting CloudWatch Logs for Amazon RDS, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon RDS User Guide
|
|
5985
|
+
* <p>For more information about exporting CloudWatch Logs for Amazon RDS, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon RDS User Guide</i>.</p>
|
|
5852
5986
|
* <p>For more information about exporting CloudWatch Logs for Amazon Aurora, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
5853
5987
|
* <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
|
|
5854
5988
|
*/
|
|
@@ -6190,7 +6324,7 @@ export interface RestoreDBClusterToPointInTimeMessage {
|
|
|
6190
6324
|
* <b>Aurora PostgreSQL</b>
|
|
6191
6325
|
* </p>
|
|
6192
6326
|
* <p>Possible value is <code>postgresql</code>.</p>
|
|
6193
|
-
* <p>For more information about exporting CloudWatch Logs for Amazon RDS, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon RDS User Guide
|
|
6327
|
+
* <p>For more information about exporting CloudWatch Logs for Amazon RDS, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon RDS User Guide</i>.</p>
|
|
6194
6328
|
* <p>For more information about exporting CloudWatch Logs for Amazon Aurora, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
6195
6329
|
* <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
|
|
6196
6330
|
*/
|
|
@@ -7061,7 +7195,7 @@ export interface RestoreDBInstanceFromS3Message {
|
|
|
7061
7195
|
/**
|
|
7062
7196
|
* <p>A value that indicates whether to enable Performance Insights for the DB instance.</p>
|
|
7063
7197
|
* <p>For more information, see
|
|
7064
|
-
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html">Using Amazon Performance Insights</a> in the <i>Amazon RDS User Guide
|
|
7198
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html">Using Amazon Performance Insights</a> in the <i>Amazon RDS User Guide</i>.</p>
|
|
7065
7199
|
*/
|
|
7066
7200
|
EnablePerformanceInsights?: boolean;
|
|
7067
7201
|
/**
|
|
@@ -7073,7 +7207,35 @@ export interface RestoreDBInstanceFromS3Message {
|
|
|
7073
7207
|
*/
|
|
7074
7208
|
PerformanceInsightsKMSKeyId?: string;
|
|
7075
7209
|
/**
|
|
7076
|
-
* <p>The
|
|
7210
|
+
* <p>The number of days to retain Performance Insights data. The default is 7 days. The following values are valid:</p>
|
|
7211
|
+
* <ul>
|
|
7212
|
+
* <li>
|
|
7213
|
+
* <p>7</p>
|
|
7214
|
+
* </li>
|
|
7215
|
+
* <li>
|
|
7216
|
+
* <p>
|
|
7217
|
+
* <i>month</i> * 31, where <i>month</i> is a number of months from 1-23</p>
|
|
7218
|
+
* </li>
|
|
7219
|
+
* <li>
|
|
7220
|
+
* <p>731</p>
|
|
7221
|
+
* </li>
|
|
7222
|
+
* </ul>
|
|
7223
|
+
* <p>For example, the following values are valid:</p>
|
|
7224
|
+
* <ul>
|
|
7225
|
+
* <li>
|
|
7226
|
+
* <p>93 (3 months * 31)</p>
|
|
7227
|
+
* </li>
|
|
7228
|
+
* <li>
|
|
7229
|
+
* <p>341 (11 months * 31)</p>
|
|
7230
|
+
* </li>
|
|
7231
|
+
* <li>
|
|
7232
|
+
* <p>589 (19 months * 31)</p>
|
|
7233
|
+
* </li>
|
|
7234
|
+
* <li>
|
|
7235
|
+
* <p>731</p>
|
|
7236
|
+
* </li>
|
|
7237
|
+
* </ul>
|
|
7238
|
+
* <p>If you specify a retention period such as 94, which isn't a valid value, RDS issues an error.</p>
|
|
7077
7239
|
*/
|
|
7078
7240
|
PerformanceInsightsRetentionPeriod?: number;
|
|
7079
7241
|
/**
|
|
@@ -7800,10 +7962,25 @@ export interface StartDBInstanceAutomatedBackupsReplicationMessage {
|
|
|
7800
7962
|
*/
|
|
7801
7963
|
KmsKeyId?: string;
|
|
7802
7964
|
/**
|
|
7803
|
-
* <p>
|
|
7804
|
-
*
|
|
7805
|
-
*
|
|
7806
|
-
*
|
|
7965
|
+
* <p>In an Amazon Web Services GovCloud (US) Region, an URL that contains a Signature Version 4 signed request
|
|
7966
|
+
* for the <code>StartDBInstanceAutomatedBackupsReplication</code> operation to call
|
|
7967
|
+
* in the Amazon Web Services Region of the source DB instance. The presigned URL must be a valid request for the
|
|
7968
|
+
* <code>StartDBInstanceAutomatedBackupsReplication</code> API operation that can run in
|
|
7969
|
+
* the Amazon Web Services Region that contains the source DB instance.</p>
|
|
7970
|
+
* <p>This setting applies only to Amazon Web Services GovCloud (US) Regions. It's ignored in other
|
|
7971
|
+
* Amazon Web Services Regions.</p>
|
|
7972
|
+
* <p>To learn how to generate a Signature Version 4 signed request, see
|
|
7973
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html">
|
|
7974
|
+
* Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4)</a> and
|
|
7975
|
+
* <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">
|
|
7976
|
+
* Signature Version 4 Signing Process</a>.</p>
|
|
7977
|
+
* <note>
|
|
7978
|
+
* <p>If you are using an Amazon Web Services SDK tool or the CLI, you can specify
|
|
7979
|
+
* <code>SourceRegion</code> (or <code>--source-region</code> for the CLI)
|
|
7980
|
+
* instead of specifying <code>PreSignedUrl</code> manually. Specifying
|
|
7981
|
+
* <code>SourceRegion</code> autogenerates a presigned URL that is a valid request
|
|
7982
|
+
* for the operation that can run in the source Amazon Web Services Region.</p>
|
|
7983
|
+
* </note>
|
|
7807
7984
|
*/
|
|
7808
7985
|
PreSignedUrl?: string;
|
|
7809
7986
|
}
|
|
@@ -88,6 +88,7 @@ import { DownloadDBLogFilePortionCommandInput, DownloadDBLogFilePortionCommandOu
|
|
|
88
88
|
import { FailoverDBClusterCommandInput, FailoverDBClusterCommandOutput } from "../commands/FailoverDBClusterCommand";
|
|
89
89
|
import { FailoverGlobalClusterCommandInput, FailoverGlobalClusterCommandOutput } from "../commands/FailoverGlobalClusterCommand";
|
|
90
90
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
91
|
+
import { ModifyActivityStreamCommandInput, ModifyActivityStreamCommandOutput } from "../commands/ModifyActivityStreamCommand";
|
|
91
92
|
import { ModifyCertificatesCommandInput, ModifyCertificatesCommandOutput } from "../commands/ModifyCertificatesCommand";
|
|
92
93
|
import { ModifyCurrentDBClusterCapacityCommandInput, ModifyCurrentDBClusterCapacityCommandOutput } from "../commands/ModifyCurrentDBClusterCapacityCommand";
|
|
93
94
|
import { ModifyCustomDBEngineVersionCommandInput, ModifyCustomDBEngineVersionCommandOutput } from "../commands/ModifyCustomDBEngineVersionCommand";
|
|
@@ -223,6 +224,7 @@ export declare const serializeAws_queryDownloadDBLogFilePortionCommand: (input:
|
|
|
223
224
|
export declare const serializeAws_queryFailoverDBClusterCommand: (input: FailoverDBClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
224
225
|
export declare const serializeAws_queryFailoverGlobalClusterCommand: (input: FailoverGlobalClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
225
226
|
export declare const serializeAws_queryListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
227
|
+
export declare const serializeAws_queryModifyActivityStreamCommand: (input: ModifyActivityStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
226
228
|
export declare const serializeAws_queryModifyCertificatesCommand: (input: ModifyCertificatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
227
229
|
export declare const serializeAws_queryModifyCurrentDBClusterCapacityCommand: (input: ModifyCurrentDBClusterCapacityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
228
230
|
export declare const serializeAws_queryModifyCustomDBEngineVersionCommand: (input: ModifyCustomDBEngineVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -358,6 +360,7 @@ export declare const deserializeAws_queryDownloadDBLogFilePortionCommand: (outpu
|
|
|
358
360
|
export declare const deserializeAws_queryFailoverDBClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<FailoverDBClusterCommandOutput>;
|
|
359
361
|
export declare const deserializeAws_queryFailoverGlobalClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<FailoverGlobalClusterCommandOutput>;
|
|
360
362
|
export declare const deserializeAws_queryListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
363
|
+
export declare const deserializeAws_queryModifyActivityStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyActivityStreamCommandOutput>;
|
|
361
364
|
export declare const deserializeAws_queryModifyCertificatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyCertificatesCommandOutput>;
|
|
362
365
|
export declare const deserializeAws_queryModifyCurrentDBClusterCapacityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyCurrentDBClusterCapacityCommandOutput>;
|
|
363
366
|
export declare const deserializeAws_queryModifyCustomDBEngineVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyCustomDBEngineVersionCommandOutput>;
|
|
@@ -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";
|
|
@@ -490,6 +491,10 @@ export declare class RDS extends RDSClient {
|
|
|
490
491
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
491
492
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
492
493
|
|
|
494
|
+
modifyActivityStream(args: ModifyActivityStreamCommandInput, options?: __HttpHandlerOptions): Promise<ModifyActivityStreamCommandOutput>;
|
|
495
|
+
modifyActivityStream(args: ModifyActivityStreamCommandInput, cb: (err: any, data?: ModifyActivityStreamCommandOutput) => void): void;
|
|
496
|
+
modifyActivityStream(args: ModifyActivityStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyActivityStreamCommandOutput) => void): void;
|
|
497
|
+
|
|
493
498
|
modifyCertificates(args: ModifyCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<ModifyCertificatesCommandOutput>;
|
|
494
499
|
modifyCertificates(args: ModifyCertificatesCommandInput, cb: (err: any, data?: ModifyCertificatesCommandOutput) => void): void;
|
|
495
500
|
modifyCertificates(args: ModifyCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyCertificatesCommandOutput) => void): void;
|
|
@@ -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
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ModifyActivityStreamRequest, ModifyActivityStreamResponse } from "../models/models_1";
|
|
4
|
+
import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
|
|
5
|
+
export interface ModifyActivityStreamCommandInput extends ModifyActivityStreamRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ModifyActivityStreamCommandOutput extends ModifyActivityStreamResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ModifyActivityStreamCommand extends $Command<ModifyActivityStreamCommandInput, ModifyActivityStreamCommandOutput, RDSClientResolvedConfig> {
|
|
11
|
+
readonly input: ModifyActivityStreamCommandInput;
|
|
12
|
+
constructor(input: ModifyActivityStreamCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RDSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ModifyActivityStreamCommandInput, ModifyActivityStreamCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -86,6 +86,7 @@ export * from "./DownloadDBLogFilePortionCommand";
|
|
|
86
86
|
export * from "./FailoverDBClusterCommand";
|
|
87
87
|
export * from "./FailoverGlobalClusterCommand";
|
|
88
88
|
export * from "./ListTagsForResourceCommand";
|
|
89
|
+
export * from "./ModifyActivityStreamCommand";
|
|
89
90
|
export * from "./ModifyCertificatesCommand";
|
|
90
91
|
export * from "./ModifyCurrentDBClusterCapacityCommand";
|
|
91
92
|
export * from "./ModifyCustomDBEngineVersionCommand";
|
|
@@ -23,6 +23,12 @@ export declare namespace AccountAttributesMessage {
|
|
|
23
23
|
const filterSensitiveLog: (obj: AccountAttributesMessage) => any;
|
|
24
24
|
}
|
|
25
25
|
export declare type ActivityStreamMode = "async" | "sync";
|
|
26
|
+
export declare enum ActivityStreamPolicyStatus {
|
|
27
|
+
locked = "locked",
|
|
28
|
+
locking_policy = "locking-policy",
|
|
29
|
+
unlocked = "unlocked",
|
|
30
|
+
unlocking_policy = "unlocking-policy"
|
|
31
|
+
}
|
|
26
32
|
export declare type ActivityStreamStatus = "started" | "starting" | "stopped" | "stopping";
|
|
27
33
|
export interface AddRoleToDBClusterMessage {
|
|
28
34
|
|
|
@@ -2120,6 +2126,8 @@ export interface DBInstance {
|
|
|
2120
2126
|
BackupTarget?: string;
|
|
2121
2127
|
|
|
2122
2128
|
NetworkType?: string;
|
|
2129
|
+
|
|
2130
|
+
ActivityStreamPolicyStatus?: ActivityStreamPolicyStatus | string;
|
|
2123
2131
|
}
|
|
2124
2132
|
export declare namespace DBInstance {
|
|
2125
2133
|
|
|
@@ -3991,14 +3999,3 @@ export declare namespace DescribeDBSnapshotAttributesMessage {
|
|
|
3991
3999
|
|
|
3992
4000
|
const filterSensitiveLog: (obj: DescribeDBSnapshotAttributesMessage) => any;
|
|
3993
4001
|
}
|
|
3994
|
-
|
|
3995
|
-
export interface DBSnapshotAttribute {
|
|
3996
|
-
|
|
3997
|
-
AttributeName?: string;
|
|
3998
|
-
|
|
3999
|
-
AttributeValues?: string[];
|
|
4000
|
-
}
|
|
4001
|
-
export declare namespace DBSnapshotAttribute {
|
|
4002
|
-
|
|
4003
|
-
const filterSensitiveLog: (obj: DBSnapshotAttribute) => any;
|
|
4004
|
-
}
|