interface LoggingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Lambda.CfnFunction.LoggingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslambda#CfnFunction_LoggingConfigProperty |
Java | software.amazon.awscdk.services.lambda.CfnFunction.LoggingConfigProperty |
Python | aws_cdk.aws_lambda.CfnFunction.LoggingConfigProperty |
TypeScript | aws-cdk-lib » aws_lambda » CfnFunction » LoggingConfigProperty |
The function's Amazon CloudWatch Logs configuration settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lambda as lambda } from 'aws-cdk-lib';
const loggingConfigProperty: lambda.CfnFunction.LoggingConfigProperty = {
applicationLogLevel: 'applicationLogLevel',
logFormat: 'logFormat',
logGroup: 'logGroup',
systemLogLevel: 'systemLogLevel',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | Set this property to filter the application logs for your function that Lambda sends to CloudWatch. |
| log | string | The format in which Lambda sends your function's application and system logs to CloudWatch. |
| log | string | The name of the Amazon CloudWatch log group the function sends logs to. |
| system | string | Set this property to filter the system logs for your function that Lambda sends to CloudWatch. |
applicationLogLevel?
Type:
string
(optional)
Set this property to filter the application logs for your function that Lambda sends to CloudWatch.
Lambda only sends application logs at the selected level of detail and lower, where TRACE is the highest level and FATAL is the lowest.
logFormat?
Type:
string
(optional)
The format in which Lambda sends your function's application and system logs to CloudWatch.
Select between plain text and structured JSON.
logGroup?
Type:
string
(optional)
The name of the Amazon CloudWatch log group the function sends logs to.
By default, Lambda functions send logs to a default log group named /aws/lambda/<function name> . To use a different log group, enter an existing log group or enter a new log group name.
systemLogLevel?
Type:
string
(optional)
Set this property to filter the system logs for your function that Lambda sends to CloudWatch.
Lambda only sends system logs at the selected level of detail and lower, where DEBUG is the highest level and WARN is the lowest.

.NET
Go
Java
Python
TypeScript