Class: Aws::CloudWatchLogs::Types::LogGroupField
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CloudWatchLogs::Types::LogGroupField
 
 
- Includes:
 - Structure
 
- Defined in:
 - 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
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of a log field.
 - 
  
    
      #percent  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The percentage of log events queried that contained the field.
 
Instance Attribute Details
#name ⇒ String
The name of a log field.
      3431 3432 3433 3434 3435 3436  | 
    
      # File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 3431 class LogGroupField < Struct.new( :name, :percent) SENSITIVE = [] include Aws::Structure end  | 
  
#percent ⇒ Integer
The percentage of log events queried that contained the field.
      3431 3432 3433 3434 3435 3436  | 
    
      # File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 3431 class LogGroupField < Struct.new( :name, :percent) SENSITIVE = [] include Aws::Structure end  |