Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
aea859a
docs(rds): correct default StorageType in DatabaseCluster (#34530)
ykethan May 22, 2025
95f69b5
chore(bedrock): add Claude4 Sonnet, Opus (#34531)
mazyu36 May 22, 2025
9e41154
fix(rds): fix incorrect import/export combination check in AuroraMysq…
k1e1n04 May 23, 2025
a434aed
feat(ecs-patterns): add minHealthyPercent and maxHealthyPercent props…
aemada-aws May 23, 2025
bf1bb75
Merge branch 'main' into merge-back/2.198.0
mergify[bot] May 23, 2025
d604089
chore(merge-back): 2.198.0 (#34535)
mergify[bot] May 23, 2025
ce88c76
feat(appconfig): deletion protection check for configuration profile …
badmintoncryer May 23, 2025
a3a0cf0
feat(events-targets): enable opt-in to use an IAM role for SnsTopic t…
mellevanderlinde May 23, 2025
0c653d3
feat(stepfunctions-tasks): bedrock createModelCustomizationJob integr…
badmintoncryer May 23, 2025
7fa3bbd
chore: npm-check-updates && yarn upgrade (#34513)
aws-cdk-automation May 23, 2025
ef5edf5
chore(ec2): update vpc README with vpc lookup method (#34544)
GavinZZ May 23, 2025
ca065bb
fix(elasticloadbalancingv2): add validation on application listeners …
wmattei May 24, 2025
04061f2
chore(ec2): update `PrefixList.fromLookup()` to expect the result fro…
Tietew May 26, 2025
b420033
feat(eks): `Addon` support configurationValues (#34061)
phuhung273 May 26, 2025
0bce2f0
revert(ec2): update `PrefixList.fromLookup()` to expect the result fr…
GavinZZ May 27, 2025
64662b2
feat(cloudformation): update L1 CloudFormation resource definitions (…
aws-cdk-automation May 27, 2025
0810f33
chore(release): 2.199.0
May 27, 2025
bba02df
chore: update analytics metadata blueprints
aws-cdk-automation May 27, 2025
1942bcd
chore: Update CHANGELOG.v2.md
alvazjor May 27, 2025
0c5930d
chore: Update CHANGELOG.v2.alpha.md
alvazjor May 27, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
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*
  • Loading branch information
ykethan authored May 22, 2025
commit aea859a4a12c33ae595d6c95ffa2a3bc80c6b4e0
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-rds/lib/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ interface DatabaseClusterBaseProps {
/**
* The storage type to be associated with the DB cluster.
*
* @default - DBClusterStorageType.AURORA_IOPT1
* @default - DBClusterStorageType.AURORA
*/
readonly storageType?: DBClusterStorageType;

Expand Down