Class: Aws::EventBridge::Types::LogConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::LogConfig
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
The logging configuration settings for the event bus.
For more information, see Configuring logs for event buses in the EventBridge User Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#include_detail ⇒ String
Whether EventBridge include detailed event information in the records it generates.
-
#level ⇒ String
The level of logging detail to include.
Instance Attribute Details
#include_detail ⇒ String
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.
3711 3712 3713 3714 3715 3716 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3711 class LogConfig < Struct.new( :include_detail, :level) SENSITIVE = [] include Aws::Structure end |
#level ⇒ String
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.
3711 3712 3713 3714 3715 3716 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 3711 class LogConfig < Struct.new( :include_detail, :level) SENSITIVE = [] include Aws::Structure end |