Show / Hide Table of Contents

Enum IncludeDetail

Whether EventBridge include detailed event information in the records it generates.

Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum IncludeDetail
Syntax (vb)
Public Enum IncludeDetail
Remarks

Detailed data can be useful for troubleshooting and debugging. This information includes details of the event itself, as well as target details.

ExampleMetadata: infused

Examples
using Amazon.CDK.AWS.Events;


             var bus = new EventBus(this, "Bus", new EventBusProps {
                 LogConfig = new LogConfig {
                     IncludeDetail = IncludeDetail.FULL,
                     Level = Level.TRACE
                 }
             });

Synopsis

Fields

FULL

FULL: Include all details related to event itself and the request EventBridge sends to the target.

NONE

NONE: Does not include any details.

Fields

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.

Back to top Generated by DocFX