@@ -976,17 +976,17 @@ export interface DescribeDBClusterParametersMessage {
976
976
* <ul>
977
977
* <li>
978
978
* <p>
979
- * <code>customer </code>
979
+ * <code>engine-default </code>
980
980
* </p>
981
981
* </li>
982
982
* <li>
983
983
* <p>
984
- * <code>engine </code>
984
+ * <code>system </code>
985
985
* </p>
986
986
* </li>
987
987
* <li>
988
988
* <p>
989
- * <code>service </code>
989
+ * <code>user </code>
990
990
* </p>
991
991
* </li>
992
992
* </ul>
@@ -995,7 +995,8 @@ export interface DescribeDBClusterParametersMessage {
995
995
Source?: string | undefined;
996
996
997
997
/**
998
- * <p>This parameter isn't currently supported.</p>
998
+ * <p>A filter that specifies one or more DB cluster parameters to describe.</p>
999
+ * <p>The only supported filter is <code>parameter-name</code>. The results list only includes information about the DB cluster parameters with these names.</p>
999
1000
* @public
1000
1001
*/
1001
1002
Filters?: Filter[] | undefined;
@@ -2076,7 +2077,8 @@ export interface DescribeDBParametersMessage {
2076
2077
Source?: string | undefined;
2077
2078
2078
2079
/**
2079
- * <p>This parameter isn't currently supported.</p>
2080
+ * <p>A filter that specifies one or more DB parameters to describe.</p>
2081
+ * <p>The only supported filter is <code>parameter-name</code>. The results list only includes information about the DB parameters with these names.</p>
2080
2082
* @public
2081
2083
*/
2082
2084
Filters?: Filter[] | undefined;
@@ -4398,7 +4400,8 @@ export interface DescribeEngineDefaultParametersMessage {
4398
4400
DBParameterGroupFamily: string | undefined;
4399
4401
4400
4402
/**
4401
- * <p>This parameter isn't currently supported.</p>
4403
+ * <p>A filter that specifies one or more parameters to describe.</p>
4404
+ * <p>The only supported filter is <code>parameter-name</code>. The results list only includes information about the parameters with these names.</p>
4402
4405
* @public
4403
4406
*/
4404
4407
Filters?: Filter[] | undefined;
@@ -7413,12 +7416,50 @@ export interface ModifyCustomDBEngineVersionMessage {
7413
7416
export interface CloudwatchLogsExportConfiguration {
7414
7417
/**
7415
7418
* <p>The list of log types to enable.</p>
7419
+ * <p>The following values are valid for each DB engine:</p>
7420
+ * <ul>
7421
+ * <li>
7422
+ * <p>Aurora MySQL - <code>audit | error | general | slowquery</code>
7423
+ * </p>
7424
+ * </li>
7425
+ * <li>
7426
+ * <p>Aurora PostgreSQL - <code>postgresql</code>
7427
+ * </p>
7428
+ * </li>
7429
+ * <li>
7430
+ * <p>RDS for MySQL - <code>error | general | slowquery</code>
7431
+ * </p>
7432
+ * </li>
7433
+ * <li>
7434
+ * <p>RDS for PostgreSQL - <code>postgresql | upgrade</code>
7435
+ * </p>
7436
+ * </li>
7437
+ * </ul>
7416
7438
* @public
7417
7439
*/
7418
7440
EnableLogTypes?: string[] | undefined;
7419
7441
7420
7442
/**
7421
7443
* <p>The list of log types to disable.</p>
7444
+ * <p>The following values are valid for each DB engine:</p>
7445
+ * <ul>
7446
+ * <li>
7447
+ * <p>Aurora MySQL - <code>audit | error | general | slowquery</code>
7448
+ * </p>
7449
+ * </li>
7450
+ * <li>
7451
+ * <p>Aurora PostgreSQL - <code>postgresql</code>
7452
+ * </p>
7453
+ * </li>
7454
+ * <li>
7455
+ * <p>RDS for MySQL - <code>error | general | slowquery</code>
7456
+ * </p>
7457
+ * </li>
7458
+ * <li>
7459
+ * <p>RDS for PostgreSQL - <code>postgresql | upgrade</code>
7460
+ * </p>
7461
+ * </li>
7462
+ * </ul>
7422
7463
* @public
7423
7464
*/
7424
7465
DisableLogTypes?: string[] | undefined;
@@ -7863,7 +7904,7 @@ export interface ModifyDBClusterMessage {
7863
7904
/**
7864
7905
* <p>Specifies whether minor engine upgrades are applied automatically to the DB cluster during the maintenance window.
7865
7906
* By default, minor engine upgrades are applied automatically.</p>
7866
- * <p>Valid for Cluster Type: Multi-AZ DB clusters only </p>
7907
+ * <p>Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters</p>
7867
7908
* @public
7868
7909
*/
7869
7910
AutoMinorVersionUpgrade?: boolean | undefined;
@@ -7895,7 +7936,13 @@ export interface ModifyDBClusterMessage {
7895
7936
MonitoringRoleArn?: string | undefined;
7896
7937
7897
7938
/**
7898
- * <p>Specifies the mode of Database Insights to enable for the cluster.</p>
7939
+ * <p>Specifies the mode of Database Insights to enable for the DB cluster.</p>
7940
+ * <p>If you change the value from <code>standard</code> to <code>advanced</code>, you must set the
7941
+ * <code>PerformanceInsightsEnabled</code> parameter to <code>true</code> and the
7942
+ * <code>PerformanceInsightsRetentionPeriod</code> parameter to 465.</p>
7943
+ * <p>If you change the value from <code>advanced</code> to <code>standard</code>, you must
7944
+ * set the <code>PerformanceInsightsEnabled</code> parameter to <code>false</code>.</p>
7945
+ * <p>Valid for Cluster Type: Aurora DB clusters only</p>
7899
7946
* @public
7900
7947
*/
7901
7948
DatabaseInsightsMode?: DatabaseInsightsMode | undefined;
@@ -7915,14 +7962,14 @@ export interface ModifyDBClusterMessage {
7915
7962
* <p>If you don't specify a value for <code>PerformanceInsightsKMSKeyId</code>, then Amazon RDS
7916
7963
* uses your default KMS key. There is a default KMS key for your Amazon Web Services account.
7917
7964
* Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.</p>
7918
- * <p>Valid for Cluster Type: Multi-AZ DB clusters only </p>
7965
+ * <p>Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters</p>
7919
7966
* @public
7920
7967
*/
7921
7968
PerformanceInsightsKMSKeyId?: string | undefined;
7922
7969
7923
7970
/**
7924
7971
* <p>The number of days to retain Performance Insights data.</p>
7925
- * <p>Valid for Cluster Type: Multi-AZ DB clusters only </p>
7972
+ * <p>Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters</p>
7926
7973
* <p>Valid Values:</p>
7927
7974
* <ul>
7928
7975
* <li>
@@ -9079,7 +9126,11 @@ export interface ModifyDBInstanceMessage {
9079
9126
EnableIAMDatabaseAuthentication?: boolean | undefined;
9080
9127
9081
9128
/**
9082
- * <p>Specifies the mode of Database Insights to enable for the instance.</p>
9129
+ * <p>Specifies the mode of Database Insights to enable for the DB instance.</p>
9130
+ * <p>This setting only applies to Amazon Aurora DB instances.</p>
9131
+ * <note>
9132
+ * <p>Currently, this value is inherited from the DB cluster and can't be changed.</p>
9133
+ * </note>
9083
9134
* @public
9084
9135
*/
9085
9136
DatabaseInsightsMode?: DatabaseInsightsMode | undefined;
@@ -9137,6 +9188,28 @@ export interface ModifyDBInstanceMessage {
9137
9188
* <p>A change to the <code>CloudwatchLogsExportConfiguration</code> parameter is always applied to the DB instance
9138
9189
* immediately. Therefore, the <code>ApplyImmediately</code> parameter has no effect.</p>
9139
9190
* <p>This setting doesn't apply to RDS Custom DB instances.</p>
9191
+ * <p>The following values are valid for each DB engine:</p>
9192
+ * <ul>
9193
+ * <li>
9194
+ * <p>Aurora MySQL - <code>audit | error | general | slowquery</code>
9195
+ * </p>
9196
+ * </li>
9197
+ * <li>
9198
+ * <p>Aurora PostgreSQL - <code>postgresql</code>
9199
+ * </p>
9200
+ * </li>
9201
+ * <li>
9202
+ * <p>RDS for MySQL - <code>error | general | slowquery</code>
9203
+ * </p>
9204
+ * </li>
9205
+ * <li>
9206
+ * <p>RDS for PostgreSQL - <code>postgresql | upgrade</code>
9207
+ * </p>
9208
+ * </li>
9209
+ * </ul>
9210
+ * <p>For more information about exporting CloudWatch Logs for Amazon RDS, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">
9211
+ * Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon RDS User Guide</i>.</p>
9212
+ * <p>For more information about exporting CloudWatch Logs for Amazon Aurora, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon Aurora User Guide</i>.</p>
9140
9213
* @public
9141
9214
*/
9142
9215
CloudwatchLogsExportConfiguration?: CloudwatchLogsExportConfiguration | undefined;
@@ -13198,6 +13271,7 @@ export interface RestoreDBInstanceFromDBSnapshotMessage {
13198
13271
/**
13199
13272
* <p>The amount of storage (in gibibytes) to allocate initially for the DB instance. Follow the allocation rules specified in
13200
13273
* CreateDBInstance.</p>
13274
+ * <p>This setting isn't valid for RDS for SQL Server.</p>
13201
13275
* <note>
13202
13276
* <p>Be sure to allocate enough storage for your new DB instance so that the restore operation can succeed. You can also
13203
13277
* allocate additional storage for future growth.</p>
@@ -13293,6 +13367,7 @@ export interface RestoreDBInstanceFromS3Message {
13293
13367
/**
13294
13368
* <p>The amount of storage (in gibibytes) to allocate initially for the DB instance.
13295
13369
* Follow the allocation rules specified in <code>CreateDBInstance</code>.</p>
13370
+ * <p>This setting isn't valid for RDS for SQL Server.</p>
13296
13371
* <note>
13297
13372
* <p>Be sure to allocate enough storage for your new DB instance so that the restore operation can succeed.
13298
13373
* You can also allocate additional storage for future growth.</p>
@@ -13678,7 +13753,11 @@ export interface RestoreDBInstanceFromS3Message {
13678
13753
S3IngestionRoleArn: string | undefined;
13679
13754
13680
13755
/**
13681
- * <p>Specifies the mode of Database Insights to enable for the instance.</p>
13756
+ * <p>Specifies the mode of Database Insights to enable for the DB instance.</p>
13757
+ * <p>This setting only applies to Amazon Aurora DB instances.</p>
13758
+ * <note>
13759
+ * <p>Currently, this value is inherited from the DB cluster and can't be changed.</p>
13760
+ * </note>
13682
13761
* @public
13683
13762
*/
13684
13763
DatabaseInsightsMode?: DatabaseInsightsMode | undefined;
@@ -14561,6 +14640,7 @@ export interface RestoreDBInstanceToPointInTimeMessage {
14561
14640
/**
14562
14641
* <p>The amount of storage (in gibibytes) to allocate initially for the DB instance.
14563
14642
* Follow the allocation rules specified in <code>CreateDBInstance</code>.</p>
14643
+ * <p>This setting isn't valid for RDS for SQL Server.</p>
14564
14644
* <note>
14565
14645
* <p>Be sure to allocate enough storage for your new DB instance so that the restore operation can succeed.
14566
14646
* You can also allocate additional storage for future growth.</p>
0 commit comments