Class: Aws::CloudWatchLogs::Types::GroupingIdentifier

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

Overview

A key-value pair that identifies how log groups are grouped in aggregate summaries.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key that identifies the grouping characteristic. The format of the key uses dot notation. Examples are, dataSource.Name, dataSource.Type, and dataSource.Format.

Returns:

  • (String)


4140
4141
4142
4143
4144
4145
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 4140

class GroupingIdentifier < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The value associated with the grouping characteristic. Examples are amazon_vpc, flow, and OCSF.

Returns:

  • (String)


4140
4141
4142
4143
4144
4145
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 4140

class GroupingIdentifier < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end