@Stability(value=Stable)
public static interface CfnStateMachine.LoggingConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sam.*;
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() |
Object |
getDestinations()
`CfnStateMachine.LoggingConfigurationProperty.Destinations`.
|
Object |
getIncludeExecutionData()
`CfnStateMachine.LoggingConfigurationProperty.IncludeExecutionData`.
|
String |
getLevel()
`CfnStateMachine.LoggingConfigurationProperty.Level`.
|
@Stability(value=Stable) @NotNull Object getDestinations()
@Stability(value=Stable) @NotNull Object getIncludeExecutionData()
@Stability(value=Stable) @NotNull String getLevel()
@Stability(value=Stable) static CfnStateMachine.LoggingConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.