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`.
4140 4141 4142 4143 4144 4145 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4140 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`.
4140 4141 4142 4143 4144 4145 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4140 class GroupingIdentifier < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |