Skip to content

Instantly share code, notes, and snippets.

@mgjam
Created November 1, 2019 06:39
Show Gist options
  • Save mgjam/0f03b376593397aa75269f242c007fd9 to your computer and use it in GitHub Desktop.
Save mgjam/0f03b376593397aa75269f242c007fd9 to your computer and use it in GitHub Desktop.
private static createLogGroup(
scope: cdk.Construct,
lambdaFunction: lambda.Function
) {
new logs.LogGroup(scope, 'LogGroup', {
logGroupName: `/aws/lambda/${lambdaFunction.functionName}`, // Autogenerated log group name
retention: logs.RetentionDays.ONE_WEEK,
removalPolicy: cdk.RemovalPolicy.DESTROY
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment