Skip to content

Commit f03a9ee

Browse files
author
awstools
committedMay 30, 2024
docs(client-rds): Updates Amazon RDS documentation for Aurora Postgres DBname.
1 parent 88273ba commit f03a9ee

File tree

4 files changed

+22
-18
lines changed

4 files changed

+22
-18
lines changed
 

‎clients/client-rds/src/commands/AddTagsToResourceCommand.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ export interface AddTagsToResourceCommandOutput extends __MetadataBearer {}
2828

2929
/**
3030
* <p>Adds metadata tags to an Amazon RDS resource. These tags can also be used with cost allocation reporting to track cost associated with Amazon RDS resources, or used in a Condition statement in an IAM policy for Amazon RDS.</p>
31-
* <p>For an overview on tagging Amazon RDS resources,
32-
* see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.Tagging.html">Tagging Amazon RDS Resources</a>.</p>
31+
* <p>For an overview on tagging your relational database resources,
32+
* see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS Resources</a>
33+
* or <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS Resources</a>.
34+
* </p>
3335
* @example
3436
* Use a bare-bones client and the command you need to make an API call.
3537
* ```javascript

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

+8-10
Original file line numberDiff line numberDiff line change
@@ -571,9 +571,10 @@ export class SubscriptionNotFoundFault extends __BaseException {
571571

572572
/**
573573
* <p>Metadata assigned to an Amazon RDS resource consisting of a key-value pair.</p>
574-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging
575-
* Amazon RDS Resources</a> in the <i>Amazon RDS User Guide.</i>
576-
* </p>
574+
* <p>For more information, see
575+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS Resources</a> in the <i>Amazon RDS User Guide</i>
576+
* or <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS Resources</a> in the <i>Amazon Aurora User Guide</i>.
577+
* </p>
577578
* @public
578579
*/
579580
export interface Tag {
@@ -4393,9 +4394,8 @@ export interface CreateDBClusterMessage {
43934394
CharacterSetName?: string;
43944395

43954396
/**
4396-
* <p>The name for your database of up to 64 alphanumeric characters. If you don't
4397-
* provide a name, Amazon RDS doesn't create a database in the DB cluster you are
4398-
* creating.</p>
4397+
* <p>The name for your database of up to 64 alphanumeric characters.
4398+
* A database named <code>postgres</code> is always created. If this parameter is specified, an additional database with this name is created.</p>
43994399
* <p>Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters</p>
44004400
* @public
44014401
*/
@@ -7074,8 +7074,7 @@ export interface CreateDBInstanceMessage {
70747074
* <dt>Amazon Aurora PostgreSQL</dt>
70757075
* <dd>
70767076
* <p>The name of the database to create when the primary DB instance of the Aurora PostgreSQL DB cluster is
7077-
* created. If this parameter isn't specified for an Aurora PostgreSQL DB cluster,
7078-
* a database named <code>postgres</code> is created in the DB cluster.</p>
7077+
* created. A database named <code>postgres</code> is always created. If this parameter is specified, an additional database with this name is created.</p>
70797078
* <p>Constraints:</p>
70807079
* <ul>
70817080
* <li>
@@ -7182,8 +7181,7 @@ export interface CreateDBInstanceMessage {
71827181
* </dd>
71837182
* <dt>RDS for PostgreSQL</dt>
71847183
* <dd>
7185-
* <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>
7186-
* is created in the DB instance.</p>
7184+
* <p>The name of the database to create when the DB instance is created. A database named <code>postgres</code> is always created. If this parameter is specified, an additional database with this name is created.</p>
71877185
* <p>Constraints:</p>
71887186
* <ul>
71897187
* <li>

‎clients/client-rds/src/models/models_1.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -13413,7 +13413,11 @@ export interface RestoreDBInstanceFromS3Message {
1341313413
S3Prefix?: string;
1341413414

1341513415
/**
13416-
* <p>An Amazon Web Services Identity and Access Management (IAM) role to allow Amazon RDS to access your Amazon S3 bucket.</p>
13416+
* <p>An Amazon Web Services Identity and Access Management (IAM) role with a trust policy and a permissions policy that allows Amazon RDS to access your Amazon S3 bucket.
13417+
* For information about this role,
13418+
* see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Procedural.Importing.html#MySQL.Procedural.Importing.Enabling.IAM">
13419+
* Creating an IAM role manually</a> in the <i>Amazon RDS User Guide.</i>
13420+
* </p>
1341713421
* @public
1341813422
*/
1341913423
S3IngestionRoleArn: string | undefined;

0 commit comments

Comments
 (0)
Please sign in to comment.