enum IncludeDetail
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Events.IncludeDetail |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsevents#IncludeDetail |
![]() | software.amazon.awscdk.services.events.IncludeDetail |
![]() | aws_cdk.aws_events.IncludeDetail |
![]() | aws-cdk-lib » aws_events » IncludeDetail |
Whether EventBridge include detailed event information in the records it generates.
Detailed data can be useful for troubleshooting and debugging. This information includes details of the event itself, as well as target details.
Example
import { EventBus, IncludeDetail, Level } from 'aws-cdk-lib/aws-events';
const bus = new EventBus(this, 'Bus', {
logConfig: {
includeDetail: IncludeDetail.FULL,
level: Level.TRACE,
},
});
Members
Name | Description |
---|---|
FULL | FULL: Include all details related to event itself and the request EventBridge sends to the target. |
NONE | NONE: Does not include any details. |
FULL
FULL: Include all details related to event itself and the request EventBridge sends to the target.
Detailed data can be useful for troubleshooting and debugging.
NONE
NONE: Does not include any details.