Skip to content

Commit

Permalink
fix(aws-logs): Add supported log retention periods (aws#20346)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcelenza committed May 14, 2022
1 parent a0b29e9 commit beb30bd
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions packages/@aws-cdk/aws-logs/lib/log-group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,26 @@ export enum RetentionDays {
*/
FIVE_YEARS = 1827,

/**
* 6 years
*/
SIX_YEARS = 2192,

/**
* 7 years
*/
SEVEN_YEARS = 2557,

/**
* 8 years
*/
EIGHT_YEARS = 2922,

/**
* 9 years
*/
NINE_YEARS = 3288,

/**
* 10 years
*/
Expand Down

0 comments on commit beb30bd

Please sign in to comment.