c3 icon indicating copy to clipboard operation
c3 copied to clipboard

retention is mandatory param at LogGroups

Open fogfish opened this issue 5 years ago • 0 comments

Fail with error Missing required key 'retentionInDays' in params

new c3.logs.LogGroup(stack, 'MyLogs', {
  kmsKey,
  logGroupName: 'MyLogs',
  removalPolicy,
})

Ok:

new c3.logs.LogGroup(stack, 'MyLogs', {
  kmsKey,
  logGroupName: 'MyLogs',
  removalPolicy,
  retention: logs.RetentionDays.ONE_DAY,
})

fogfish avatar Oct 06 '20 10:10 fogfish