Enum LogFormat

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:09.279Z") @Stability(Stable) public enum LogFormat extends Enum<LogFormat>
This field takes in 2 values either Text or JSON.

By setting this value to Text, will result in the current structure of logs format, whereas, by setting this value to JSON, Lambda will print the logs as Structured JSON Logs, with the corresponding timestamp and log level of each event. Selecting ‘JSON’ format will only allow customer’s to have different log level Application log level and the System log level.

  • Enum Constant Details

    • TEXT

      @Stability(Stable) public static final LogFormat TEXT
      Lambda Logs text format.
    • JSON

      @Stability(Stable) public static final LogFormat JSON
      Lambda structured logging in Json format.
  • Method Details

    • values

      public static LogFormat[] 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 LogFormat 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