Interface CfnStateMachine.LoggingConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStateMachine.LoggingConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnStateMachine
@Stability(Stable)
public static interface CfnStateMachine.LoggingConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.sam.*;
LoggingConfigurationProperty loggingConfigurationProperty = LoggingConfigurationProperty.builder()
.destinations(List.of(LogDestinationProperty.builder()
.cloudWatchLogsLogGroup(CloudWatchLogsLogGroupProperty.builder()
.logGroupArn("logGroupArn")
.build())
.build()))
.includeExecutionData(false)
.level("level")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStateMachine.LoggingConfigurationPropertystatic final classAn implementation forCfnStateMachine.LoggingConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnStateMachine.LogDestinationProperty>Returns union: eitherBooleanorIResolvablegetLevel()Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinations
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnStateMachine.LogDestinationProperty>- See Also:
-
getIncludeExecutionData
Returns union: eitherBooleanorIResolvable- See Also:
-
getLevel
- See Also:
-
builder
-