We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cae756c commit 6a1e712Copy full SHA for 6a1e712
packages/aws-cdk-lib/aws-lambda/lib/function.ts
@@ -48,7 +48,7 @@ export enum Tracing {
48
/**
49
* Lambda will not trace any request.
50
*/
51
- DISABLED = 'Disabled'
+ DISABLED = 'Disabled',
52
}
53
54
@@ -68,7 +68,7 @@ export enum SystemLogLevel {
68
69
* Lambda will capture only logs at warn level.
70
71
- WARN = 'WARN'
+ WARN = 'WARN',
72
73
74
@@ -100,7 +100,7 @@ export enum ApplicationLogLevel {
100
101
* Lambda will capture only logs at fatal level.
102
103
- FATAL = 'FATAL'
+ FATAL = 'FATAL',
104
105
106
@@ -118,7 +118,7 @@ export enum LogFormat {
118
119
* Lambda structured logging in Json format.
120
121
- JSON = 'JSON'
+ JSON = 'JSON',
122
123
124
0 commit comments