@aws-sdk/client-rds 3.370.0 → 3.377.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/protocols/Aws_query.js +9 -0
- package/dist-es/protocols/Aws_query.js +9 -0
- package/dist-types/commands/CopyDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/CreateDBInstanceCommand.d.ts +2 -0
- package/dist-types/commands/CreateDBInstanceReadReplicaCommand.d.ts +1 -0
- package/dist-types/commands/CreateDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/CreateGlobalClusterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteBlueGreenDeploymentCommand.d.ts +5 -5
- package/dist-types/commands/DeleteDBInstanceCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/DescribeBlueGreenDeploymentsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBInstancesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeDBSnapshotsCommand.d.ts +1 -0
- package/dist-types/commands/ModifyDBInstanceCommand.d.ts +1 -0
- package/dist-types/commands/ModifyDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/ModifyGlobalClusterCommand.d.ts +2 -2
- package/dist-types/commands/PromoteReadReplicaCommand.d.ts +1 -0
- package/dist-types/commands/RebootDBInstanceCommand.d.ts +1 -0
- package/dist-types/commands/RestoreDBInstanceFromDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/RestoreDBInstanceFromS3Command.d.ts +1 -0
- package/dist-types/commands/RestoreDBInstanceToPointInTimeCommand.d.ts +1 -0
- package/dist-types/commands/StartDBInstanceCommand.d.ts +1 -0
- package/dist-types/commands/StopDBInstanceCommand.d.ts +1 -0
- package/dist-types/commands/SwitchoverBlueGreenDeploymentCommand.d.ts +5 -5
- package/dist-types/commands/SwitchoverReadReplicaCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +205 -182
- package/dist-types/models/models_1.d.ts +20 -20
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/package.json +2 -2
|
@@ -9462,6 +9462,9 @@ const se_CreateDBInstanceMessage = (input, context) => {
|
|
|
9462
9462
|
if (input.CACertificateIdentifier != null) {
|
|
9463
9463
|
entries["CACertificateIdentifier"] = input.CACertificateIdentifier;
|
|
9464
9464
|
}
|
|
9465
|
+
if (input.DBSystemId != null) {
|
|
9466
|
+
entries["DBSystemId"] = input.DBSystemId;
|
|
9467
|
+
}
|
|
9465
9468
|
return entries;
|
|
9466
9469
|
};
|
|
9467
9470
|
const se_CreateDBInstanceReadReplicaMessage = (input, context) => {
|
|
@@ -15271,6 +15274,9 @@ const de_DBInstance = (output, context) => {
|
|
|
15271
15274
|
if (output["ReadReplicaSourceDBClusterIdentifier"] !== undefined) {
|
|
15272
15275
|
contents.ReadReplicaSourceDBClusterIdentifier = (0, smithy_client_1.expectString)(output["ReadReplicaSourceDBClusterIdentifier"]);
|
|
15273
15276
|
}
|
|
15277
|
+
if (output["PercentProgress"] !== undefined) {
|
|
15278
|
+
contents.PercentProgress = (0, smithy_client_1.expectString)(output["PercentProgress"]);
|
|
15279
|
+
}
|
|
15274
15280
|
return contents;
|
|
15275
15281
|
};
|
|
15276
15282
|
const de_DBInstanceAlreadyExistsFault = (output, context) => {
|
|
@@ -16053,6 +16059,9 @@ const de_DBSnapshot = (output, context) => {
|
|
|
16053
16059
|
if (output["StorageThroughput"] !== undefined) {
|
|
16054
16060
|
contents.StorageThroughput = (0, smithy_client_1.strictParseInt32)(output["StorageThroughput"]);
|
|
16055
16061
|
}
|
|
16062
|
+
if (output["DBSystemId"] !== undefined) {
|
|
16063
|
+
contents.DBSystemId = (0, smithy_client_1.expectString)(output["DBSystemId"]);
|
|
16064
|
+
}
|
|
16056
16065
|
return contents;
|
|
16057
16066
|
};
|
|
16058
16067
|
const de_DBSnapshotAlreadyExistsFault = (output, context) => {
|
|
@@ -9172,6 +9172,9 @@ const se_CreateDBInstanceMessage = (input, context) => {
|
|
|
9172
9172
|
if (input.CACertificateIdentifier != null) {
|
|
9173
9173
|
entries["CACertificateIdentifier"] = input.CACertificateIdentifier;
|
|
9174
9174
|
}
|
|
9175
|
+
if (input.DBSystemId != null) {
|
|
9176
|
+
entries["DBSystemId"] = input.DBSystemId;
|
|
9177
|
+
}
|
|
9175
9178
|
return entries;
|
|
9176
9179
|
};
|
|
9177
9180
|
const se_CreateDBInstanceReadReplicaMessage = (input, context) => {
|
|
@@ -14981,6 +14984,9 @@ const de_DBInstance = (output, context) => {
|
|
|
14981
14984
|
if (output["ReadReplicaSourceDBClusterIdentifier"] !== undefined) {
|
|
14982
14985
|
contents.ReadReplicaSourceDBClusterIdentifier = __expectString(output["ReadReplicaSourceDBClusterIdentifier"]);
|
|
14983
14986
|
}
|
|
14987
|
+
if (output["PercentProgress"] !== undefined) {
|
|
14988
|
+
contents.PercentProgress = __expectString(output["PercentProgress"]);
|
|
14989
|
+
}
|
|
14984
14990
|
return contents;
|
|
14985
14991
|
};
|
|
14986
14992
|
const de_DBInstanceAlreadyExistsFault = (output, context) => {
|
|
@@ -15763,6 +15769,9 @@ const de_DBSnapshot = (output, context) => {
|
|
|
15763
15769
|
if (output["StorageThroughput"] !== undefined) {
|
|
15764
15770
|
contents.StorageThroughput = __strictParseInt32(output["StorageThroughput"]);
|
|
15765
15771
|
}
|
|
15772
|
+
if (output["DBSystemId"] !== undefined) {
|
|
15773
|
+
contents.DBSystemId = __expectString(output["DBSystemId"]);
|
|
15774
|
+
}
|
|
15766
15775
|
return contents;
|
|
15767
15776
|
};
|
|
15768
15777
|
const de_DBSnapshotAlreadyExistsFault = (output, context) => {
|
|
@@ -99,6 +99,7 @@ export interface CopyDBSnapshotCommandOutput extends CopyDBSnapshotResult, __Met
|
|
|
99
99
|
* // SnapshotDatabaseTime: new Date("TIMESTAMP"),
|
|
100
100
|
* // SnapshotTarget: "STRING_VALUE",
|
|
101
101
|
* // StorageThroughput: Number("int"),
|
|
102
|
+
* // DBSystemId: "STRING_VALUE",
|
|
102
103
|
* // },
|
|
103
104
|
* // };
|
|
104
105
|
*
|
|
@@ -116,6 +116,7 @@ export interface CreateDBInstanceCommandOutput extends CreateDBInstanceResult, _
|
|
|
116
116
|
* ManageMasterUserPassword: true || false,
|
|
117
117
|
* MasterUserSecretKmsKeyId: "STRING_VALUE",
|
|
118
118
|
* CACertificateIdentifier: "STRING_VALUE",
|
|
119
|
+
* DBSystemId: "STRING_VALUE",
|
|
119
120
|
* };
|
|
120
121
|
* const command = new CreateDBInstanceCommand(input);
|
|
121
122
|
* const response = await client.send(command);
|
|
@@ -336,6 +337,7 @@ export interface CreateDBInstanceCommandOutput extends CreateDBInstanceResult, _
|
|
|
336
337
|
* // ValidTill: new Date("TIMESTAMP"),
|
|
337
338
|
* // },
|
|
338
339
|
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
|
|
340
|
+
* // PercentProgress: "STRING_VALUE",
|
|
339
341
|
* // },
|
|
340
342
|
* // };
|
|
341
343
|
*
|
|
@@ -321,6 +321,7 @@ export interface CreateDBInstanceReadReplicaCommandOutput extends CreateDBInstan
|
|
|
321
321
|
* // ValidTill: new Date("TIMESTAMP"),
|
|
322
322
|
* // },
|
|
323
323
|
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
|
|
324
|
+
* // PercentProgress: "STRING_VALUE",
|
|
324
325
|
* // },
|
|
325
326
|
* // };
|
|
326
327
|
*
|
|
@@ -88,6 +88,7 @@ export interface CreateDBSnapshotCommandOutput extends CreateDBSnapshotResult, _
|
|
|
88
88
|
* // SnapshotDatabaseTime: new Date("TIMESTAMP"),
|
|
89
89
|
* // SnapshotTarget: "STRING_VALUE",
|
|
90
90
|
* // StorageThroughput: Number("int"),
|
|
91
|
+
* // DBSystemId: "STRING_VALUE",
|
|
91
92
|
* // },
|
|
92
93
|
* // };
|
|
93
94
|
*
|
|
@@ -30,7 +30,7 @@ export interface CreateGlobalClusterCommandOutput extends CreateGlobalClusterRes
|
|
|
30
30
|
* data from the primary cluster through high-speed replication
|
|
31
31
|
* performed by the Aurora storage subsystem.</p>
|
|
32
32
|
* <p>You can create a global database that is initially empty, and then
|
|
33
|
-
*
|
|
33
|
+
* create the primary and secondary DB clusters in the global database.
|
|
34
34
|
* Or you can specify an existing Aurora cluster during the create operation,
|
|
35
35
|
* and this cluster becomes the primary cluster of the global database.</p>
|
|
36
36
|
* <note>
|
|
@@ -24,11 +24,11 @@ export interface DeleteBlueGreenDeploymentCommandOutput extends DeleteBlueGreenD
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p>Deletes a blue/green deployment.</p>
|
|
27
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
*
|
|
31
|
-
*
|
|
27
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
28
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon RDS User
|
|
29
|
+
* Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
30
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
|
|
31
|
+
* User Guide</i>.</p>
|
|
32
32
|
* @example
|
|
33
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
34
|
* ```javascript
|
|
@@ -277,6 +277,7 @@ export interface DeleteDBInstanceCommandOutput extends DeleteDBInstanceResult, _
|
|
|
277
277
|
* // ValidTill: new Date("TIMESTAMP"),
|
|
278
278
|
* // },
|
|
279
279
|
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
|
|
280
|
+
* // PercentProgress: "STRING_VALUE",
|
|
280
281
|
* // },
|
|
281
282
|
* // };
|
|
282
283
|
*
|
|
@@ -84,6 +84,7 @@ export interface DeleteDBSnapshotCommandOutput extends DeleteDBSnapshotResult, _
|
|
|
84
84
|
* // SnapshotDatabaseTime: new Date("TIMESTAMP"),
|
|
85
85
|
* // SnapshotTarget: "STRING_VALUE",
|
|
86
86
|
* // StorageThroughput: Number("int"),
|
|
87
|
+
* // DBSystemId: "STRING_VALUE",
|
|
87
88
|
* // },
|
|
88
89
|
* // };
|
|
89
90
|
*
|
|
@@ -23,7 +23,7 @@ export interface DescribeBlueGreenDeploymentsCommandOutput extends DescribeBlueG
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>
|
|
26
|
+
* <p>Describes one or more blue/green deployments.</p>
|
|
27
27
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS Blue/Green Deployments
|
|
28
28
|
* for database updates</a> in the <i>Amazon RDS User Guide</i> and
|
|
29
29
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">
|
|
@@ -267,6 +267,7 @@ export interface DescribeDBInstancesCommandOutput extends DBInstanceMessage, __M
|
|
|
267
267
|
* // ValidTill: new Date("TIMESTAMP"),
|
|
268
268
|
* // },
|
|
269
269
|
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
|
|
270
|
+
* // PercentProgress: "STRING_VALUE",
|
|
270
271
|
* // },
|
|
271
272
|
* // ],
|
|
272
273
|
* // };
|
|
@@ -97,6 +97,7 @@ export interface DescribeDBSnapshotsCommandOutput extends DBSnapshotMessage, __M
|
|
|
97
97
|
* // SnapshotDatabaseTime: new Date("TIMESTAMP"),
|
|
98
98
|
* // SnapshotTarget: "STRING_VALUE",
|
|
99
99
|
* // StorageThroughput: Number("int"),
|
|
100
|
+
* // DBSystemId: "STRING_VALUE",
|
|
100
101
|
* // },
|
|
101
102
|
* // ],
|
|
102
103
|
* // };
|
|
@@ -331,6 +331,7 @@ export interface ModifyDBInstanceCommandOutput extends ModifyDBInstanceResult, _
|
|
|
331
331
|
* // ValidTill: new Date("TIMESTAMP"),
|
|
332
332
|
* // },
|
|
333
333
|
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
|
|
334
|
+
* // PercentProgress: "STRING_VALUE",
|
|
334
335
|
* // },
|
|
335
336
|
* // };
|
|
336
337
|
*
|
|
@@ -87,6 +87,7 @@ export interface ModifyDBSnapshotCommandOutput extends ModifyDBSnapshotResult, _
|
|
|
87
87
|
* // SnapshotDatabaseTime: new Date("TIMESTAMP"),
|
|
88
88
|
* // SnapshotTarget: "STRING_VALUE",
|
|
89
89
|
* // StorageThroughput: Number("int"),
|
|
90
|
+
* // DBSystemId: "STRING_VALUE",
|
|
90
91
|
* // },
|
|
91
92
|
* // };
|
|
92
93
|
*
|
|
@@ -23,12 +23,12 @@ export interface ModifyGlobalClusterCommandOutput extends ModifyGlobalClusterRes
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>
|
|
26
|
+
* <p>Modifies a setting for an Amazon Aurora global cluster. You can change one or more database configuration
|
|
27
27
|
* parameters by specifying these parameters and the new values in the request. For more information on
|
|
28
28
|
* Amazon Aurora, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html"> What is Amazon Aurora?</a> in the
|
|
29
29
|
* <i>Amazon Aurora User Guide</i>.</p>
|
|
30
30
|
* <note>
|
|
31
|
-
* <p>This
|
|
31
|
+
* <p>This operation only applies to Aurora global database clusters.</p>
|
|
32
32
|
* </note>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -271,6 +271,7 @@ export interface PromoteReadReplicaCommandOutput extends PromoteReadReplicaResul
|
|
|
271
271
|
* // ValidTill: new Date("TIMESTAMP"),
|
|
272
272
|
* // },
|
|
273
273
|
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
|
|
274
|
+
* // PercentProgress: "STRING_VALUE",
|
|
274
275
|
* // },
|
|
275
276
|
* // };
|
|
276
277
|
*
|
|
@@ -262,6 +262,7 @@ export interface RebootDBInstanceCommandOutput extends RebootDBInstanceResult, _
|
|
|
262
262
|
* // ValidTill: new Date("TIMESTAMP"),
|
|
263
263
|
* // },
|
|
264
264
|
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
|
|
265
|
+
* // PercentProgress: "STRING_VALUE",
|
|
265
266
|
* // },
|
|
266
267
|
* // };
|
|
267
268
|
*
|
|
@@ -319,6 +319,7 @@ export interface RestoreDBInstanceFromDBSnapshotCommandOutput extends RestoreDBI
|
|
|
319
319
|
* // ValidTill: new Date("TIMESTAMP"),
|
|
320
320
|
* // },
|
|
321
321
|
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
|
|
322
|
+
* // PercentProgress: "STRING_VALUE",
|
|
322
323
|
* // },
|
|
323
324
|
* // };
|
|
324
325
|
*
|
|
@@ -323,6 +323,7 @@ export interface RestoreDBInstanceFromS3CommandOutput extends RestoreDBInstanceF
|
|
|
323
323
|
* // ValidTill: new Date("TIMESTAMP"),
|
|
324
324
|
* // },
|
|
325
325
|
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
|
|
326
|
+
* // PercentProgress: "STRING_VALUE",
|
|
326
327
|
* // },
|
|
327
328
|
* // };
|
|
328
329
|
*
|
|
@@ -319,6 +319,7 @@ export interface RestoreDBInstanceToPointInTimeCommandOutput extends RestoreDBIn
|
|
|
319
319
|
* // ValidTill: new Date("TIMESTAMP"),
|
|
320
320
|
* // },
|
|
321
321
|
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
|
|
322
|
+
* // PercentProgress: "STRING_VALUE",
|
|
322
323
|
* // },
|
|
323
324
|
* // };
|
|
324
325
|
*
|
|
@@ -261,6 +261,7 @@ export interface StartDBInstanceCommandOutput extends StartDBInstanceResult, __M
|
|
|
261
261
|
* // ValidTill: new Date("TIMESTAMP"),
|
|
262
262
|
* // },
|
|
263
263
|
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
|
|
264
|
+
* // PercentProgress: "STRING_VALUE",
|
|
264
265
|
* // },
|
|
265
266
|
* // };
|
|
266
267
|
*
|
|
@@ -264,6 +264,7 @@ export interface StopDBInstanceCommandOutput extends StopDBInstanceResult, __Met
|
|
|
264
264
|
* // ValidTill: new Date("TIMESTAMP"),
|
|
265
265
|
* // },
|
|
266
266
|
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
|
|
267
|
+
* // PercentProgress: "STRING_VALUE",
|
|
267
268
|
* // },
|
|
268
269
|
* // };
|
|
269
270
|
*
|
|
@@ -26,11 +26,11 @@ export interface SwitchoverBlueGreenDeploymentCommandOutput extends SwitchoverBl
|
|
|
26
26
|
* <p>Switches over a blue/green deployment.</p>
|
|
27
27
|
* <p>Before you switch over, production traffic is routed to the databases in the blue environment.
|
|
28
28
|
* After you switch over, production traffic is routed to the databases in the green environment.</p>
|
|
29
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
29
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
30
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon RDS User
|
|
31
|
+
* Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
32
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
|
|
33
|
+
* User Guide</i>.</p>
|
|
34
34
|
* @example
|
|
35
35
|
* Use a bare-bones client and the command you need to make an API call.
|
|
36
36
|
* ```javascript
|
|
@@ -253,6 +253,7 @@ export interface SwitchoverReadReplicaCommandOutput extends SwitchoverReadReplic
|
|
|
253
253
|
* // ValidTill: new Date("TIMESTAMP"),
|
|
254
254
|
* // },
|
|
255
255
|
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
|
|
256
|
+
* // PercentProgress: "STRING_VALUE",
|
|
256
257
|
* // },
|
|
257
258
|
* // };
|
|
258
259
|
*
|
|
@@ -2028,6 +2028,11 @@ export interface DBSnapshot {
|
|
|
2028
2028
|
* <p>Specifies the storage throughput for the DB snapshot.</p>
|
|
2029
2029
|
*/
|
|
2030
2030
|
StorageThroughput?: number;
|
|
2031
|
+
/**
|
|
2032
|
+
* <p>The Oracle system identifier (SID), which is the name of the Oracle database instance that
|
|
2033
|
+
* manages your database files. The Oracle SID is also the name of your CDB.</p>
|
|
2034
|
+
*/
|
|
2035
|
+
DBSystemId?: string;
|
|
2031
2036
|
}
|
|
2032
2037
|
/**
|
|
2033
2038
|
* @public
|
|
@@ -2478,12 +2483,12 @@ export interface SwitchoverDetail {
|
|
|
2478
2483
|
}
|
|
2479
2484
|
/**
|
|
2480
2485
|
* @public
|
|
2481
|
-
* <p>
|
|
2482
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2483
|
-
*
|
|
2484
|
-
*
|
|
2485
|
-
*
|
|
2486
|
-
*
|
|
2486
|
+
* <p>Details about a task for a blue/green deployment.</p>
|
|
2487
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2488
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon RDS User
|
|
2489
|
+
* Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2490
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
|
|
2491
|
+
* User Guide</i>.</p>
|
|
2487
2492
|
*/
|
|
2488
2493
|
export interface BlueGreenDeploymentTask {
|
|
2489
2494
|
/**
|
|
@@ -2492,11 +2497,11 @@ export interface BlueGreenDeploymentTask {
|
|
|
2492
2497
|
Name?: string;
|
|
2493
2498
|
/**
|
|
2494
2499
|
* <p>The status of the blue/green deployment task.</p>
|
|
2495
|
-
* <p>Values:</p>
|
|
2500
|
+
* <p>Valid Values:</p>
|
|
2496
2501
|
* <ul>
|
|
2497
2502
|
* <li>
|
|
2498
2503
|
* <p>
|
|
2499
|
-
* <code>PENDING</code> - The
|
|
2504
|
+
* <code>PENDING</code> - The resource is being prepared for deployment.</p>
|
|
2500
2505
|
* </li>
|
|
2501
2506
|
* <li>
|
|
2502
2507
|
* <p>
|
|
@@ -2516,16 +2521,16 @@ export interface BlueGreenDeploymentTask {
|
|
|
2516
2521
|
}
|
|
2517
2522
|
/**
|
|
2518
2523
|
* @public
|
|
2519
|
-
* <p>
|
|
2520
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2521
|
-
*
|
|
2522
|
-
*
|
|
2523
|
-
*
|
|
2524
|
-
*
|
|
2524
|
+
* <p>Details about a blue/green deployment.</p>
|
|
2525
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2526
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon RDS User
|
|
2527
|
+
* Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2528
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
|
|
2529
|
+
* User Guide</i>.</p>
|
|
2525
2530
|
*/
|
|
2526
2531
|
export interface BlueGreenDeployment {
|
|
2527
2532
|
/**
|
|
2528
|
-
* <p>The
|
|
2533
|
+
* <p>The unique identifier of the blue/green deployment.</p>
|
|
2529
2534
|
*/
|
|
2530
2535
|
BlueGreenDeploymentIdentifier?: string;
|
|
2531
2536
|
/**
|
|
@@ -2552,7 +2557,7 @@ export interface BlueGreenDeployment {
|
|
|
2552
2557
|
Tasks?: BlueGreenDeploymentTask[];
|
|
2553
2558
|
/**
|
|
2554
2559
|
* <p>The status of the blue/green deployment.</p>
|
|
2555
|
-
* <p>Values:</p>
|
|
2560
|
+
* <p>Valid Values:</p>
|
|
2556
2561
|
* <ul>
|
|
2557
2562
|
* <li>
|
|
2558
2563
|
* <p>
|
|
@@ -2591,11 +2596,13 @@ export interface BlueGreenDeployment {
|
|
|
2591
2596
|
*/
|
|
2592
2597
|
StatusDetails?: string;
|
|
2593
2598
|
/**
|
|
2594
|
-
* <p>
|
|
2599
|
+
* <p>The time when the blue/green deployment was created, in Universal Coordinated Time
|
|
2600
|
+
* (UTC).</p>
|
|
2595
2601
|
*/
|
|
2596
2602
|
CreateTime?: Date;
|
|
2597
2603
|
/**
|
|
2598
|
-
* <p>
|
|
2604
|
+
* <p>The time when the blue/green deployment was deleted, in Universal Coordinated Time
|
|
2605
|
+
* (UTC).</p>
|
|
2599
2606
|
*/
|
|
2600
2607
|
DeleteTime?: Date;
|
|
2601
2608
|
/**
|
|
@@ -2610,12 +2617,12 @@ export interface BlueGreenDeployment {
|
|
|
2610
2617
|
*/
|
|
2611
2618
|
export interface CreateBlueGreenDeploymentResponse {
|
|
2612
2619
|
/**
|
|
2613
|
-
* <p>
|
|
2614
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2615
|
-
*
|
|
2616
|
-
*
|
|
2617
|
-
*
|
|
2618
|
-
*
|
|
2620
|
+
* <p>Details about a blue/green deployment.</p>
|
|
2621
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2622
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon RDS User
|
|
2623
|
+
* Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2624
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
|
|
2625
|
+
* User Guide</i>.</p>
|
|
2619
2626
|
*/
|
|
2620
2627
|
BlueGreenDeployment?: BlueGreenDeployment;
|
|
2621
2628
|
}
|
|
@@ -5015,135 +5022,134 @@ export declare class CertificateNotFoundFault extends __BaseException {
|
|
|
5015
5022
|
*/
|
|
5016
5023
|
export interface CreateDBInstanceMessage {
|
|
5017
5024
|
/**
|
|
5018
|
-
* <p>The meaning of this parameter differs
|
|
5019
|
-
* <
|
|
5020
|
-
* <
|
|
5021
|
-
*
|
|
5022
|
-
*
|
|
5023
|
-
*
|
|
5024
|
-
*
|
|
5025
|
-
*
|
|
5026
|
-
*
|
|
5027
|
-
*
|
|
5028
|
-
*
|
|
5029
|
-
*
|
|
5030
|
-
*
|
|
5031
|
-
*
|
|
5032
|
-
* </
|
|
5033
|
-
* </
|
|
5034
|
-
*
|
|
5035
|
-
*
|
|
5036
|
-
*
|
|
5037
|
-
*
|
|
5038
|
-
*
|
|
5039
|
-
*
|
|
5040
|
-
*
|
|
5041
|
-
*
|
|
5042
|
-
*
|
|
5043
|
-
*
|
|
5044
|
-
*
|
|
5045
|
-
*
|
|
5046
|
-
*
|
|
5047
|
-
*
|
|
5048
|
-
*
|
|
5049
|
-
*
|
|
5050
|
-
*
|
|
5051
|
-
*
|
|
5052
|
-
*
|
|
5053
|
-
*
|
|
5054
|
-
*
|
|
5055
|
-
*
|
|
5056
|
-
*
|
|
5057
|
-
*
|
|
5058
|
-
*
|
|
5059
|
-
*
|
|
5060
|
-
*
|
|
5061
|
-
*
|
|
5062
|
-
*
|
|
5063
|
-
*
|
|
5064
|
-
*
|
|
5065
|
-
*
|
|
5066
|
-
*
|
|
5067
|
-
*
|
|
5068
|
-
*
|
|
5069
|
-
*
|
|
5070
|
-
*
|
|
5071
|
-
*
|
|
5072
|
-
* </
|
|
5073
|
-
* <
|
|
5074
|
-
*
|
|
5075
|
-
*
|
|
5076
|
-
*
|
|
5077
|
-
*
|
|
5078
|
-
* <
|
|
5079
|
-
* <p>
|
|
5080
|
-
*
|
|
5081
|
-
*
|
|
5082
|
-
*
|
|
5083
|
-
*
|
|
5084
|
-
*
|
|
5085
|
-
*
|
|
5086
|
-
*
|
|
5087
|
-
*
|
|
5088
|
-
*
|
|
5089
|
-
*
|
|
5090
|
-
*
|
|
5091
|
-
*
|
|
5092
|
-
*
|
|
5093
|
-
*
|
|
5094
|
-
*
|
|
5095
|
-
*
|
|
5096
|
-
* <p>
|
|
5097
|
-
*
|
|
5098
|
-
*
|
|
5099
|
-
*
|
|
5100
|
-
*
|
|
5101
|
-
*
|
|
5102
|
-
*
|
|
5103
|
-
*
|
|
5104
|
-
*
|
|
5105
|
-
*
|
|
5106
|
-
*
|
|
5107
|
-
*
|
|
5108
|
-
*
|
|
5109
|
-
*
|
|
5110
|
-
*
|
|
5111
|
-
*
|
|
5112
|
-
*
|
|
5113
|
-
*
|
|
5114
|
-
*
|
|
5115
|
-
*
|
|
5116
|
-
*
|
|
5117
|
-
*
|
|
5118
|
-
*
|
|
5119
|
-
*
|
|
5120
|
-
*
|
|
5121
|
-
*
|
|
5122
|
-
*
|
|
5123
|
-
* </
|
|
5124
|
-
*
|
|
5125
|
-
*
|
|
5126
|
-
*
|
|
5127
|
-
*
|
|
5128
|
-
*
|
|
5129
|
-
*
|
|
5130
|
-
*
|
|
5131
|
-
*
|
|
5132
|
-
*
|
|
5133
|
-
*
|
|
5134
|
-
*
|
|
5135
|
-
*
|
|
5136
|
-
*
|
|
5137
|
-
*
|
|
5138
|
-
*
|
|
5139
|
-
*
|
|
5140
|
-
*
|
|
5141
|
-
*
|
|
5142
|
-
*
|
|
5143
|
-
*
|
|
5144
|
-
*
|
|
5145
|
-
*
|
|
5146
|
-
* </dl>
|
|
5025
|
+
* <p>The meaning of this parameter differs according to the database engine you use.</p>
|
|
5026
|
+
* <p>
|
|
5027
|
+
* <b>MySQL</b>
|
|
5028
|
+
* </p>
|
|
5029
|
+
* <p>The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance.</p>
|
|
5030
|
+
* <p>Constraints:</p>
|
|
5031
|
+
* <ul>
|
|
5032
|
+
* <li>
|
|
5033
|
+
* <p>Must contain 1 to 64 letters or numbers.</p>
|
|
5034
|
+
* </li>
|
|
5035
|
+
* <li>
|
|
5036
|
+
* <p>Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9).</p>
|
|
5037
|
+
* </li>
|
|
5038
|
+
* <li>
|
|
5039
|
+
* <p>Can't be a word reserved by the specified database engine</p>
|
|
5040
|
+
* </li>
|
|
5041
|
+
* </ul>
|
|
5042
|
+
* <p>
|
|
5043
|
+
* <b>MariaDB</b>
|
|
5044
|
+
* </p>
|
|
5045
|
+
* <p>The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance.</p>
|
|
5046
|
+
* <p>Constraints:</p>
|
|
5047
|
+
* <ul>
|
|
5048
|
+
* <li>
|
|
5049
|
+
* <p>Must contain 1 to 64 letters or numbers.</p>
|
|
5050
|
+
* </li>
|
|
5051
|
+
* <li>
|
|
5052
|
+
* <p>Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9).</p>
|
|
5053
|
+
* </li>
|
|
5054
|
+
* <li>
|
|
5055
|
+
* <p>Can't be a word reserved by the specified database engine</p>
|
|
5056
|
+
* </li>
|
|
5057
|
+
* </ul>
|
|
5058
|
+
* <p>
|
|
5059
|
+
* <b>PostgreSQL</b>
|
|
5060
|
+
* </p>
|
|
5061
|
+
* <p>The name of the database to create when the DB instance is created. If this parameter isn't specified, a database named <code>postgres</code>
|
|
5062
|
+
* is created in the DB instance.</p>
|
|
5063
|
+
* <p>Constraints:</p>
|
|
5064
|
+
* <ul>
|
|
5065
|
+
* <li>
|
|
5066
|
+
* <p>Must contain 1 to 63 letters, numbers, or underscores.</p>
|
|
5067
|
+
* </li>
|
|
5068
|
+
* <li>
|
|
5069
|
+
* <p>Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9).</p>
|
|
5070
|
+
* </li>
|
|
5071
|
+
* <li>
|
|
5072
|
+
* <p>Can't be a word reserved by the specified database engine</p>
|
|
5073
|
+
* </li>
|
|
5074
|
+
* </ul>
|
|
5075
|
+
* <p>
|
|
5076
|
+
* <b>Oracle</b>
|
|
5077
|
+
* </p>
|
|
5078
|
+
* <p>The Oracle System ID (SID) of the created DB instance. If you don't specify a value,
|
|
5079
|
+
* the default value is <code>ORCL</code>. You can't specify the
|
|
5080
|
+
* string <code>null</code>, or any other reserved word, for <code>DBName</code>.</p>
|
|
5081
|
+
* <p>Default: <code>ORCL</code>
|
|
5082
|
+
* </p>
|
|
5083
|
+
* <p>Constraints:</p>
|
|
5084
|
+
* <ul>
|
|
5085
|
+
* <li>
|
|
5086
|
+
* <p>Can't be longer than 8 characters</p>
|
|
5087
|
+
* </li>
|
|
5088
|
+
* </ul>
|
|
5089
|
+
* <p>
|
|
5090
|
+
* <b>Amazon RDS Custom for Oracle</b>
|
|
5091
|
+
* </p>
|
|
5092
|
+
* <p>The Oracle System ID (SID) of the created RDS Custom DB instance.
|
|
5093
|
+
* If you don't specify a value, the default value is <code>ORCL</code> for non-CDBs and
|
|
5094
|
+
* <code>RDSCDB</code> for CDBs.</p>
|
|
5095
|
+
* <p>Default: <code>ORCL</code>
|
|
5096
|
+
* </p>
|
|
5097
|
+
* <p>Constraints:</p>
|
|
5098
|
+
* <ul>
|
|
5099
|
+
* <li>
|
|
5100
|
+
* <p>It must contain 1 to 8 alphanumeric characters.</p>
|
|
5101
|
+
* </li>
|
|
5102
|
+
* <li>
|
|
5103
|
+
* <p>It must contain a letter.</p>
|
|
5104
|
+
* </li>
|
|
5105
|
+
* <li>
|
|
5106
|
+
* <p>It can't be a word reserved by the database engine.</p>
|
|
5107
|
+
* </li>
|
|
5108
|
+
* </ul>
|
|
5109
|
+
* <p>
|
|
5110
|
+
* <b>Amazon RDS Custom for SQL Server</b>
|
|
5111
|
+
* </p>
|
|
5112
|
+
* <p>Not applicable. Must be null.</p>
|
|
5113
|
+
* <p>
|
|
5114
|
+
* <b>SQL Server</b>
|
|
5115
|
+
* </p>
|
|
5116
|
+
* <p>Not applicable. Must be null.</p>
|
|
5117
|
+
* <p>
|
|
5118
|
+
* <b>Amazon Aurora MySQL</b>
|
|
5119
|
+
* </p>
|
|
5120
|
+
* <p>The name of the database to create when the primary DB instance of the Aurora MySQL DB cluster is
|
|
5121
|
+
* created. If this parameter isn't specified for an Aurora MySQL DB cluster, no database is created
|
|
5122
|
+
* in the DB cluster.</p>
|
|
5123
|
+
* <p>Constraints:</p>
|
|
5124
|
+
* <ul>
|
|
5125
|
+
* <li>
|
|
5126
|
+
* <p>It must contain 1 to 64 alphanumeric characters.</p>
|
|
5127
|
+
* </li>
|
|
5128
|
+
* <li>
|
|
5129
|
+
* <p>It can't be a word reserved by the database engine.</p>
|
|
5130
|
+
* </li>
|
|
5131
|
+
* </ul>
|
|
5132
|
+
* <p>
|
|
5133
|
+
* <b>Amazon Aurora PostgreSQL</b>
|
|
5134
|
+
* </p>
|
|
5135
|
+
* <p>The name of the database to create when the primary DB instance of the Aurora PostgreSQL DB cluster is
|
|
5136
|
+
* created. If this parameter isn't specified for an Aurora PostgreSQL DB cluster,
|
|
5137
|
+
* a database named <code>postgres</code> is created in the DB cluster.</p>
|
|
5138
|
+
* <p>Constraints:</p>
|
|
5139
|
+
* <ul>
|
|
5140
|
+
* <li>
|
|
5141
|
+
* <p>It must contain 1 to 63 alphanumeric characters.</p>
|
|
5142
|
+
* </li>
|
|
5143
|
+
* <li>
|
|
5144
|
+
* <p>It must begin with a letter.
|
|
5145
|
+
* Subsequent characters can be letters, underscores, or digits
|
|
5146
|
+
* (0 to 9).</p>
|
|
5147
|
+
* </li>
|
|
5148
|
+
* <li>
|
|
5149
|
+
* <p>It can't be a word reserved by the
|
|
5150
|
+
* database engine.</p>
|
|
5151
|
+
* </li>
|
|
5152
|
+
* </ul>
|
|
5147
5153
|
*/
|
|
5148
5154
|
DBName?: string;
|
|
5149
5155
|
/**
|
|
@@ -6197,6 +6203,13 @@ export interface CreateDBInstanceMessage {
|
|
|
6197
6203
|
* User Guide</i>.</p>
|
|
6198
6204
|
*/
|
|
6199
6205
|
CACertificateIdentifier?: string;
|
|
6206
|
+
/**
|
|
6207
|
+
* <p>The Oracle system identifier (SID), which is the name of the Oracle database instance that
|
|
6208
|
+
* manages your database files. In this context, the term "Oracle database instance" refers exclusively
|
|
6209
|
+
* to the system global area (SGA) and Oracle background processes. If you don't specify a SID,
|
|
6210
|
+
* the value defaults to <code>RDSCDB</code>. The Oracle SID is also the name of your CDB.</p>
|
|
6211
|
+
*/
|
|
6212
|
+
DBSystemId?: string;
|
|
6200
6213
|
}
|
|
6201
6214
|
/**
|
|
6202
6215
|
* @public
|
|
@@ -6665,15 +6678,9 @@ export interface DBInstance {
|
|
|
6665
6678
|
*/
|
|
6666
6679
|
MasterUsername?: string;
|
|
6667
6680
|
/**
|
|
6668
|
-
* <p>
|
|
6669
|
-
*
|
|
6670
|
-
*
|
|
6671
|
-
* <p>For RDS for MariaDB, Microsoft SQL Server, MySQL, and PostgreSQL - The name of the initial database specified for this DB instance when it was created, if one was provided. This same name is returned for the life of the DB instance.</p>
|
|
6672
|
-
* </li>
|
|
6673
|
-
* <li>
|
|
6674
|
-
* <p>For RDS for Oracle - The Oracle System ID (SID) of the created DB instance. This value is only returned when the object returned is an Oracle DB instance.</p>
|
|
6675
|
-
* </li>
|
|
6676
|
-
* </ul>
|
|
6681
|
+
* <p>Contains the initial database name that you provided (if required) when you created
|
|
6682
|
+
* the DB instance. This name is returned for the life of your DB instance. For an RDS for
|
|
6683
|
+
* Oracle CDB instance, the name identifies the PDB rather than the CDB.</p>
|
|
6677
6684
|
*/
|
|
6678
6685
|
DBName?: string;
|
|
6679
6686
|
/**
|
|
@@ -7100,6 +7107,10 @@ export interface DBInstance {
|
|
|
7100
7107
|
* replica.</p>
|
|
7101
7108
|
*/
|
|
7102
7109
|
ReadReplicaSourceDBClusterIdentifier?: string;
|
|
7110
|
+
/**
|
|
7111
|
+
* <p>The progress of the storage optimization operation as a percentage.</p>
|
|
7112
|
+
*/
|
|
7113
|
+
PercentProgress?: string;
|
|
7103
7114
|
}
|
|
7104
7115
|
/**
|
|
7105
7116
|
* @public
|
|
@@ -9119,7 +9130,8 @@ export interface CreateOptionGroupResult {
|
|
|
9119
9130
|
*/
|
|
9120
9131
|
export interface DeleteBlueGreenDeploymentRequest {
|
|
9121
9132
|
/**
|
|
9122
|
-
* <p>The
|
|
9133
|
+
* <p>The unique identifier of the blue/green deployment to delete. This parameter isn't
|
|
9134
|
+
* case-sensitive.</p>
|
|
9123
9135
|
* <p>Constraints:
|
|
9124
9136
|
* </p>
|
|
9125
9137
|
* <ul>
|
|
@@ -9130,9 +9142,9 @@ export interface DeleteBlueGreenDeploymentRequest {
|
|
|
9130
9142
|
*/
|
|
9131
9143
|
BlueGreenDeploymentIdentifier: string | undefined;
|
|
9132
9144
|
/**
|
|
9133
|
-
* <p>
|
|
9134
|
-
*
|
|
9135
|
-
*
|
|
9145
|
+
* <p>Specifies whether to delete the resources in the green environment. You can't specify
|
|
9146
|
+
* this option if the blue/green deployment <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_BlueGreenDeployment.html">status</a> is
|
|
9147
|
+
* <code>SWITCHOVER_COMPLETED</code>.</p>
|
|
9136
9148
|
*/
|
|
9137
9149
|
DeleteTarget?: boolean;
|
|
9138
9150
|
}
|
|
@@ -9141,12 +9153,12 @@ export interface DeleteBlueGreenDeploymentRequest {
|
|
|
9141
9153
|
*/
|
|
9142
9154
|
export interface DeleteBlueGreenDeploymentResponse {
|
|
9143
9155
|
/**
|
|
9144
|
-
* <p>
|
|
9145
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
9146
|
-
*
|
|
9147
|
-
*
|
|
9148
|
-
*
|
|
9149
|
-
*
|
|
9156
|
+
* <p>Details about a blue/green deployment.</p>
|
|
9157
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
9158
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon RDS User
|
|
9159
|
+
* Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
9160
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
|
|
9161
|
+
* User Guide</i>.</p>
|
|
9150
9162
|
*/
|
|
9151
9163
|
BlueGreenDeployment?: BlueGreenDeployment;
|
|
9152
9164
|
}
|
|
@@ -9994,19 +10006,20 @@ export interface Filter {
|
|
|
9994
10006
|
*/
|
|
9995
10007
|
export interface DescribeBlueGreenDeploymentsRequest {
|
|
9996
10008
|
/**
|
|
9997
|
-
* <p>The blue/green deployment identifier. If this parameter
|
|
9998
|
-
* specific blue/green deployment
|
|
10009
|
+
* <p>The blue/green deployment identifier. If you specify this parameter, the response only
|
|
10010
|
+
* includes information about the specific blue/green deployment. This parameter isn't
|
|
10011
|
+
* case-sensitive.</p>
|
|
9999
10012
|
* <p>Constraints:</p>
|
|
10000
10013
|
* <ul>
|
|
10001
10014
|
* <li>
|
|
10002
|
-
* <p>
|
|
10015
|
+
* <p>Must match an existing blue/green deployment identifier.</p>
|
|
10003
10016
|
* </li>
|
|
10004
10017
|
* </ul>
|
|
10005
10018
|
*/
|
|
10006
10019
|
BlueGreenDeploymentIdentifier?: string;
|
|
10007
10020
|
/**
|
|
10008
10021
|
* <p>A filter that specifies one or more blue/green deployments to describe.</p>
|
|
10009
|
-
* <p>
|
|
10022
|
+
* <p>Valid Values:</p>
|
|
10010
10023
|
* <ul>
|
|
10011
10024
|
* <li>
|
|
10012
10025
|
* <p>
|
|
@@ -10037,9 +10050,10 @@ export interface DescribeBlueGreenDeploymentsRequest {
|
|
|
10037
10050
|
*/
|
|
10038
10051
|
Filters?: Filter[];
|
|
10039
10052
|
/**
|
|
10040
|
-
* <p>An optional pagination token provided by a previous
|
|
10041
|
-
*
|
|
10042
|
-
* up to the value specified by
|
|
10053
|
+
* <p>An optional pagination token provided by a previous
|
|
10054
|
+
* <code>DescribeBlueGreenDeployments</code> request. If you specify this parameter,
|
|
10055
|
+
* the response only includes records beyond the marker, up to the value specified by
|
|
10056
|
+
* <code>MaxRecords</code>.</p>
|
|
10043
10057
|
*/
|
|
10044
10058
|
Marker?: string;
|
|
10045
10059
|
/**
|
|
@@ -10047,7 +10061,15 @@ export interface DescribeBlueGreenDeploymentsRequest {
|
|
|
10047
10061
|
* If more records exist than the specified <code>MaxRecords</code> value,
|
|
10048
10062
|
* a pagination token called a marker is included in the response so you can retrieve the remaining results.</p>
|
|
10049
10063
|
* <p>Default: 100</p>
|
|
10050
|
-
* <p>Constraints
|
|
10064
|
+
* <p>Constraints:</p>
|
|
10065
|
+
* <ul>
|
|
10066
|
+
* <li>
|
|
10067
|
+
* <p>Must be a minimum of 20.</p>
|
|
10068
|
+
* </li>
|
|
10069
|
+
* <li>
|
|
10070
|
+
* <p>Can't exceed 100.</p>
|
|
10071
|
+
* </li>
|
|
10072
|
+
* </ul>
|
|
10051
10073
|
*/
|
|
10052
10074
|
MaxRecords?: number;
|
|
10053
10075
|
}
|
|
@@ -10056,11 +10078,12 @@ export interface DescribeBlueGreenDeploymentsRequest {
|
|
|
10056
10078
|
*/
|
|
10057
10079
|
export interface DescribeBlueGreenDeploymentsResponse {
|
|
10058
10080
|
/**
|
|
10059
|
-
* <p>
|
|
10081
|
+
* <p>A list of blue/green deployments in the current account and Amazon Web Services Region.</p>
|
|
10060
10082
|
*/
|
|
10061
10083
|
BlueGreenDeployments?: BlueGreenDeployment[];
|
|
10062
10084
|
/**
|
|
10063
|
-
* <p>A pagination token that can be used in a later
|
|
10085
|
+
* <p>A pagination token that can be used in a later
|
|
10086
|
+
* <code>DescribeBlueGreenDeployments</code> request.</p>
|
|
10064
10087
|
*/
|
|
10065
10088
|
Marker?: string;
|
|
10066
10089
|
}
|
|
@@ -4386,7 +4386,7 @@ export interface ModifyDBInstanceMessage {
|
|
|
4386
4386
|
*/
|
|
4387
4387
|
TdeCredentialPassword?: string;
|
|
4388
4388
|
/**
|
|
4389
|
-
* <p>The CA certificate identifier to use for the DB
|
|
4389
|
+
* <p>The CA certificate identifier to use for the DB instance's server certificate.</p>
|
|
4390
4390
|
* <p>This setting doesn't apply to RDS Custom DB instances.</p>
|
|
4391
4391
|
* <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
|
|
4392
4392
|
* instance</a> in the <i>Amazon RDS User Guide</i> and
|
|
@@ -5288,7 +5288,7 @@ export interface ModifyEventSubscriptionResult {
|
|
|
5288
5288
|
*/
|
|
5289
5289
|
export interface ModifyGlobalClusterMessage {
|
|
5290
5290
|
/**
|
|
5291
|
-
* <p>The
|
|
5291
|
+
* <p>The cluster identifier for the global cluster to modify. This parameter isn't case-sensitive.</p>
|
|
5292
5292
|
* <p>Constraints:</p>
|
|
5293
5293
|
* <ul>
|
|
5294
5294
|
* <li>
|
|
@@ -5298,18 +5298,18 @@ export interface ModifyGlobalClusterMessage {
|
|
|
5298
5298
|
*/
|
|
5299
5299
|
GlobalClusterIdentifier?: string;
|
|
5300
5300
|
/**
|
|
5301
|
-
* <p>The new cluster identifier for the global database cluster
|
|
5301
|
+
* <p>The new cluster identifier for the global database cluster.
|
|
5302
5302
|
* This value is stored as a lowercase string.</p>
|
|
5303
5303
|
* <p>Constraints:</p>
|
|
5304
5304
|
* <ul>
|
|
5305
5305
|
* <li>
|
|
5306
|
-
* <p>Must contain from 1 to 63 letters, numbers, or hyphens
|
|
5306
|
+
* <p>Must contain from 1 to 63 letters, numbers, or hyphens.</p>
|
|
5307
5307
|
* </li>
|
|
5308
5308
|
* <li>
|
|
5309
|
-
* <p>The first character must be a letter
|
|
5309
|
+
* <p>The first character must be a letter.</p>
|
|
5310
5310
|
* </li>
|
|
5311
5311
|
* <li>
|
|
5312
|
-
* <p>Can't end with a hyphen or contain two consecutive hyphens
|
|
5312
|
+
* <p>Can't end with a hyphen or contain two consecutive hyphens.</p>
|
|
5313
5313
|
* </li>
|
|
5314
5314
|
* </ul>
|
|
5315
5315
|
* <p>Example: <code>my-cluster2</code>
|
|
@@ -5317,14 +5317,13 @@ export interface ModifyGlobalClusterMessage {
|
|
|
5317
5317
|
*/
|
|
5318
5318
|
NewGlobalClusterIdentifier?: string;
|
|
5319
5319
|
/**
|
|
5320
|
-
* <p>
|
|
5320
|
+
* <p>Specifies whether to enable deletion protection for the global database cluster. The global database cluster
|
|
5321
5321
|
* can't be deleted when deletion protection is enabled.</p>
|
|
5322
5322
|
*/
|
|
5323
5323
|
DeletionProtection?: boolean;
|
|
5324
5324
|
/**
|
|
5325
5325
|
* <p>The version number of the database engine to which you want to upgrade.
|
|
5326
|
-
*
|
|
5327
|
-
* the next maintenance window unless <code>ApplyImmediately</code> is enabled.</p>
|
|
5326
|
+
* </p>
|
|
5328
5327
|
* <p>To list all of the available engine versions for <code>aurora-mysql</code> (for MySQL-based Aurora global databases), use the following command:</p>
|
|
5329
5328
|
* <p>
|
|
5330
5329
|
* <code>aws rds describe-db-engine-versions --engine aurora-mysql --query '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]'</code>
|
|
@@ -5336,9 +5335,9 @@ export interface ModifyGlobalClusterMessage {
|
|
|
5336
5335
|
*/
|
|
5337
5336
|
EngineVersion?: string;
|
|
5338
5337
|
/**
|
|
5339
|
-
* <p>
|
|
5340
|
-
* <p>Constraints:
|
|
5341
|
-
* <code>EngineVersion</code> parameter that
|
|
5338
|
+
* <p>Specifies whether to allow major version upgrades.</p>
|
|
5339
|
+
* <p>Constraints: Must be enabled if you specify a value for the
|
|
5340
|
+
* <code>EngineVersion</code> parameter that's a different major version than the global
|
|
5342
5341
|
* cluster's current version.</p>
|
|
5343
5342
|
* <p>If you upgrade the major version of a global database, the cluster and DB instance parameter
|
|
5344
5343
|
* groups are set to the default parameter groups for the new version. Apply any custom parameter
|
|
@@ -9049,7 +9048,7 @@ export interface StopDBInstanceAutomatedBackupsReplicationResult {
|
|
|
9049
9048
|
*/
|
|
9050
9049
|
export interface SwitchoverBlueGreenDeploymentRequest {
|
|
9051
9050
|
/**
|
|
9052
|
-
* <p>The blue/green deployment
|
|
9051
|
+
* <p>The unique identifier of the blue/green deployment.</p>
|
|
9053
9052
|
* <p>Constraints:</p>
|
|
9054
9053
|
* <ul>
|
|
9055
9054
|
* <li>
|
|
@@ -9059,7 +9058,8 @@ export interface SwitchoverBlueGreenDeploymentRequest {
|
|
|
9059
9058
|
*/
|
|
9060
9059
|
BlueGreenDeploymentIdentifier: string | undefined;
|
|
9061
9060
|
/**
|
|
9062
|
-
* <p>The amount of time, in seconds, for the switchover to complete
|
|
9061
|
+
* <p>The amount of time, in seconds, for the switchover to complete.</p>
|
|
9062
|
+
* <p>Default: 300</p>
|
|
9063
9063
|
* <p>If the switchover takes longer than the specified duration, then any changes are rolled back,
|
|
9064
9064
|
* and no changes are made to the environments.</p>
|
|
9065
9065
|
*/
|
|
@@ -9070,12 +9070,12 @@ export interface SwitchoverBlueGreenDeploymentRequest {
|
|
|
9070
9070
|
*/
|
|
9071
9071
|
export interface SwitchoverBlueGreenDeploymentResponse {
|
|
9072
9072
|
/**
|
|
9073
|
-
* <p>
|
|
9074
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
9075
|
-
*
|
|
9076
|
-
*
|
|
9077
|
-
*
|
|
9078
|
-
*
|
|
9073
|
+
* <p>Details about a blue/green deployment.</p>
|
|
9074
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
9075
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon RDS User
|
|
9076
|
+
* Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
9077
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
|
|
9078
|
+
* User Guide</i>.</p>
|
|
9079
9079
|
*/
|
|
9080
9080
|
BlueGreenDeployment?: BlueGreenDeployment;
|
|
9081
9081
|
}
|
|
@@ -515,6 +515,7 @@ export interface DBSnapshot {
|
|
|
515
515
|
SnapshotDatabaseTime?: Date;
|
|
516
516
|
SnapshotTarget?: string;
|
|
517
517
|
StorageThroughput?: number;
|
|
518
|
+
DBSystemId?: string;
|
|
518
519
|
}
|
|
519
520
|
export interface CopyDBSnapshotResult {
|
|
520
521
|
DBSnapshot?: DBSnapshot;
|
|
@@ -1230,6 +1231,7 @@ export interface CreateDBInstanceMessage {
|
|
|
1230
1231
|
ManageMasterUserPassword?: boolean;
|
|
1231
1232
|
MasterUserSecretKmsKeyId?: string;
|
|
1232
1233
|
CACertificateIdentifier?: string;
|
|
1234
|
+
DBSystemId?: string;
|
|
1233
1235
|
}
|
|
1234
1236
|
export interface DBInstanceRole {
|
|
1235
1237
|
RoleArn?: string;
|
|
@@ -1398,6 +1400,7 @@ export interface DBInstance {
|
|
|
1398
1400
|
MasterUserSecret?: MasterUserSecret;
|
|
1399
1401
|
CertificateDetails?: CertificateDetails;
|
|
1400
1402
|
ReadReplicaSourceDBClusterIdentifier?: string;
|
|
1403
|
+
PercentProgress?: string;
|
|
1401
1404
|
}
|
|
1402
1405
|
export interface CreateDBInstanceResult {
|
|
1403
1406
|
DBInstance?: DBInstance;
|
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.377.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,7 +21,7 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.377.0",
|
|
25
25
|
"@aws-sdk/credential-provider-node": "3.370.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.370.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.370.0",
|