FunctionLoggingConfig constructor

const FunctionLoggingConfig({
  1. Input<String?>? applicationLogLevel,
  2. required Input<String> logFormat,
  3. Input<String?>? logGroup,
  4. Input<String?>? systemLogLevel,
})

Creates a new FunctionLoggingConfig. applicationLogLevel Detail level of application logs. Valid values: TRACE, DEBUG, INFO, WARN, ERROR, FATAL. logFormat Log format. Valid values: Text, JSON. logGroup CloudWatch log group where logs are sent. systemLogLevel Detail level of Lambda platform logs. Valid values: DEBUG, INFO, WARN.

Implementation

const FunctionLoggingConfig({
  this.applicationLogLevel,
  required this.logFormat,
  this.logGroup,
  this.systemLogLevel,
});