interface LoggingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SAM.CfnStateMachinePropsMixin.LoggingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssam#CfnStateMachinePropsMixin_LoggingConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sam.CfnStateMachinePropsMixin.LoggingConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_sam.CfnStateMachinePropsMixin.LoggingConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sam » CfnStateMachinePropsMixin » 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/cfn-property-mixins';
const loggingConfigurationProperty: sam.CfnStateMachinePropsMixin.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)[]
(optional)
includeExecutionData?
Type:
boolean | IResolvable
(optional)
level?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript