Class: Aws::Glue::Types::Predicate
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::Predicate
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Defines the predicate of the trigger, which determines when it fires.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #conditions  ⇒ Array<Types::Condition> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of the conditions that determine when the trigger will fire. 
- 
  
    
      #logical  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An optional field if only one condition is listed. 
Instance Attribute Details
#conditions ⇒ Array<Types::Condition>
A list of the conditions that determine when the trigger will fire.
| 20451 20452 20453 20454 20455 20456 | # File 'lib/aws-sdk-glue/types.rb', line 20451 class Predicate < Struct.new( :logical, :conditions) SENSITIVE = [] include Aws::Structure end | 
#logical ⇒ String
An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.
| 20451 20452 20453 20454 20455 20456 | # File 'lib/aws-sdk-glue/types.rb', line 20451 class Predicate < Struct.new( :logical, :conditions) SENSITIVE = [] include Aws::Structure end |