Interface LogOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
LogOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:39.918Z") @Stability(Stable) public interface LogOptions extends software.amazon.jsii.JsiiSerializable
Defines what execution history events are logged and where they are logged.

Example:

 import software.amazon.awscdk.services.logs.*;
 LogGroup logGroup = new LogGroup(this, "MyLogGroup");
 StateMachine.Builder.create(this, "MyStateMachine")
         .definition(Chain.start(new Pass(this, "Pass")))
         .logs(LogOptions.builder()
                 .destination(logGroup)
                 .level(LogLevel.ALL)
                 .build())
         .build();
 
  • Method Details

    • getDestination

      @Stability(Stable) @NotNull ILogGroup getDestination()
      The log group where the execution history events will be logged.
    • getIncludeExecutionData

      @Stability(Stable) @Nullable default Boolean getIncludeExecutionData()
      Determines whether execution data is included in your log.

      Default: false

    • getLevel

      @Stability(Stable) @Nullable default LogLevel getLevel()
      Defines which category of execution history events are logged.

      Default: ERROR

    • builder

      @Stability(Stable) static LogOptions.Builder builder()
      Returns:
      a LogOptions.Builder of LogOptions