Module: AWSCDK::Lambda::ApplicationLogLevel

Defined in:
lambda/application_log_level.rb

Overview

Lambda service automatically captures logs generated by the function code (known as application logs) and sends these logs to a default CloudWatch log group named after the Lambda function.

Constant Summary collapse

INFO =
Deprecated.
Note:

Default:

Lambda will capture only logs at info level.

Jsii::Enum.new("aws-cdk-lib.aws_lambda.ApplicationLogLevel", "INFO")
DEBUG =
Deprecated.
Note:

Default:

Lambda will capture only logs at debug level.

Jsii::Enum.new("aws-cdk-lib.aws_lambda.ApplicationLogLevel", "DEBUG")
WARN =
Deprecated.
Note:

Default:

Lambda will capture only logs at warn level.

Jsii::Enum.new("aws-cdk-lib.aws_lambda.ApplicationLogLevel", "WARN")
TRACE =
Deprecated.
Note:

Default:

Lambda will capture only logs at trace level.

Jsii::Enum.new("aws-cdk-lib.aws_lambda.ApplicationLogLevel", "TRACE")
ERROR =
Deprecated.
Note:

Default:

Lambda will capture only logs at error level.

Jsii::Enum.new("aws-cdk-lib.aws_lambda.ApplicationLogLevel", "ERROR")
FATAL =
Deprecated.
Note:

Default:

Lambda will capture only logs at fatal level.

Jsii::Enum.new("aws-cdk-lib.aws_lambda.ApplicationLogLevel", "FATAL")