interface LogDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.StepFunctions.CfnStateMachinePropsMixin.LogDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsstepfunctions#CfnStateMachinePropsMixin_LogDestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.stepfunctions.CfnStateMachinePropsMixin.LogDestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_stepfunctions.CfnStateMachinePropsMixin.LogDestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_stepfunctions » 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 { aws_stepfunctions as stepfunctions } from '@aws-cdk/cfn-property-mixins';
const logDestinationProperty: stepfunctions.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