@aws-sdk/client-rds 3.131.0 → 3.135.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 +8 -0
- package/dist-types/RDS.d.ts +44 -68
- 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/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/models/models_0.d.ts +332 -103
- package/dist-types/models/models_1.d.ts +131 -38
- package/package.json +1 -1
|
@@ -68,7 +68,6 @@ export declare namespace DBSnapshotMessage {
|
|
|
68
68
|
export interface DescribeDBSnapshotsMessage {
|
|
69
69
|
/**
|
|
70
70
|
* <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
71
|
* This parameter isn't case-sensitive.</p>
|
|
73
72
|
* <p>Constraints:</p>
|
|
74
73
|
* <ul>
|
|
@@ -79,7 +78,7 @@ export interface DescribeDBSnapshotsMessage {
|
|
|
79
78
|
*/
|
|
80
79
|
DBInstanceIdentifier?: string;
|
|
81
80
|
/**
|
|
82
|
-
* <p>A specific DB snapshot identifier to describe.
|
|
81
|
+
* <p>A specific DB snapshot identifier to describe.
|
|
83
82
|
* This value is stored as a lowercase string.</p>
|
|
84
83
|
* <p>Constraints:</p>
|
|
85
84
|
* <ul>
|
|
@@ -604,7 +603,8 @@ export declare namespace DescribeEventCategoriesMessage {
|
|
|
604
603
|
const filterSensitiveLog: (obj: DescribeEventCategoriesMessage) => any;
|
|
605
604
|
}
|
|
606
605
|
/**
|
|
607
|
-
* <p>Contains the results of a successful invocation of the <
|
|
606
|
+
* <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>
|
|
607
|
+
* operation.</p>
|
|
608
608
|
*/
|
|
609
609
|
export interface EventCategoriesMap {
|
|
610
610
|
/**
|
|
@@ -734,7 +734,7 @@ export declare namespace DescribeEventsMessage {
|
|
|
734
734
|
const filterSensitiveLog: (obj: DescribeEventsMessage) => any;
|
|
735
735
|
}
|
|
736
736
|
/**
|
|
737
|
-
* <p>This data type is used as a response element in the <
|
|
737
|
+
* <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
738
|
*/
|
|
739
739
|
export interface Event {
|
|
740
740
|
/**
|
|
@@ -1528,7 +1528,7 @@ export interface DescribeOrderableDBInstanceOptionsMessage {
|
|
|
1528
1528
|
* a pagination token called a marker is included in the response so that
|
|
1529
1529
|
* you can retrieve the remaining results.</p>
|
|
1530
1530
|
* <p>Default: 100</p>
|
|
1531
|
-
* <p>Constraints: Minimum 20, maximum
|
|
1531
|
+
* <p>Constraints: Minimum 20, maximum 10000.</p>
|
|
1532
1532
|
*/
|
|
1533
1533
|
MaxRecords?: number;
|
|
1534
1534
|
/**
|
|
@@ -3178,7 +3178,35 @@ export interface ModifyDBClusterMessage {
|
|
|
3178
3178
|
*/
|
|
3179
3179
|
PerformanceInsightsKMSKeyId?: string;
|
|
3180
3180
|
/**
|
|
3181
|
-
* <p>The
|
|
3181
|
+
* <p>The number of days to retain Performance Insights data. The default is 7 days. The following values are valid:</p>
|
|
3182
|
+
* <ul>
|
|
3183
|
+
* <li>
|
|
3184
|
+
* <p>7</p>
|
|
3185
|
+
* </li>
|
|
3186
|
+
* <li>
|
|
3187
|
+
* <p>
|
|
3188
|
+
* <i>month</i> * 31, where <i>month</i> is a number of months from 1-23</p>
|
|
3189
|
+
* </li>
|
|
3190
|
+
* <li>
|
|
3191
|
+
* <p>731</p>
|
|
3192
|
+
* </li>
|
|
3193
|
+
* </ul>
|
|
3194
|
+
* <p>For example, the following values are valid:</p>
|
|
3195
|
+
* <ul>
|
|
3196
|
+
* <li>
|
|
3197
|
+
* <p>93 (3 months * 31)</p>
|
|
3198
|
+
* </li>
|
|
3199
|
+
* <li>
|
|
3200
|
+
* <p>341 (11 months * 31)</p>
|
|
3201
|
+
* </li>
|
|
3202
|
+
* <li>
|
|
3203
|
+
* <p>589 (19 months * 31)</p>
|
|
3204
|
+
* </li>
|
|
3205
|
+
* <li>
|
|
3206
|
+
* <p>731</p>
|
|
3207
|
+
* </li>
|
|
3208
|
+
* </ul>
|
|
3209
|
+
* <p>If you specify a retention period such as 94, which isn't a valid value, RDS issues an error.</p>
|
|
3182
3210
|
* <p>Valid for: Multi-AZ DB clusters only</p>
|
|
3183
3211
|
*/
|
|
3184
3212
|
PerformanceInsightsRetentionPeriod?: number;
|
|
@@ -3323,7 +3351,7 @@ export interface ModifyDBClusterSnapshotAttributeMessage {
|
|
|
3323
3351
|
* set this value to <code>restore</code>.</p>
|
|
3324
3352
|
* <note>
|
|
3325
3353
|
* <p>To view the list of attributes available to modify, use the
|
|
3326
|
-
* <a>DescribeDBClusterSnapshotAttributes</a> API
|
|
3354
|
+
* <a>DescribeDBClusterSnapshotAttributes</a> API operation.</p>
|
|
3327
3355
|
* </note>
|
|
3328
3356
|
*/
|
|
3329
3357
|
AttributeName: string | undefined;
|
|
@@ -3417,11 +3445,13 @@ export interface ModifyDBInstanceMessage {
|
|
|
3417
3445
|
*/
|
|
3418
3446
|
AllocatedStorage?: number;
|
|
3419
3447
|
/**
|
|
3420
|
-
* <p>The new compute and memory capacity of the DB instance, for example db.
|
|
3448
|
+
* <p>The new compute and memory capacity of the DB instance, for example db.m5.large.
|
|
3421
3449
|
* 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
|
-
*
|
|
3450
|
+
* For the full list of DB instance classes, and availability for your engine, see
|
|
3451
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html">DB instance
|
|
3452
|
+
* classes</a> in the <i>Amazon RDS User Guide</i> or
|
|
3453
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html">Aurora
|
|
3454
|
+
* DB instance classes</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
3425
3455
|
* <p>If you modify the DB instance class, an outage occurs during the change.
|
|
3426
3456
|
* The change is applied during the next maintenance window,
|
|
3427
3457
|
* unless <code>ApplyImmediately</code> is enabled for this request.</p>
|
|
@@ -3521,7 +3551,7 @@ export interface ModifyDBInstanceMessage {
|
|
|
3521
3551
|
* </p>
|
|
3522
3552
|
* <p>Constraints: Must contain from 8 to 128 characters.</p>
|
|
3523
3553
|
* <note>
|
|
3524
|
-
* <p>Amazon RDS API
|
|
3554
|
+
* <p>Amazon RDS API operations never return the password,
|
|
3525
3555
|
* so this action provides a way to regain access to a primary instance user if the password is lost.
|
|
3526
3556
|
* This includes restoring privileges that might have been accidentally revoked.</p>
|
|
3527
3557
|
* </note>
|
|
@@ -3558,7 +3588,7 @@ export interface ModifyDBInstanceMessage {
|
|
|
3558
3588
|
* <ul>
|
|
3559
3589
|
* <li>
|
|
3560
3590
|
* <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
|
|
3591
|
+
* read replicas. It can't be set to 0 for an RDS Custom for Oracle DB instance.</p>
|
|
3562
3592
|
* </li>
|
|
3563
3593
|
* <li>
|
|
3564
3594
|
* <p>It can be specified for a MySQL read replica only if the source is running MySQL 5.6 or
|
|
@@ -3912,7 +3942,7 @@ export interface ModifyDBInstanceMessage {
|
|
|
3912
3942
|
/**
|
|
3913
3943
|
* <p>A value that indicates whether to enable Performance Insights for the DB instance.</p>
|
|
3914
3944
|
* <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
|
|
3945
|
+
* <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
3946
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
3917
3947
|
*/
|
|
3918
3948
|
EnablePerformanceInsights?: boolean;
|
|
@@ -3926,7 +3956,35 @@ export interface ModifyDBInstanceMessage {
|
|
|
3926
3956
|
*/
|
|
3927
3957
|
PerformanceInsightsKMSKeyId?: string;
|
|
3928
3958
|
/**
|
|
3929
|
-
* <p>The
|
|
3959
|
+
* <p>The number of days to retain Performance Insights data. The default is 7 days. The following values are valid:</p>
|
|
3960
|
+
* <ul>
|
|
3961
|
+
* <li>
|
|
3962
|
+
* <p>7</p>
|
|
3963
|
+
* </li>
|
|
3964
|
+
* <li>
|
|
3965
|
+
* <p>
|
|
3966
|
+
* <i>month</i> * 31, where <i>month</i> is a number of months from 1-23</p>
|
|
3967
|
+
* </li>
|
|
3968
|
+
* <li>
|
|
3969
|
+
* <p>731</p>
|
|
3970
|
+
* </li>
|
|
3971
|
+
* </ul>
|
|
3972
|
+
* <p>For example, the following values are valid:</p>
|
|
3973
|
+
* <ul>
|
|
3974
|
+
* <li>
|
|
3975
|
+
* <p>93 (3 months * 31)</p>
|
|
3976
|
+
* </li>
|
|
3977
|
+
* <li>
|
|
3978
|
+
* <p>341 (11 months * 31)</p>
|
|
3979
|
+
* </li>
|
|
3980
|
+
* <li>
|
|
3981
|
+
* <p>589 (19 months * 31)</p>
|
|
3982
|
+
* </li>
|
|
3983
|
+
* <li>
|
|
3984
|
+
* <p>731</p>
|
|
3985
|
+
* </li>
|
|
3986
|
+
* </ul>
|
|
3987
|
+
* <p>If you specify a retention period such as 94, which isn't a valid value, RDS issues an error.</p>
|
|
3930
3988
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
3931
3989
|
*/
|
|
3932
3990
|
PerformanceInsightsRetentionPeriod?: number;
|
|
@@ -4286,11 +4344,11 @@ export declare namespace ConnectionPoolConfiguration {
|
|
|
4286
4344
|
}
|
|
4287
4345
|
export interface ModifyDBProxyTargetGroupRequest {
|
|
4288
4346
|
/**
|
|
4289
|
-
* <p>The name of the
|
|
4347
|
+
* <p>The name of the target group to modify.</p>
|
|
4290
4348
|
*/
|
|
4291
4349
|
TargetGroupName: string | undefined;
|
|
4292
4350
|
/**
|
|
4293
|
-
* <p>The name of the
|
|
4351
|
+
* <p>The name of the proxy.</p>
|
|
4294
4352
|
*/
|
|
4295
4353
|
DBProxyName: string | undefined;
|
|
4296
4354
|
/**
|
|
@@ -4406,7 +4464,7 @@ export interface ModifyDBSnapshotAttributeMessage {
|
|
|
4406
4464
|
* set this value to <code>restore</code>.</p>
|
|
4407
4465
|
* <note>
|
|
4408
4466
|
* <p>To view the list of attributes available to modify, use the
|
|
4409
|
-
* <a>DescribeDBSnapshotAttributes</a> API
|
|
4467
|
+
* <a>DescribeDBSnapshotAttributes</a> API operation.</p>
|
|
4410
4468
|
* </note>
|
|
4411
4469
|
*/
|
|
4412
4470
|
AttributeName: string | undefined;
|
|
@@ -5371,8 +5429,8 @@ export interface RestoreDBClusterFromS3Message {
|
|
|
5371
5429
|
DBSubnetGroupName?: string;
|
|
5372
5430
|
/**
|
|
5373
5431
|
* <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
|
-
*
|
|
5432
|
+
* <p>Valid Values: <code>aurora</code> (for MySQL 5.6-compatible Aurora) and <code>aurora-mysql</code>
|
|
5433
|
+
* (for MySQL 5.7-compatible and MySQL 8.0-compatible Aurora)</p>
|
|
5376
5434
|
*/
|
|
5377
5435
|
Engine: string | undefined;
|
|
5378
5436
|
/**
|
|
@@ -5385,19 +5443,11 @@ export interface RestoreDBClusterFromS3Message {
|
|
|
5385
5443
|
* <p>
|
|
5386
5444
|
* <code>aws rds describe-db-engine-versions --engine aurora-mysql --query "DBEngineVersions[].EngineVersion"</code>
|
|
5387
5445
|
* </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
5446
|
* <p>
|
|
5393
5447
|
* <b>Aurora MySQL</b>
|
|
5394
5448
|
* </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>
|
|
5449
|
+
* <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>,
|
|
5450
|
+
* <code>8.0.mysql_aurora.3.02.0</code>
|
|
5401
5451
|
* </p>
|
|
5402
5452
|
*/
|
|
5403
5453
|
EngineVersion?: string;
|
|
@@ -5848,7 +5898,7 @@ export interface RestoreDBClusterFromSnapshotMessage {
|
|
|
5848
5898
|
* <b>Aurora PostgreSQL</b>
|
|
5849
5899
|
* </p>
|
|
5850
5900
|
* <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
|
|
5901
|
+
* <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
5902
|
* <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
5903
|
* <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
|
|
5854
5904
|
*/
|
|
@@ -6190,7 +6240,7 @@ export interface RestoreDBClusterToPointInTimeMessage {
|
|
|
6190
6240
|
* <b>Aurora PostgreSQL</b>
|
|
6191
6241
|
* </p>
|
|
6192
6242
|
* <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
|
|
6243
|
+
* <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
6244
|
* <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
6245
|
* <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
|
|
6196
6246
|
*/
|
|
@@ -7061,7 +7111,7 @@ export interface RestoreDBInstanceFromS3Message {
|
|
|
7061
7111
|
/**
|
|
7062
7112
|
* <p>A value that indicates whether to enable Performance Insights for the DB instance.</p>
|
|
7063
7113
|
* <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
|
|
7114
|
+
* <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
7115
|
*/
|
|
7066
7116
|
EnablePerformanceInsights?: boolean;
|
|
7067
7117
|
/**
|
|
@@ -7073,7 +7123,35 @@ export interface RestoreDBInstanceFromS3Message {
|
|
|
7073
7123
|
*/
|
|
7074
7124
|
PerformanceInsightsKMSKeyId?: string;
|
|
7075
7125
|
/**
|
|
7076
|
-
* <p>The
|
|
7126
|
+
* <p>The number of days to retain Performance Insights data. The default is 7 days. The following values are valid:</p>
|
|
7127
|
+
* <ul>
|
|
7128
|
+
* <li>
|
|
7129
|
+
* <p>7</p>
|
|
7130
|
+
* </li>
|
|
7131
|
+
* <li>
|
|
7132
|
+
* <p>
|
|
7133
|
+
* <i>month</i> * 31, where <i>month</i> is a number of months from 1-23</p>
|
|
7134
|
+
* </li>
|
|
7135
|
+
* <li>
|
|
7136
|
+
* <p>731</p>
|
|
7137
|
+
* </li>
|
|
7138
|
+
* </ul>
|
|
7139
|
+
* <p>For example, the following values are valid:</p>
|
|
7140
|
+
* <ul>
|
|
7141
|
+
* <li>
|
|
7142
|
+
* <p>93 (3 months * 31)</p>
|
|
7143
|
+
* </li>
|
|
7144
|
+
* <li>
|
|
7145
|
+
* <p>341 (11 months * 31)</p>
|
|
7146
|
+
* </li>
|
|
7147
|
+
* <li>
|
|
7148
|
+
* <p>589 (19 months * 31)</p>
|
|
7149
|
+
* </li>
|
|
7150
|
+
* <li>
|
|
7151
|
+
* <p>731</p>
|
|
7152
|
+
* </li>
|
|
7153
|
+
* </ul>
|
|
7154
|
+
* <p>If you specify a retention period such as 94, which isn't a valid value, RDS issues an error.</p>
|
|
7077
7155
|
*/
|
|
7078
7156
|
PerformanceInsightsRetentionPeriod?: number;
|
|
7079
7157
|
/**
|
|
@@ -7800,10 +7878,25 @@ export interface StartDBInstanceAutomatedBackupsReplicationMessage {
|
|
|
7800
7878
|
*/
|
|
7801
7879
|
KmsKeyId?: string;
|
|
7802
7880
|
/**
|
|
7803
|
-
* <p>
|
|
7804
|
-
*
|
|
7805
|
-
*
|
|
7806
|
-
*
|
|
7881
|
+
* <p>In an Amazon Web Services GovCloud (US) Region, an URL that contains a Signature Version 4 signed request
|
|
7882
|
+
* for the <code>StartDBInstanceAutomatedBackupsReplication</code> operation to call
|
|
7883
|
+
* in the Amazon Web Services Region of the source DB instance. The presigned URL must be a valid request for the
|
|
7884
|
+
* <code>StartDBInstanceAutomatedBackupsReplication</code> API operation that can run in
|
|
7885
|
+
* the Amazon Web Services Region that contains the source DB instance.</p>
|
|
7886
|
+
* <p>This setting applies only to Amazon Web Services GovCloud (US) Regions. It's ignored in other
|
|
7887
|
+
* Amazon Web Services Regions.</p>
|
|
7888
|
+
* <p>To learn how to generate a Signature Version 4 signed request, see
|
|
7889
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html">
|
|
7890
|
+
* Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4)</a> and
|
|
7891
|
+
* <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">
|
|
7892
|
+
* Signature Version 4 Signing Process</a>.</p>
|
|
7893
|
+
* <note>
|
|
7894
|
+
* <p>If you are using an Amazon Web Services SDK tool or the CLI, you can specify
|
|
7895
|
+
* <code>SourceRegion</code> (or <code>--source-region</code> for the CLI)
|
|
7896
|
+
* instead of specifying <code>PreSignedUrl</code> manually. Specifying
|
|
7897
|
+
* <code>SourceRegion</code> autogenerates a presigned URL that is a valid request
|
|
7898
|
+
* for the operation that can run in the source Amazon Web Services Region.</p>
|
|
7899
|
+
* </note>
|
|
7807
7900
|
*/
|
|
7808
7901
|
PreSignedUrl?: string;
|
|
7809
7902
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rds",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rds Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.135.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|