Class: Aws::CloudWatchLogs::Types::ResultField
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::ResultField
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchlogs/types.rb
Overview
Contains one field from one log event returned by a CloudWatch Logs Insights query, along with the value of that field.
For more information about the fields that are generated by CloudWatch logs, see [Supported Logs and Discovered Fields].
[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_AnalyzeLogData-discoverable-fields.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#field ⇒ String
The log event field.
-
#value ⇒ String
The value of this field.
Instance Attribute Details
#field ⇒ String
The log event field.
4827 4828 4829 4830 4831 4832 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4827 class ResultField < Struct.new( :field, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of this field.
4827 4828 4829 4830 4831 4832 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4827 class ResultField < Struct.new( :field, :value) SENSITIVE = [] include Aws::Structure end |