We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Create fails if you instantiate a LogGroup with the default retentionDays value of 730:
730
const logGroup = new logs.LogGroup(this, 'Logs', { logGroupName: 'my-name', });
Error message: Invalid retention value. Valid values are: [1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 545, 731, 1827, 3653]
Invalid retention value. Valid values are: [1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 545, 731, 1827, 3653]
It should be set to 731.
731
The text was updated successfully, but these errors were encountered:
fix(aws-logs): set default log retention of LogGroup to 731 instead o…
71dc09f
…f 730 (#1344) Fixes #1343
sam-goodwin
Successfully merging a pull request may close this issue.
Create fails if you instantiate a LogGroup with the default retentionDays value of
730
:Error message:
Invalid retention value. Valid values are: [1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 545, 731, 1827, 3653]
It should be set to
731
.The text was updated successfully, but these errors were encountered: