Class: Aws::CloudWatchLogs::Types::FieldsData
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::FieldsData
- Defined in:
- gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb
Overview
A structure containing the extracted fields from a log event. These fields are extracted based on the log format and can be used for structured querying and analysis.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data ⇒ String
The actual log data content returned in the streaming response.
-
#event_type ⇒ Object
Returns the value of attribute event_type.
Instance Attribute Details
#data ⇒ String
The actual log data content returned in the streaming response. This contains the fields and values of the log event in a structured format that can be parsed and processed by the client.
2791 2792 2793 2794 2795 2796 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 2791 class FieldsData < Struct.new( :data, :event_type) SENSITIVE = [] include Aws::Structure end |
#event_type ⇒ Object
Returns the value of attribute event_type
2791 2792 2793 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 2791 def event_type @event_type end |