IncludeDetail

class aws_cdk.aws_events.IncludeDetail(*values)

Bases: Enum

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.

ExampleMetadata:

infused

Example:

from aws_cdk.aws_events import EventBus, IncludeDetail, Level


bus = EventBus(self, "Bus",
    log_config=events.LogConfig(
        include_detail=IncludeDetail.FULL,
        level=Level.TRACE
    )
)

Attributes

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.