Class: Aws::CloudWatchLogs::Types::GroupingIdentifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::GroupingIdentifier
- Includes:
- Structure
- Defined in:
- 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
-
#key ⇒ String
The key that identifies the grouping characteristic.
-
#value ⇒ String
The value associated with the grouping characteristic.
Instance Attribute Details
#key ⇒ String
The key that identifies the grouping characteristic. The format of
the key uses dot notation. Examples are, dataSource.Name,
dataSource.Type, and dataSource.Format.
4718 4719 4720 4721 4722 4723 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4718 class GroupingIdentifier < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value associated with the grouping characteristic. Examples are
amazon_vpc, flow, and OCSF.
4718 4719 4720 4721 4722 4723 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4718 class GroupingIdentifier < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |