Skip to content

Commit aea859a

Browse files
authored
docs(rds): correct default StorageType in DatabaseCluster (#34530)
### Issue # (if applicable) Closes #34376. ### Reason for this change ### Description of changes This PR corrects the JSDoc comment for the `storageType` property in `DatabaseCluster`. According to CloudFormation documentation, the default value for Aurora clusters is `aurora` (Aurora Standard), not `aurora-iopt1` (Aurora I/O Optimized) as incorrectly documented. https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storagetype ### Describe any new or updated permissions being added ### Description of how you validated changes ### Checklist - [ ] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 9aa7217 commit aea859a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/aws-cdk-lib/aws-rds/lib/cluster.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ interface DatabaseClusterBaseProps {
365365
/**
366366
* The storage type to be associated with the DB cluster.
367367
*
368-
* @default - DBClusterStorageType.AURORA_IOPT1
368+
* @default - DBClusterStorageType.AURORA
369369
*/
370370
readonly storageType?: DBClusterStorageType;
371371

0 commit comments

Comments
 (0)