interface LogDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.StepFunctions.Mixins.CfnStateMachinePropsMixin.LogDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsstepfunctions/mixins#CfnStateMachinePropsMixin_LogDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.stepfunctions.mixins.CfnStateMachinePropsMixin.LogDestinationProperty |
Python | aws_cdk.mixins_preview.aws_stepfunctions.mixins.CfnStateMachinePropsMixin.LogDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_stepfunctions » mixins » CfnStateMachinePropsMixin » LogDestinationProperty |
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 { mixins as stepfunctions_mixins } from '@aws-cdk/mixins-preview/aws-stepfunctions';
const logDestinationProperty: stepfunctions_mixins.CfnStateMachinePropsMixin.LogDestinationProperty = {
cloudWatchLogsLogGroup: {
logGroupArn: 'logGroupArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | IResolvable | Cloud | An object describing a CloudWatch log group. |
cloudWatchLogsLogGroup?
Type:
IResolvable | Cloud
(optional)
An object describing a CloudWatch log group.
For more information, see AWS::Logs::LogGroup in the CloudFormation User Guide.

.NET
Go
Java
Python
TypeScript