Skip to content

Commit 6a1e712

Browse files
authored
chore(lambda): formatting of enums (#28504)
---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent cae756c commit 6a1e712

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/aws-cdk-lib/aws-lambda/lib/function.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export enum Tracing {
4848
/**
4949
* Lambda will not trace any request.
5050
*/
51-
DISABLED = 'Disabled'
51+
DISABLED = 'Disabled',
5252
}
5353

5454
/**
@@ -68,7 +68,7 @@ export enum SystemLogLevel {
6868
/**
6969
* Lambda will capture only logs at warn level.
7070
*/
71-
WARN = 'WARN'
71+
WARN = 'WARN',
7272
}
7373

7474
/**
@@ -100,7 +100,7 @@ export enum ApplicationLogLevel {
100100
/**
101101
* Lambda will capture only logs at fatal level.
102102
*/
103-
FATAL = 'FATAL'
103+
FATAL = 'FATAL',
104104
}
105105

106106
/**
@@ -118,7 +118,7 @@ export enum LogFormat {
118118
/**
119119
* Lambda structured logging in Json format.
120120
*/
121-
JSON = 'JSON'
121+
JSON = 'JSON',
122122
}
123123

124124
/**

0 commit comments

Comments
 (0)