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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEventBus.LogConfigProperty
static final class
An implementation forCfnEventBus.LogConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIncludeDetail
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.
For more information, see Including detail data in event bus logs in the EventBridge User Guide .
- See Also:
-
getLevel
The level of logging detail to include. This applies to all log destinations for the event bus.For more information, see Specifying event bus log level in the EventBridge User Guide .
- See Also:
-
builder
-