interface CloudWatchLogsLogGroupProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.StepFunctions.Mixins.CfnStateMachinePropsMixin.CloudWatchLogsLogGroupProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsstepfunctions/mixins#CfnStateMachinePropsMixin_CloudWatchLogsLogGroupProperty |
Java | software.amazon.awscdk.mixins.preview.services.stepfunctions.mixins.CfnStateMachinePropsMixin.CloudWatchLogsLogGroupProperty |
Python | aws_cdk.mixins_preview.aws_stepfunctions.mixins.CfnStateMachinePropsMixin.CloudWatchLogsLogGroupProperty |
TypeScript | @aws-cdk/mixins-preview » aws_stepfunctions » mixins » CfnStateMachinePropsMixin » CloudWatchLogsLogGroupProperty |
Defines a CloudWatch log group.
For more information see Standard Versus Express Workflows in the AWS Step Functions Developer Guide.
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 cloudWatchLogsLogGroupProperty: stepfunctions_mixins.CfnStateMachinePropsMixin.CloudWatchLogsLogGroupProperty = {
logGroupArn: 'logGroupArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| log | string | The ARN of the the CloudWatch log group to which you want your logs emitted to. |
logGroupArn?
Type:
string
(optional)
The ARN of the the CloudWatch log group to which you want your logs emitted to.
The ARN must end with :*

.NET
Go
Java
Python
TypeScript