Class: Aws::EventBridgeV2::Types::LogConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridgeV2::Types::LogConfiguration
- Defined in:
- gems/aws-sdk-eventbridgev2/lib/aws-sdk-eventbridgev2/types.rb
Overview
Log configuration for a subscriber.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#include_payload ⇒ String
Whether the customer event payload is embedded in log records.
-
#level ⇒ String
Minimum log level.
Instance Attribute Details
#include_payload ⇒ String
Whether the customer event payload is embedded in log records. Defaults to ON_ERROR_ONLY.
1799 1800 1801 1802 1803 1804 |
# File 'gems/aws-sdk-eventbridgev2/lib/aws-sdk-eventbridgev2/types.rb', line 1799 class LogConfiguration < Struct.new( :level, :include_payload) SENSITIVE = [] include Aws::Structure end |
#level ⇒ String
Minimum log level. Records below this level are not emitted. Defaults to OFF.
1799 1800 1801 1802 1803 1804 |
# File 'gems/aws-sdk-eventbridgev2/lib/aws-sdk-eventbridgev2/types.rb', line 1799 class LogConfiguration < Struct.new( :level, :include_payload) SENSITIVE = [] include Aws::Structure end |