Skip to content

Commit 679fd29

Browse files
author
awstools
committed
feat(client-rds): Adds DefaultCertificateForNewLaunches field in the DescribeCertificates API response.
1 parent 441ce01 commit 679fd29

File tree

6 files changed

+216
-303
lines changed

6 files changed

+216
-303
lines changed

clients/client-rds/src/commands/DescribeCertificatesCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export interface DescribeCertificatesCommandOutput extends CertificateMessage, _
3737

3838
/**
3939
* @public
40-
* <p>Lists the set of CA certificates provided by Amazon RDS for this Amazon Web Services account.</p>
40+
* <p>Lists the set of certificate authority (CA) certificates provided by Amazon RDS for this Amazon Web Services account.</p>
4141
* <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
4242
* instance</a> in the <i>Amazon RDS User Guide</i> and
4343
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html">
@@ -65,6 +65,7 @@ export interface DescribeCertificatesCommandOutput extends CertificateMessage, _
6565
* const command = new DescribeCertificatesCommand(input);
6666
* const response = await client.send(command);
6767
* // { // CertificateMessage
68+
* // DefaultCertificateForNewLaunches: "STRING_VALUE",
6869
* // Certificates: [ // CertificateList
6970
* // { // Certificate
7071
* // CertificateIdentifier: "STRING_VALUE",

clients/client-rds/src/commands/RestoreDBInstanceToPointInTimeCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export interface RestoreDBInstanceToPointInTimeCommandOutput
4242

4343
/**
4444
* @public
45-
* <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>
45+
* <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>
4646
* <p>The target database is created with most of the original configuration, but in a
4747
* system-selected Availability Zone, with the default security group, the default subnet
4848
* group, and the default DB parameter group. By default, the new DB instance is created as

clients/client-rds/src/models/models_0.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13202,6 +13202,14 @@ export interface Certificate {
1320213202
* <p>Data returned by the <b>DescribeCertificates</b> action.</p>
1320313203
*/
1320413204
export interface CertificateMessage {
13205+
/**
13206+
* @public
13207+
* <p>The default root CA for new databases created by your Amazon Web Services account. This is either the root CA override
13208+
* 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
13209+
* <code>ModifyCertificates</code> operation.</p>
13210+
*/
13211+
DefaultCertificateForNewLaunches?: string;
13212+
1320513213
/**
1320613214
* @public
1320713215
* <p>The list of <code>Certificate</code> objects for the Amazon Web Services account.</p>

0 commit comments

Comments
 (0)