Enum ApplicationLogLevel

java.lang.Object
java.lang.Enum<ApplicationLogLevel>
software.amazon.awscdk.services.lambda.ApplicationLogLevel
All Implemented Interfaces:
Serializable, Comparable<ApplicationLogLevel>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:09.137Z") @Stability(Stable) public enum ApplicationLogLevel extends Enum<ApplicationLogLevel>
Lambda service automatically captures logs generated by the function code (known as application logs) and sends these logs to a default CloudWatch log group named after the Lambda function.

Example:

 import software.amazon.awscdk.services.logs.ILogGroup;
 ILogGroup logGroup;
 Function.Builder.create(this, "Lambda")
         .code(new InlineCode("foo"))
         .handler("index.handler")
         .runtime(Runtime.NODEJS_18_X)
         .loggingFormat(LoggingFormat.JSON)
         .systemLogLevel(SystemLogLevel.INFO)
         .applicationLogLevel(ApplicationLogLevel.INFO)
         .logGroup(logGroup)
         .build();
 
  • Enum Constant Details

    • INFO

      @Stability(Stable) public static final ApplicationLogLevel INFO
      Lambda will capture only logs at info level.
    • DEBUG

      @Stability(Stable) public static final ApplicationLogLevel DEBUG
      Lambda will capture only logs at debug level.
    • WARN

      @Stability(Stable) public static final ApplicationLogLevel WARN
      Lambda will capture only logs at warn level.
    • TRACE

      @Stability(Stable) public static final ApplicationLogLevel TRACE
      Lambda will capture only logs at trace level.
    • ERROR

      @Stability(Stable) public static final ApplicationLogLevel ERROR
      Lambda will capture only logs at error level.
    • FATAL

      @Stability(Stable) public static final ApplicationLogLevel FATAL
      Lambda will capture only logs at fatal level.
  • Method Details

    • values

      public static ApplicationLogLevel[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ApplicationLogLevel valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null