FunctionLoggingConfigArgs

data class FunctionLoggingConfigArgs(val applicationLogLevel: Output<FunctionLoggingConfigApplicationLogLevel>? = null, val logFormat: Output<FunctionLoggingConfigLogFormat>? = null, val logGroup: Output<String>? = null, val systemLogLevel: Output<FunctionLoggingConfigSystemLogLevel>? = null) : ConvertibleToJava<FunctionLoggingConfigArgs>

The function's Amazon CloudWatch Logs configuration settings.

Constructors

Link copied to clipboard
constructor(applicationLogLevel: Output<FunctionLoggingConfigApplicationLogLevel>? = null, logFormat: Output<FunctionLoggingConfigLogFormat>? = null, logGroup: Output<String>? = null, systemLogLevel: Output<FunctionLoggingConfigSystemLogLevel>? = null)

Properties

Link copied to clipboard

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.

Link copied to clipboard

The format in which Lambda sends your function's application and system logs to CloudWatch. Select between plain text and structured JSON.

Link copied to clipboard
val logGroup: Output<String>? = null

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.

Link copied to clipboard

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.

Functions

Link copied to clipboard
open override fun toJava(): FunctionLoggingConfigArgs