public static interface CfnStateMachine.LoggingConfigurationProperty
By default, the
level
is set toOFF
. For more information see Log Levels in the AWS Step Functions User Guide.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.stepfunctions.*; LoggingConfigurationProperty loggingConfigurationProperty = LoggingConfigurationProperty.builder() .destinations(List.of(LogDestinationProperty.builder() .cloudWatchLogsLogGroup(CloudWatchLogsLogGroupProperty.builder() .logGroupArn("logGroupArn") .build()) .build())) .includeExecutionData(false) .level("level") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnStateMachine.LoggingConfigurationProperty.Builder
A builder for
CfnStateMachine.LoggingConfigurationProperty |
static class |
CfnStateMachine.LoggingConfigurationProperty.Jsii$Proxy
An implementation for
CfnStateMachine.LoggingConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnStateMachine.LoggingConfigurationProperty.Builder |
builder() |
default java.lang.Object |
getDestinations()
An array of objects that describes where your execution history events will be logged.
|
default java.lang.Object |
getIncludeExecutionData()
Determines whether execution data is included in your log.
|
default java.lang.String |
getLevel()
Defines which category of execution history events are logged.
|
default java.lang.Object getDestinations()
Limited to size 1. Required, if your log level is not set to OFF
.
default java.lang.Object getIncludeExecutionData()
When set to false
, data is excluded.
default java.lang.String getLevel()
static CfnStateMachine.LoggingConfigurationProperty.Builder builder()