-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(rds): Make most DatabaseClusterAttributes properties optional #10291
Conversation
The `IDatabaseCluster` interface has a lot of properties, putting a large strain on users who want to import clusters via `DatabaseClusterAttributes`. This alters the attributes interface to contain almost exclusively optional props, and lazily throw if any missing properties are accessed. I believe this is a backwards-compatible change, but someone please double-check me on that. fixes #3587
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Love it!
Leaving it with do-not-merge
to let @shivlaks chime in, but I'm totally fine with pushing this as-is.
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM as well!
*/ | ||
readonly port: number; | ||
readonly clusterIdentifier: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any reason we wouldn't want to just call it clusterId
- don't think we expand it out to identifier
in many places do we?
*/ | ||
readonly instanceIdentifiers: string[]; | ||
readonly instanceIdentifiers?: string[]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
was this why we went with clusterIdentifier
for the property name, or was there another reason?
The
IDatabaseCluster
interface has a lot of properties, putting a large strainon users who want to import clusters via
DatabaseClusterAttributes
. Thisalters the attributes interface to contain almost exclusively optional props,
and lazily throw if any missing properties are accessed.
I believe this is a backwards-compatible change, but someone please double-check
me on that.
fixes #3587
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license