GetFunctionLoggingConfig constructor
const
GetFunctionLoggingConfig({})
Creates a new GetFunctionLoggingConfig.
applicationLogLevel Detail level of the logs your application sends to CloudWatch when using supported logging libraries.
logFormat Format for your function's logs. Valid values: Text, JSON.
logGroup CloudWatch log group your function sends logs to.
systemLogLevel Detail level of the Lambda platform event logs sent to CloudWatch.
Implementation
const GetFunctionLoggingConfig({
required this.applicationLogLevel,
required this.logFormat,
required this.logGroup,
required this.systemLogLevel,
});