interface LoggingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lambda.Mixins.CfnEventSourceMappingPropsMixin.LoggingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslambda/mixins#CfnEventSourceMappingPropsMixin_LoggingConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.lambda.mixins.CfnEventSourceMappingPropsMixin.LoggingConfigProperty |
Python | aws_cdk.mixins_preview.aws_lambda.mixins.CfnEventSourceMappingPropsMixin.LoggingConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lambda » mixins » CfnEventSourceMappingPropsMixin » 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 { mixins as lambda_mixins } from '@aws-cdk/mixins-preview/aws-lambda';
const loggingConfigProperty: lambda_mixins.CfnEventSourceMappingPropsMixin.LoggingConfigProperty = {
systemLogLevel: 'systemLogLevel',
};
Properties
| Name | Type | Description |
|---|---|---|
| system | string | Set this property to filter the system logs for your function that Lambda sends to CloudWatch. |
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