Class: Aws::CloudWatchLogs::Types::LogGroupField

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb

Overview

The fields contained in log events found by a GetLogGroupFields operation, along with the percentage of queried log events in which each field appears.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of a log field.

Returns:

  • (String)


3169
3170
3171
3172
3173
3174
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 3169

class LogGroupField < Struct.new(
  :name,
  :percent)
  SENSITIVE = []
  include Aws::Structure
end

#percentInteger

The percentage of log events queried that contained the field.

Returns:

  • (Integer)


3169
3170
3171
3172
3173
3174
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 3169

class LogGroupField < Struct.new(
  :name,
  :percent)
  SENSITIVE = []
  include Aws::Structure
end