Define a Log Stream in a Log Group.
import { LogStream } from 'aws-cdk-lib/aws-logs';Or use the module namespace:
import * as logs from 'aws-cdk-lib/aws-logs';
// logs.LogStreamConfiguration passed to the constructor as LogStreamProps.
logGroupRequiredILogGroupRefThe log group to create a log stream for.
logStreamNameOptionalstringThe name of the log stream to create. The name must be unique within the log group.
Default: Automatically generated
removalPolicyOptionalRemovalPolicyDetermine what happens when the log stream resource is removed from the app. Normally you want to retain the log stream so you can diagnose issues from logs even after a deployment that no longer includes the log stream. The date-based retention policy of your log group will age out the logs after a certain time.
Default: RemovalPolicy.Retain
Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to Newsletteraws-logs