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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forLogOptionsstatic final classAn implementation forLogOptions -
Method Summary
Modifier and TypeMethodDescriptionstatic LogOptions.Builderbuilder()The log group where the execution history events will be logged.default BooleanDetermines whether execution data is included in your log.default LogLevelgetLevel()Defines which category of execution history events are logged.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestination
The log group where the execution history events will be logged. -
getIncludeExecutionData
Determines whether execution data is included in your log.Default: false
-
getLevel
Defines which category of execution history events are logged.Default: ERROR
-
builder
- Returns:
- a
LogOptions.BuilderofLogOptions
-