interface LoggingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SAM.CfnStateMachine.LoggingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssam#CfnStateMachine_LoggingConfigurationProperty |
Java | software.amazon.awscdk.services.sam.CfnStateMachine.LoggingConfigurationProperty |
Python | aws_cdk.aws_sam.CfnStateMachine.LoggingConfigurationProperty |
TypeScript | aws-cdk-lib » aws_sam » CfnStateMachine » LoggingConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sam as sam } from 'aws-cdk-lib';
const loggingConfigurationProperty: sam.CfnStateMachine.LoggingConfigurationProperty = {
destinations: [{
cloudWatchLogsLogGroup: {
logGroupArn: 'logGroupArn',
},
}],
includeExecutionData: false,
level: 'level',
};
Properties
| Name | Type | Description |
|---|---|---|
| destinations | IResolvable | (IResolvable | Log)[] | |
| include | boolean | IResolvable | |
| level | string |
destinations
Type:
IResolvable | (IResolvable | Log)[]
includeExecutionData
Type:
boolean | IResolvable
level
Type:
string

.NET
Go
Java
Python
TypeScript