-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
feat(rds): database instance - auto scale allocated storage #6788
feat(rds): database instance - auto scale allocated storage #6788
Conversation
…y method fixes#6390
Co-Authored-By: Niranjan Jayakar <16217941+nija-at@users.noreply.github.com>
Co-Authored-By: Niranjan Jayakar <16217941+nija-at@users.noreply.github.com>
Co-Authored-By: Niranjan Jayakar <16217941+nija-at@users.noreply.github.com>
Co-Authored-By: Niranjan Jayakar <16217941+nija-at@users.noreply.github.com>
Co-Authored-By: Niranjan Jayakar <16217941+nija-at@users.noreply.github.com>
…scope take the priority in case method options and default options are passed
…/codebuild/output/src052287507/src/github.com/aws/aws-cdk/packages/@aws-cdk/aws-apigateway/lib/method.ts:80:87 - trailing whitespace
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
packages/@aws-cdk/aws-rds/README.md
Outdated
|
||
To use the storage auto scaling option of RDS you can specify the maximum allocated storage. | ||
This is the upper limit to which RDS can automatically scale the storage. More info can be found | ||
[here](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-maxallocatedstorage) | ||
Example for max storage configuration: | ||
```ts | ||
const instance = new DatabaseInstance(stack, 'Instance', { | ||
engine: rds.DatabaseInstanceEngine.ORACLE_SE1, | ||
instanceClass: ec2.InstanceType.of(ec2.InstanceClass.BURSTABLE2, ec2.InstanceSize.SMALL), | ||
masterUsername: 'syscdk', | ||
vpc, | ||
maxAllocatedStorage: 200 | ||
}); | ||
``` | ||
|
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.
Can we move this to line 60 instead?
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.
Moved it to 61.
Co-Authored-By: Niranjan Jayakar <nija@amazon.com>
Co-Authored-By: Niranjan Jayakar <nija@amazon.com>
Co-Authored-By: Niranjan Jayakar <nija@amazon.com>
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
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 |
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). |
Commit Message
feat(rds): database instance - auto scale allocated storage (#6788)
fixes #6666
End Commit Message
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license