Interface CfnStateMachine.LogDestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStateMachine.LogDestinationProperty.Jsii$Proxy
- Enclosing class:
CfnStateMachine
@Stability(Stable)
public static interface CfnStateMachine.LogDestinationProperty
extends software.amazon.jsii.JsiiSerializable
Defines a destination for
LoggingConfiguration .
For more information on logging with
EXPRESSworkflows, see Logging Express Workflows Using CloudWatch Logs .
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.*;
LogDestinationProperty logDestinationProperty = LogDestinationProperty.builder()
.cloudWatchLogsLogGroup(CloudWatchLogsLogGroupProperty.builder()
.logGroupArn("logGroupArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStateMachine.LogDestinationPropertystatic final classAn implementation forCfnStateMachine.LogDestinationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudWatchLogsLogGroup
An object describing a CloudWatch log group.For more information, see AWS::Logs::LogGroup in the AWS CloudFormation User Guide.
Returns union: either
IResolvableorCfnStateMachine.CloudWatchLogsLogGroupProperty- See Also:
-
builder
-