-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
aws-neptune: no CDK for Neptune Serverless #26428
Comments
Hi @MieladN , thanks for coming up with this feature in existing Neptune construct in CDK. For the time being, you could follow this article to convert DB instance to serverless. We would be happy to review PRs from the community in this context. |
Adds support for [Neptune serverless](https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html). Example of how to launch a Neptune serverless cluster: ``` new DatabaseCluster(stack, 'Database', { vpc, instanceType: InstanceType.SERVERLESS, clusterParameterGroup, removalPolicy: cdk.RemovalPolicy.DESTROY, serverlessScalingConfiguration: { minCapacity: 1, maxCapacity: 5, }, }); ``` Closes #26428 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
|
Adds support for [Neptune serverless](https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html). Example of how to launch a Neptune serverless cluster: ``` new DatabaseCluster(stack, 'Database', { vpc, instanceType: InstanceType.SERVERLESS, clusterParameterGroup, removalPolicy: cdk.RemovalPolicy.DESTROY, serverlessScalingConfiguration: { minCapacity: 1, maxCapacity: 5, }, }); ``` Closes aws#26428 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Describe the feature
On the 26th of October 2022, AWS released serverless Neptune (a graph database). About 2 months ago, AWS released Cloudformation support for serverless Neptune, which means now serverless Neptune can be made with Cloudformation files.
It would be pretty useful to create constructs for serverless Neptune. Currently these do not exist.
Use Case
At present, you can only choose instances when building Neptune with CDK. There is no ability to go serverless. Neptune is pretty costly, so even at its smallest size, it costs a pretty penny. Having the ability to write the configuration for serverless Neptune in CDK would be a lifesaver (& prevent us from constantly using the GUI). The benefits of IaC are obviously innumerable.
Proposed Solution
No response
Other Information
No response
Acknowledgements
CDK version used
2.87.0
Environment details (OS name and version, etc.)
Windows/Mac/Linux
The text was updated successfully, but these errors were encountered: