Class: Aws::ResilienceHub::Types::Condition
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ResilienceHub::Types::Condition
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-resiliencehub/types.rb
 
Overview
Indicates the condition based on which you want to filter the metrics.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #field  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates the field in the metric.
 - 
  
    
      #operator  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates the type of operator or comparison to be used when evaluating a condition against the specified field.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates the value or data against which a condition is evaluated.
 
Instance Attribute Details
#field ⇒ String
Indicates the field in the metric.
      1161 1162 1163 1164 1165 1166 1167  | 
    
      # File 'lib/aws-sdk-resiliencehub/types.rb', line 1161 class Condition < Struct.new( :field, :operator, :value) SENSITIVE = [] include Aws::Structure end  | 
  
#operator ⇒ String
Indicates the type of operator or comparison to be used when evaluating a condition against the specified field.
      1161 1162 1163 1164 1165 1166 1167  | 
    
      # File 'lib/aws-sdk-resiliencehub/types.rb', line 1161 class Condition < Struct.new( :field, :operator, :value) SENSITIVE = [] include Aws::Structure end  |