Skip to content

Commit 8090631

Browse files
author
awstools
committed
feat(client-rds): Include Global Cluster Identifier in DBCluster if the DBCluster is a Global Cluster Member.
1 parent a99b352 commit 8090631

17 files changed

+57
-24
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M
259259
* // Value: "STRING_VALUE",
260260
* // },
261261
* // ],
262+
* // GlobalClusterIdentifier: "STRING_VALUE",
262263
* // GlobalWriteForwardingStatus: "enabled" || "disabled" || "enabling" || "disabling" || "unknown",
263264
* // GlobalWriteForwardingRequested: true || false,
264265
* // PendingModifiedValues: { // ClusterPendingModifiedValues

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ export interface DeleteDBClusterCommandOutput extends DeleteDBClusterResult, __M
177177
* // Value: "STRING_VALUE",
178178
* // },
179179
* // ],
180+
* // GlobalClusterIdentifier: "STRING_VALUE",
180181
* // GlobalWriteForwardingStatus: "enabled" || "disabled" || "enabling" || "disabling" || "unknown",
181182
* // GlobalWriteForwardingRequested: true || false,
182183
* // PendingModifiedValues: { // ClusterPendingModifiedValues

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ export interface DescribeDBClustersCommandOutput extends DBClusterMessage, __Met
184184
* // Value: "STRING_VALUE",
185185
* // },
186186
* // ],
187+
* // GlobalClusterIdentifier: "STRING_VALUE",
187188
* // GlobalWriteForwardingStatus: "enabled" || "disabled" || "enabling" || "disabling" || "unknown",
188189
* // GlobalWriteForwardingRequested: true || false,
189190
* // PendingModifiedValues: { // ClusterPendingModifiedValues

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ export interface DownloadDBLogFilePortionCommandOutput extends DownloadDBLogFile
3030
/**
3131
* <p>Downloads all or a portion of the specified log file, up to 1 MB in size.</p>
3232
* <p>This command doesn't apply to RDS Custom.</p>
33+
* <note>
34+
* <p>This operation uses resources on database instances. Because of this, we recommend publishing database logs to CloudWatch and then
35+
* using the GetLogEvents operation. For more information,
36+
* see <a href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetLogEvents.html">GetLogEvents</a> in the <i>Amazon CloudWatch Logs API Reference</i>.</p>
37+
* </note>
3338
* @example
3439
* Use a bare-bones client and the command you need to make an API call.
3540
* ```javascript

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ export interface FailoverDBClusterCommandOutput extends FailoverDBClusterResult,
183183
* // Value: "STRING_VALUE",
184184
* // },
185185
* // ],
186+
* // GlobalClusterIdentifier: "STRING_VALUE",
186187
* // GlobalWriteForwardingStatus: "enabled" || "disabled" || "enabling" || "disabling" || "unknown",
187188
* // GlobalWriteForwardingRequested: true || false,
188189
* // PendingModifiedValues: { // ClusterPendingModifiedValues

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ export interface ModifyDBClusterCommandOutput extends ModifyDBClusterResult, __M
237237
* // Value: "STRING_VALUE",
238238
* // },
239239
* // ],
240+
* // GlobalClusterIdentifier: "STRING_VALUE",
240241
* // GlobalWriteForwardingStatus: "enabled" || "disabled" || "enabling" || "disabling" || "unknown",
241242
* // GlobalWriteForwardingRequested: true || false,
242243
* // PendingModifiedValues: { // ClusterPendingModifiedValues

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ export interface PromoteReadReplicaDBClusterCommandOutput extends PromoteReadRep
164164
* // Value: "STRING_VALUE",
165165
* // },
166166
* // ],
167+
* // GlobalClusterIdentifier: "STRING_VALUE",
167168
* // GlobalWriteForwardingStatus: "enabled" || "disabled" || "enabling" || "disabling" || "unknown",
168169
* // GlobalWriteForwardingRequested: true || false,
169170
* // PendingModifiedValues: { // ClusterPendingModifiedValues

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ export interface RebootDBClusterCommandOutput extends RebootDBClusterResult, __M
174174
* // Value: "STRING_VALUE",
175175
* // },
176176
* // ],
177+
* // GlobalClusterIdentifier: "STRING_VALUE",
177178
* // GlobalWriteForwardingStatus: "enabled" || "disabled" || "enabling" || "disabling" || "unknown",
178179
* // GlobalWriteForwardingRequested: true || false,
179180
* // PendingModifiedValues: { // ClusterPendingModifiedValues

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ export interface RestoreDBClusterFromS3CommandOutput extends RestoreDBClusterFro
232232
* // Value: "STRING_VALUE",
233233
* // },
234234
* // ],
235+
* // GlobalClusterIdentifier: "STRING_VALUE",
235236
* // GlobalWriteForwardingStatus: "enabled" || "disabled" || "enabling" || "disabling" || "unknown",
236237
* // GlobalWriteForwardingRequested: true || false,
237238
* // PendingModifiedValues: { // ClusterPendingModifiedValues

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@ export interface RestoreDBClusterFromSnapshotCommandOutput
244244
* // Value: "STRING_VALUE",
245245
* // },
246246
* // ],
247+
* // GlobalClusterIdentifier: "STRING_VALUE",
247248
* // GlobalWriteForwardingStatus: "enabled" || "disabled" || "enabling" || "disabling" || "unknown",
248249
* // GlobalWriteForwardingRequested: true || false,
249250
* // PendingModifiedValues: { // ClusterPendingModifiedValues

0 commit comments

Comments
 (0)