Class: Aws::Glue::Types::Predicate
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::Predicate
- Defined in:
- gems/aws-sdk-glue/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.
18168 18169 18170 18171 18172 18173 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 18168 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.
18168 18169 18170 18171 18172 18173 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 18168 class Predicate < Struct.new( :logical, :conditions) SENSITIVE = [] include Aws::Structure end |