Skip to content

Commit

Permalink
chore(lambda): formatting of enums (aws#28504)
Browse files Browse the repository at this point in the history
----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
kaizencc authored and paulhcsun committed Jan 5, 2024
1 parent 87ab133 commit de255b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/aws-cdk-lib/aws-lambda/lib/function.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export enum Tracing {
/**
* Lambda will not trace any request.
*/
DISABLED = 'Disabled'
DISABLED = 'Disabled',
}

/**
Expand All @@ -68,7 +68,7 @@ export enum SystemLogLevel {
/**
* Lambda will capture only logs at warn level.
*/
WARN = 'WARN'
WARN = 'WARN',
}

/**
Expand Down Expand Up @@ -100,7 +100,7 @@ export enum ApplicationLogLevel {
/**
* Lambda will capture only logs at fatal level.
*/
FATAL = 'FATAL'
FATAL = 'FATAL',
}

/**
Expand All @@ -118,7 +118,7 @@ export enum LogFormat {
/**
* Lambda structured logging in Json format.
*/
JSON = 'JSON'
JSON = 'JSON',
}

/**
Expand Down

0 comments on commit de255b4

Please sign in to comment.