Class: Aws::ResilienceHub::Types::Field
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ResilienceHub::Types::Field
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-resiliencehub/types.rb
 
Overview
Indicates the field or attribute of a resource or data structure on which a condition is being applied or evaluated.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #aggregation  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
(Optional) Indicates the type of aggregation or summary operation (such as Sum, Average, and so on) to be performed on a particular field or set of data.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Name of the field.
 
Instance Attribute Details
#aggregation ⇒ String
(Optional) Indicates the type of aggregation or summary operation (such as Sum, Average, and so on) to be performed on a particular field or set of data.
      3207 3208 3209 3210 3211 3212  | 
    
      # File 'lib/aws-sdk-resiliencehub/types.rb', line 3207 class Field < Struct.new( :aggregation, :name) SENSITIVE = [] include Aws::Structure end  |