Interface CfnEventBus.LogConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEventBus.LogConfigProperty.Jsii$Proxy
Enclosing class:
CfnEventBus

@Stability(Stable) public static interface CfnEventBus.LogConfigProperty extends software.amazon.jsii.JsiiSerializable
The logging configuration settings for the event bus.

For more information, see Configuring logs for event buses in the EventBridge User Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.events.*;
 LogConfigProperty logConfigProperty = LogConfigProperty.builder()
         .includeDetail("includeDetail")
         .level("level")
         .build();
 

See Also: