Interface LogOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LogOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:27.730Z")
@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"); Chain definition = Chain.start(new Pass(this, "Pass")); StateMachine.Builder.create(this, "MyStateMachine") .definitionBody(DefinitionBody.fromChainable(definition)) .logs(LogOptions.builder() .destination(logGroup) .level(LogLevel.ALL) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forLogOptions
static final class
An implementation forLogOptions
-
Method Summary
Modifier and TypeMethodDescriptionstatic LogOptions.Builder
builder()
The log group where the execution history events will be logged.default Boolean
Determines whether execution data is included in your log.default LogLevel
getLevel()
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.Builder
ofLogOptions
-