@aws-sdk/client-rds 3.418.0 → 3.423.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/README.md +7 -7
- package/dist-cjs/protocols/Aws_query.js +3 -0
- package/dist-es/protocols/Aws_query.js +3 -0
- package/dist-types/commands/DescribeCertificatesCommand.d.ts +2 -1
- package/dist-types/commands/RestoreDBInstanceToPointInTimeCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +7 -0
- package/dist-types/models/models_1.d.ts +112 -57
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -76,16 +76,16 @@ using your favorite package manager:
|
|
|
76
76
|
|
|
77
77
|
The AWS SDK is modulized by clients and commands.
|
|
78
78
|
To send a request, you only need to import the `RDSClient` and
|
|
79
|
-
the commands you need, for example `
|
|
79
|
+
the commands you need, for example `ListTagsForResourceCommand`:
|
|
80
80
|
|
|
81
81
|
```js
|
|
82
82
|
// ES5 example
|
|
83
|
-
const { RDSClient,
|
|
83
|
+
const { RDSClient, ListTagsForResourceCommand } = require("@aws-sdk/client-rds");
|
|
84
84
|
```
|
|
85
85
|
|
|
86
86
|
```ts
|
|
87
87
|
// ES6+ example
|
|
88
|
-
import { RDSClient,
|
|
88
|
+
import { RDSClient, ListTagsForResourceCommand } from "@aws-sdk/client-rds";
|
|
89
89
|
```
|
|
90
90
|
|
|
91
91
|
### Usage
|
|
@@ -104,7 +104,7 @@ const client = new RDSClient({ region: "REGION" });
|
|
|
104
104
|
const params = {
|
|
105
105
|
/** input parameters */
|
|
106
106
|
};
|
|
107
|
-
const command = new
|
|
107
|
+
const command = new ListTagsForResourceCommand(params);
|
|
108
108
|
```
|
|
109
109
|
|
|
110
110
|
#### Async/await
|
|
@@ -183,7 +183,7 @@ const client = new AWS.RDS({ region: "REGION" });
|
|
|
183
183
|
|
|
184
184
|
// async/await.
|
|
185
185
|
try {
|
|
186
|
-
const data = await client.
|
|
186
|
+
const data = await client.listTagsForResource(params);
|
|
187
187
|
// process data.
|
|
188
188
|
} catch (error) {
|
|
189
189
|
// error handling.
|
|
@@ -191,7 +191,7 @@ try {
|
|
|
191
191
|
|
|
192
192
|
// Promises.
|
|
193
193
|
client
|
|
194
|
-
.
|
|
194
|
+
.listTagsForResource(params)
|
|
195
195
|
.then((data) => {
|
|
196
196
|
// process data.
|
|
197
197
|
})
|
|
@@ -200,7 +200,7 @@ client
|
|
|
200
200
|
});
|
|
201
201
|
|
|
202
202
|
// callbacks.
|
|
203
|
-
client.
|
|
203
|
+
client.listTagsForResource(params, (err, data) => {
|
|
204
204
|
// process err and data.
|
|
205
205
|
});
|
|
206
206
|
```
|
|
@@ -14075,6 +14075,9 @@ const de_CertificateList = (output, context) => {
|
|
|
14075
14075
|
};
|
|
14076
14076
|
const de_CertificateMessage = (output, context) => {
|
|
14077
14077
|
const contents = {};
|
|
14078
|
+
if (output["DefaultCertificateForNewLaunches"] !== undefined) {
|
|
14079
|
+
contents.DefaultCertificateForNewLaunches = (0, smithy_client_1.expectString)(output["DefaultCertificateForNewLaunches"]);
|
|
14080
|
+
}
|
|
14078
14081
|
if (output.Certificates === "") {
|
|
14079
14082
|
contents.Certificates = [];
|
|
14080
14083
|
}
|
|
@@ -13779,6 +13779,9 @@ const de_CertificateList = (output, context) => {
|
|
|
13779
13779
|
};
|
|
13780
13780
|
const de_CertificateMessage = (output, context) => {
|
|
13781
13781
|
const contents = {};
|
|
13782
|
+
if (output["DefaultCertificateForNewLaunches"] !== undefined) {
|
|
13783
|
+
contents.DefaultCertificateForNewLaunches = __expectString(output["DefaultCertificateForNewLaunches"]);
|
|
13784
|
+
}
|
|
13782
13785
|
if (output.Certificates === "") {
|
|
13783
13786
|
contents.Certificates = [];
|
|
13784
13787
|
}
|
|
@@ -23,7 +23,7 @@ export interface DescribeCertificatesCommandOutput extends CertificateMessage, _
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Lists the set of CA certificates provided by Amazon RDS for this Amazon Web Services account.</p>
|
|
26
|
+
* <p>Lists the set of certificate authority (CA) certificates provided by Amazon RDS for this Amazon Web Services account.</p>
|
|
27
27
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html">Using SSL/TLS to encrypt a connection to a DB
|
|
28
28
|
* instance</a> in the <i>Amazon RDS User Guide</i> and
|
|
29
29
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html">
|
|
@@ -51,6 +51,7 @@ export interface DescribeCertificatesCommandOutput extends CertificateMessage, _
|
|
|
51
51
|
* const command = new DescribeCertificatesCommand(input);
|
|
52
52
|
* const response = await client.send(command);
|
|
53
53
|
* // { // CertificateMessage
|
|
54
|
+
* // DefaultCertificateForNewLaunches: "STRING_VALUE",
|
|
54
55
|
* // Certificates: [ // CertificateList
|
|
55
56
|
* // { // Certificate
|
|
56
57
|
* // CertificateIdentifier: "STRING_VALUE",
|
|
@@ -23,7 +23,7 @@ export interface RestoreDBInstanceToPointInTimeCommandOutput extends RestoreDBIn
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Restores a DB instance to an arbitrary point in time. You can restore to any point in time before the time identified by the LatestRestorableTime property. You can restore to a point up to the number of days specified by the BackupRetentionPeriod property.</p>
|
|
26
|
+
* <p>Restores a DB instance to an arbitrary point in time. You can restore to any point in time before the time identified by the <code>LatestRestorableTime</code> property. You can restore to a point up to the number of days specified by the <code>BackupRetentionPeriod</code> property.</p>
|
|
27
27
|
* <p>The target database is created with most of the original configuration, but in a
|
|
28
28
|
* system-selected Availability Zone, with the default security group, the default subnet
|
|
29
29
|
* group, and the default DB parameter group. By default, the new DB instance is created as
|
|
@@ -11363,6 +11363,13 @@ export interface Certificate {
|
|
|
11363
11363
|
* <p>Data returned by the <b>DescribeCertificates</b> action.</p>
|
|
11364
11364
|
*/
|
|
11365
11365
|
export interface CertificateMessage {
|
|
11366
|
+
/**
|
|
11367
|
+
* @public
|
|
11368
|
+
* <p>The default root CA for new databases created by your Amazon Web Services account. This is either the root CA override
|
|
11369
|
+
* set on your Amazon Web Services account or the system default CA for the Region if no override exists. To override the default CA, use the
|
|
11370
|
+
* <code>ModifyCertificates</code> operation.</p>
|
|
11371
|
+
*/
|
|
11372
|
+
DefaultCertificateForNewLaunches?: string;
|
|
11366
11373
|
/**
|
|
11367
11374
|
* @public
|
|
11368
11375
|
* <p>The list of <code>Certificate</code> objects for the Amazon Web Services account.</p>
|
|
@@ -4397,7 +4397,7 @@ export interface ModifyDBClusterMessage {
|
|
|
4397
4397
|
/**
|
|
4398
4398
|
* @public
|
|
4399
4399
|
* <p>Specifies whether major version upgrades are allowed.</p>
|
|
4400
|
-
* <p>Valid for Cluster Type: Aurora DB clusters
|
|
4400
|
+
* <p>Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters</p>
|
|
4401
4401
|
* <p>Constraints:</p>
|
|
4402
4402
|
* <ul>
|
|
4403
4403
|
* <li>
|
|
@@ -4991,6 +4991,14 @@ export interface ModifyDBInstanceMessage {
|
|
|
4991
4991
|
* applied during the next maintenance window, unless you specify
|
|
4992
4992
|
* <code>ApplyImmediately</code> in your request. </p>
|
|
4993
4993
|
* <p>Default: Uses existing setting</p>
|
|
4994
|
+
* <p>Constraints:</p>
|
|
4995
|
+
* <ul>
|
|
4996
|
+
* <li>
|
|
4997
|
+
* <p>If you are modifying the DB instance class and upgrading the engine version at the same time, the currently running engine version must be supported on the
|
|
4998
|
+
* specified DB instance class. Otherwise, the operation returns an error. In this case, first run the operation to modify the DB instance class,
|
|
4999
|
+
* and then run it again to upgrade the engine version.</p>
|
|
5000
|
+
* </li>
|
|
5001
|
+
* </ul>
|
|
4994
5002
|
*/
|
|
4995
5003
|
DBInstanceClass?: string;
|
|
4996
5004
|
/**
|
|
@@ -5248,6 +5256,14 @@ export interface ModifyDBInstanceMessage {
|
|
|
5248
5256
|
* or cluster is running.</p>
|
|
5249
5257
|
* <p>In RDS Custom for Oracle, this parameter is supported for read replicas only if they are in the
|
|
5250
5258
|
* <code>PATCH_DB_FAILURE</code> lifecycle.</p>
|
|
5259
|
+
* <p>Constraints:</p>
|
|
5260
|
+
* <ul>
|
|
5261
|
+
* <li>
|
|
5262
|
+
* <p>If you are upgrading the engine version and modifying the DB instance class at the same time, the currently running engine version must be supported on the
|
|
5263
|
+
* specified DB instance class. Otherwise, the operation returns an error. In this case, first run the operation to modify the DB instance class,
|
|
5264
|
+
* and then run it again to upgrade the engine version.</p>
|
|
5265
|
+
* </li>
|
|
5266
|
+
* </ul>
|
|
5251
5267
|
*/
|
|
5252
5268
|
EngineVersion?: string;
|
|
5253
5269
|
/**
|
|
@@ -8140,8 +8156,9 @@ export interface RestoreDBClusterToPointInTimeMessage {
|
|
|
8140
8156
|
EnableCloudwatchLogsExports?: string[];
|
|
8141
8157
|
/**
|
|
8142
8158
|
* @public
|
|
8143
|
-
* <p>The name of the DB cluster parameter group to associate with this DB cluster
|
|
8144
|
-
*
|
|
8159
|
+
* <p>The name of the custom DB cluster parameter group to associate with this DB cluster.</p>
|
|
8160
|
+
* <p>If the <code>DBClusterParameterGroupName</code> parameter is omitted, the default DB cluster parameter group for the specified
|
|
8161
|
+
* engine is used.</p>
|
|
8145
8162
|
* <p>Constraints:</p>
|
|
8146
8163
|
* <ul>
|
|
8147
8164
|
* <li>
|
|
@@ -8211,8 +8228,9 @@ export interface RestoreDBClusterToPointInTimeMessage {
|
|
|
8211
8228
|
* <p>The compute and memory capacity of the each DB instance in the Multi-AZ DB cluster,
|
|
8212
8229
|
* for example db.m6gd.xlarge. Not all DB instance classes are available in all Amazon Web Services
|
|
8213
8230
|
* Regions, or for all database engines.</p>
|
|
8214
|
-
* <p>For the full list of DB instance classes, and availability for your engine, see
|
|
8215
|
-
*
|
|
8231
|
+
* <p>For the full list of DB instance classes, and availability for your engine, see
|
|
8232
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html">DB instance class</a> in the
|
|
8233
|
+
* <i>Amazon RDS User Guide</i>.</p>
|
|
8216
8234
|
* <p>Valid for: Multi-AZ DB clusters only</p>
|
|
8217
8235
|
*/
|
|
8218
8236
|
DBClusterInstanceClass?: string;
|
|
@@ -9416,17 +9434,17 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9416
9434
|
SourceDBInstanceIdentifier?: string;
|
|
9417
9435
|
/**
|
|
9418
9436
|
* @public
|
|
9419
|
-
* <p>The name of the new DB instance to
|
|
9437
|
+
* <p>The name of the new DB instance to create.</p>
|
|
9420
9438
|
* <p>Constraints:</p>
|
|
9421
9439
|
* <ul>
|
|
9422
9440
|
* <li>
|
|
9423
|
-
* <p>Must contain from 1 to 63 letters, numbers, or hyphens
|
|
9441
|
+
* <p>Must contain from 1 to 63 letters, numbers, or hyphens.</p>
|
|
9424
9442
|
* </li>
|
|
9425
9443
|
* <li>
|
|
9426
|
-
* <p>First character must be a letter
|
|
9444
|
+
* <p>First character must be a letter.</p>
|
|
9427
9445
|
* </li>
|
|
9428
9446
|
* <li>
|
|
9429
|
-
* <p>Can't end with a hyphen or contain two consecutive hyphens
|
|
9447
|
+
* <p>Can't end with a hyphen or contain two consecutive hyphens.</p>
|
|
9430
9448
|
* </li>
|
|
9431
9449
|
* </ul>
|
|
9432
9450
|
*/
|
|
@@ -9434,14 +9452,16 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9434
9452
|
/**
|
|
9435
9453
|
* @public
|
|
9436
9454
|
* <p>The date and time to restore from.</p>
|
|
9437
|
-
* <p>Valid Values: Value must be a time in Universal Coordinated Time (UTC) format</p>
|
|
9438
9455
|
* <p>Constraints:</p>
|
|
9439
9456
|
* <ul>
|
|
9440
9457
|
* <li>
|
|
9441
|
-
* <p>Must be
|
|
9458
|
+
* <p>Must be a time in Universal Coordinated Time (UTC) format.</p>
|
|
9442
9459
|
* </li>
|
|
9443
9460
|
* <li>
|
|
9444
|
-
* <p>
|
|
9461
|
+
* <p>Must be before the latest restorable time for the DB instance.</p>
|
|
9462
|
+
* </li>
|
|
9463
|
+
* <li>
|
|
9464
|
+
* <p>Can't be specified if the <code>UseLatestRestorableTime</code> parameter is enabled.</p>
|
|
9445
9465
|
* </li>
|
|
9446
9466
|
* </ul>
|
|
9447
9467
|
* <p>Example: <code>2009-09-07T23:45:00Z</code>
|
|
@@ -9450,9 +9470,14 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9450
9470
|
RestoreTime?: Date;
|
|
9451
9471
|
/**
|
|
9452
9472
|
* @public
|
|
9453
|
-
* <p>
|
|
9473
|
+
* <p>Specifies whether the DB instance is restored from the latest backup time. By default, the DB instance
|
|
9454
9474
|
* isn't restored from the latest backup time.</p>
|
|
9455
|
-
* <p>Constraints
|
|
9475
|
+
* <p>Constraints:</p>
|
|
9476
|
+
* <ul>
|
|
9477
|
+
* <li>
|
|
9478
|
+
* <p>Can't be specified if the <code>RestoreTime</code> parameter is provided.</p>
|
|
9479
|
+
* </li>
|
|
9480
|
+
* </ul>
|
|
9456
9481
|
*/
|
|
9457
9482
|
UseLatestRestorableTime?: boolean;
|
|
9458
9483
|
/**
|
|
@@ -9462,22 +9487,31 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9462
9487
|
* Regions, or for all database engines. For the full list of DB instance classes, and
|
|
9463
9488
|
* availability for your engine, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html">DB Instance
|
|
9464
9489
|
* Class</a> in the <i>Amazon RDS User Guide</i>.</p>
|
|
9465
|
-
* <p>Default: The same
|
|
9490
|
+
* <p>Default: The same DB instance class as the original DB instance.</p>
|
|
9466
9491
|
*/
|
|
9467
9492
|
DBInstanceClass?: string;
|
|
9468
9493
|
/**
|
|
9469
9494
|
* @public
|
|
9470
9495
|
* <p>The port number on which the database accepts connections.</p>
|
|
9471
|
-
* <p>Constraints: Value must be <code>1150-65535</code>
|
|
9472
|
-
* </p>
|
|
9473
9496
|
* <p>Default: The same port as the original DB instance.</p>
|
|
9497
|
+
* <p>Constraints:</p>
|
|
9498
|
+
* <ul>
|
|
9499
|
+
* <li>
|
|
9500
|
+
* <p>The value must be <code>1150-65535</code>.</p>
|
|
9501
|
+
* </li>
|
|
9502
|
+
* </ul>
|
|
9474
9503
|
*/
|
|
9475
9504
|
Port?: number;
|
|
9476
9505
|
/**
|
|
9477
9506
|
* @public
|
|
9478
9507
|
* <p>The Availability Zone (AZ) where the DB instance will be created.</p>
|
|
9479
9508
|
* <p>Default: A random, system-chosen Availability Zone.</p>
|
|
9480
|
-
* <p>
|
|
9509
|
+
* <p>Constraints:</p>
|
|
9510
|
+
* <ul>
|
|
9511
|
+
* <li>
|
|
9512
|
+
* <p>You can't specify the <code>AvailabilityZone</code> parameter if the DB instance is a Multi-AZ deployment.</p>
|
|
9513
|
+
* </li>
|
|
9514
|
+
* </ul>
|
|
9481
9515
|
* <p>Example: <code>us-east-1a</code>
|
|
9482
9516
|
* </p>
|
|
9483
9517
|
*/
|
|
@@ -9485,22 +9519,32 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9485
9519
|
/**
|
|
9486
9520
|
* @public
|
|
9487
9521
|
* <p>The DB subnet group name to use for the new instance.</p>
|
|
9488
|
-
* <p>Constraints
|
|
9522
|
+
* <p>Constraints:</p>
|
|
9523
|
+
* <ul>
|
|
9524
|
+
* <li>
|
|
9525
|
+
* <p>If supplied, must match the name of an existing DB subnet group.</p>
|
|
9526
|
+
* </li>
|
|
9527
|
+
* </ul>
|
|
9489
9528
|
* <p>Example: <code>mydbsubnetgroup</code>
|
|
9490
9529
|
* </p>
|
|
9491
9530
|
*/
|
|
9492
9531
|
DBSubnetGroupName?: string;
|
|
9493
9532
|
/**
|
|
9494
9533
|
* @public
|
|
9495
|
-
* <p>
|
|
9534
|
+
* <p>Secifies whether the DB instance is a Multi-AZ deployment.</p>
|
|
9496
9535
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
9497
|
-
* <p>
|
|
9536
|
+
* <p>Constraints:</p>
|
|
9537
|
+
* <ul>
|
|
9538
|
+
* <li>
|
|
9539
|
+
* <p>You can't specify the <code>AvailabilityZone</code> parameter if the DB instance is a
|
|
9498
9540
|
* Multi-AZ deployment.</p>
|
|
9541
|
+
* </li>
|
|
9542
|
+
* </ul>
|
|
9499
9543
|
*/
|
|
9500
9544
|
MultiAZ?: boolean;
|
|
9501
9545
|
/**
|
|
9502
9546
|
* @public
|
|
9503
|
-
* <p>
|
|
9547
|
+
* <p>Specifies whether the DB instance is publicly accessible.</p>
|
|
9504
9548
|
* <p>When the DB cluster is publicly accessible, its Domain Name System (DNS) endpoint
|
|
9505
9549
|
* resolves to the private IP address from within the DB cluster's virtual private cloud
|
|
9506
9550
|
* (VPC). It resolves to the public IP address from outside of the DB cluster's VPC. Access
|
|
@@ -9513,18 +9557,18 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9513
9557
|
PubliclyAccessible?: boolean;
|
|
9514
9558
|
/**
|
|
9515
9559
|
* @public
|
|
9516
|
-
* <p>
|
|
9560
|
+
* <p>Specifies whether minor version upgrades are applied automatically to the
|
|
9517
9561
|
* DB instance during the maintenance window.</p>
|
|
9518
9562
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
9519
9563
|
*/
|
|
9520
9564
|
AutoMinorVersionUpgrade?: boolean;
|
|
9521
9565
|
/**
|
|
9522
9566
|
* @public
|
|
9523
|
-
* <p>
|
|
9567
|
+
* <p>The license model information for the restored DB instance.</p>
|
|
9524
9568
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
9525
|
-
* <p>
|
|
9526
|
-
* <p>Valid values: <code>license-included</code> | <code>bring-your-own-license</code> | <code>general-public-license</code>
|
|
9569
|
+
* <p>Valid Values: <code>license-included</code> | <code>bring-your-own-license</code> | <code>general-public-license</code>
|
|
9527
9570
|
* </p>
|
|
9571
|
+
* <p>Default: Same as the source.</p>
|
|
9528
9572
|
*/
|
|
9529
9573
|
LicenseModel?: string;
|
|
9530
9574
|
/**
|
|
@@ -9539,8 +9583,6 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9539
9583
|
* @public
|
|
9540
9584
|
* <p>The database engine to use for the new instance.</p>
|
|
9541
9585
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
9542
|
-
* <p>Default: The same as source</p>
|
|
9543
|
-
* <p>Constraint: Must be compatible with the engine of the source</p>
|
|
9544
9586
|
* <p>Valid Values:</p>
|
|
9545
9587
|
* <ul>
|
|
9546
9588
|
* <li>
|
|
@@ -9599,21 +9641,30 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9599
9641
|
* </p>
|
|
9600
9642
|
* </li>
|
|
9601
9643
|
* </ul>
|
|
9644
|
+
* <p>Default: The same as source</p>
|
|
9645
|
+
* <p>Constraints:</p>
|
|
9646
|
+
* <ul>
|
|
9647
|
+
* <li>
|
|
9648
|
+
* <p>Must be compatible with the engine of the source.</p>
|
|
9649
|
+
* </li>
|
|
9650
|
+
* </ul>
|
|
9602
9651
|
*/
|
|
9603
9652
|
Engine?: string;
|
|
9604
9653
|
/**
|
|
9605
9654
|
* @public
|
|
9606
|
-
* <p>The amount of Provisioned IOPS (input/output operations per second) to
|
|
9607
|
-
* <p>
|
|
9608
|
-
* <p>
|
|
9609
|
-
*
|
|
9610
|
-
*
|
|
9611
|
-
*
|
|
9655
|
+
* <p>The amount of Provisioned IOPS (input/output operations per second) to initially allocate for the DB instance.</p>
|
|
9656
|
+
* <p>This setting doesn't apply to SQL Server.</p>
|
|
9657
|
+
* <p>Constraints:</p>
|
|
9658
|
+
* <ul>
|
|
9659
|
+
* <li>
|
|
9660
|
+
* <p>Must be an integer greater than 1000.</p>
|
|
9661
|
+
* </li>
|
|
9662
|
+
* </ul>
|
|
9612
9663
|
*/
|
|
9613
9664
|
Iops?: number;
|
|
9614
9665
|
/**
|
|
9615
9666
|
* @public
|
|
9616
|
-
* <p>The name of the option group to
|
|
9667
|
+
* <p>The name of the option group to use for the restored DB instance.</p>
|
|
9617
9668
|
* <p>Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an
|
|
9618
9669
|
* option group, and that option group can't be removed from a DB instance after it is associated with a DB instance</p>
|
|
9619
9670
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
@@ -9621,7 +9672,7 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9621
9672
|
OptionGroupName?: string;
|
|
9622
9673
|
/**
|
|
9623
9674
|
* @public
|
|
9624
|
-
* <p>
|
|
9675
|
+
* <p>Specifies whether to copy all tags from the restored DB instance to snapshots of the DB instance. By default, tags are not copied.</p>
|
|
9625
9676
|
*/
|
|
9626
9677
|
CopyTagsToSnapshot?: boolean;
|
|
9627
9678
|
/**
|
|
@@ -9633,14 +9684,18 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9633
9684
|
Tags?: Tag[];
|
|
9634
9685
|
/**
|
|
9635
9686
|
* @public
|
|
9636
|
-
* <p>
|
|
9637
|
-
* <p>Valid
|
|
9687
|
+
* <p>The storage type to associate with the DB instance.</p>
|
|
9688
|
+
* <p>Valid Values: <code>gp2 | gp3 | io1 | standard</code>
|
|
9638
9689
|
* </p>
|
|
9639
|
-
* <p>
|
|
9690
|
+
* <p>Default: <code>io1</code>, if the <code>Iops</code> parameter
|
|
9691
|
+
* is specified. Otherwise, <code>gp2</code>.</p>
|
|
9692
|
+
* <p>Constraints:</p>
|
|
9693
|
+
* <ul>
|
|
9694
|
+
* <li>
|
|
9695
|
+
* <p>If you specify <code>io1</code> or <code>gp3</code>, you must also include a value for the
|
|
9640
9696
|
* <code>Iops</code> parameter.</p>
|
|
9641
|
-
*
|
|
9642
|
-
*
|
|
9643
|
-
* </p>
|
|
9697
|
+
* </li>
|
|
9698
|
+
* </ul>
|
|
9644
9699
|
*/
|
|
9645
9700
|
StorageType?: string;
|
|
9646
9701
|
/**
|
|
@@ -9663,7 +9718,7 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9663
9718
|
VpcSecurityGroupIds?: string[];
|
|
9664
9719
|
/**
|
|
9665
9720
|
* @public
|
|
9666
|
-
* <p>
|
|
9721
|
+
* <p>The Active Directory directory ID to restore the DB instance in.
|
|
9667
9722
|
* Create the domain before running this command. Currently, you can create only the MySQL, Microsoft SQL
|
|
9668
9723
|
* Server, Oracle, and PostgreSQL DB instances in an Active Directory Domain.</p>
|
|
9669
9724
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
@@ -9734,7 +9789,7 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9734
9789
|
DomainDnsIps?: string[];
|
|
9735
9790
|
/**
|
|
9736
9791
|
* @public
|
|
9737
|
-
* <p>
|
|
9792
|
+
* <p>Specifies whether to enable mapping of Amazon Web Services Identity and Access Management
|
|
9738
9793
|
* (IAM) accounts to database accounts. By default, mapping isn't enabled.</p>
|
|
9739
9794
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
9740
9795
|
* <p>For more information about IAM database authentication, see
|
|
@@ -9772,7 +9827,7 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9772
9827
|
* <p>Constraints:</p>
|
|
9773
9828
|
* <ul>
|
|
9774
9829
|
* <li>
|
|
9775
|
-
* <p>If supplied, must match the name of an existing
|
|
9830
|
+
* <p>If supplied, must match the name of an existing DB parameter group.</p>
|
|
9776
9831
|
* </li>
|
|
9777
9832
|
* <li>
|
|
9778
9833
|
* <p>Must be 1 to 255 letters, numbers, or hyphens.</p>
|
|
@@ -9788,7 +9843,7 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9788
9843
|
DBParameterGroupName?: string;
|
|
9789
9844
|
/**
|
|
9790
9845
|
* @public
|
|
9791
|
-
* <p>
|
|
9846
|
+
* <p>Specifies whether the DB instance has deletion protection enabled.
|
|
9792
9847
|
* The database can't be deleted when deletion protection is enabled. By default,
|
|
9793
9848
|
* deletion protection isn't enabled. For more information, see
|
|
9794
9849
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html">
|
|
@@ -9813,13 +9868,13 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9813
9868
|
/**
|
|
9814
9869
|
* @public
|
|
9815
9870
|
* <p>The Amazon Resource Name (ARN) of the replicated automated backups from which to restore, for example,
|
|
9816
|
-
* <code>arn:aws:rds:
|
|
9871
|
+
* <code>arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE</code>.</p>
|
|
9817
9872
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
9818
9873
|
*/
|
|
9819
9874
|
SourceDBInstanceAutomatedBackupsArn?: string;
|
|
9820
9875
|
/**
|
|
9821
9876
|
* @public
|
|
9822
|
-
* <p>
|
|
9877
|
+
* <p>Specifies whether to enable a customer-owned IP address (CoIP) for an RDS on Outposts DB instance.</p>
|
|
9823
9878
|
* <p>A <i>CoIP</i> provides local or external connectivity to resources in
|
|
9824
9879
|
* your Outpost subnets through your on-premises network. For some use cases, a CoIP can
|
|
9825
9880
|
* provide lower latency for connections to the DB instance from outside of its virtual
|
|
@@ -9863,7 +9918,14 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9863
9918
|
/**
|
|
9864
9919
|
* @public
|
|
9865
9920
|
* <p>The network type of the DB instance.</p>
|
|
9866
|
-
* <p>
|
|
9921
|
+
* <p>The network type is determined by the <code>DBSubnetGroup</code> specified for the DB instance.
|
|
9922
|
+
* A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6
|
|
9923
|
+
* protocols (<code>DUAL</code>).</p>
|
|
9924
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
|
|
9925
|
+
* Working with a DB instance in a VPC</a> in the
|
|
9926
|
+
* <i>Amazon RDS User Guide.</i>
|
|
9927
|
+
* </p>
|
|
9928
|
+
* <p>Valid Values:</p>
|
|
9867
9929
|
* <ul>
|
|
9868
9930
|
* <li>
|
|
9869
9931
|
* <p>
|
|
@@ -9876,18 +9938,11 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
9876
9938
|
* </p>
|
|
9877
9939
|
* </li>
|
|
9878
9940
|
* </ul>
|
|
9879
|
-
* <p>The network type is determined by the <code>DBSubnetGroup</code> specified for the DB instance.
|
|
9880
|
-
* A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6
|
|
9881
|
-
* protocols (<code>DUAL</code>).</p>
|
|
9882
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
|
|
9883
|
-
* Working with a DB instance in a VPC</a> in the
|
|
9884
|
-
* <i>Amazon RDS User Guide.</i>
|
|
9885
|
-
* </p>
|
|
9886
9941
|
*/
|
|
9887
9942
|
NetworkType?: string;
|
|
9888
9943
|
/**
|
|
9889
9944
|
* @public
|
|
9890
|
-
* <p>
|
|
9945
|
+
* <p>The storage throughput value for the DB instance.</p>
|
|
9891
9946
|
* <p>This setting doesn't apply to RDS Custom or Amazon Aurora.</p>
|
|
9892
9947
|
*/
|
|
9893
9948
|
StorageThroughput?: number;
|
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.423.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",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.423.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.423.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.418.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.418.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.418.0",
|