aws-cdk-lib.aws_stepfunctions.CfnStateMachine.LogDestinationProperty

interface LogDestinationProperty

LanguageType name
.NETAmazon.CDK.AWS.StepFunctions.CfnStateMachine.LogDestinationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctions#CfnStateMachine_LogDestinationProperty
Javasoftware.amazon.awscdk.services.stepfunctions.CfnStateMachine.LogDestinationProperty
Pythonaws_cdk.aws_stepfunctions.CfnStateMachine.LogDestinationProperty
TypeScript aws-cdk-lib » aws_stepfunctions » CfnStateMachine » LogDestinationProperty

Defines a destination for LoggingConfiguration .

For more information on logging with EXPRESS workflows, 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-lib';
const logDestinationProperty: stepfunctions.CfnStateMachine.LogDestinationProperty = {
  cloudWatchLogsLogGroup: {
    logGroupArn: 'logGroupArn',
  },
};

Properties

NameTypeDescription
cloudWatchLogsLogGroup?IResolvable | CloudWatchLogsLogGroupPropertyAn object describing a CloudWatch log group.

cloudWatchLogsLogGroup?

Type: IResolvable | CloudWatchLogsLogGroupProperty (optional)

An object describing a CloudWatch log group.

For more information, see AWS::Logs::LogGroup in the AWS CloudFormation User Guide.