Class: Aws::Glue::Types::Condition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::Condition
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Defines a condition under which a trigger fires.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#crawl_state ⇒ String
The state of the crawler to which this condition applies.
-
#crawler_name ⇒ String
The name of the crawler to which this condition applies.
-
#job_name ⇒ String
The name of the job whose
JobRuns
this condition applies to, and on which this trigger waits. -
#logical_operator ⇒ String
A logical operator.
-
#state ⇒ String
The condition state.
Instance Attribute Details
#crawl_state ⇒ String
The state of the crawler to which this condition applies.
3130 3131 3132 3133 3134 3135 3136 3137 3138 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3130 class Condition < Struct.new( :logical_operator, :job_name, :state, :crawler_name, :crawl_state) SENSITIVE = [] include Aws::Structure end |
#crawler_name ⇒ String
The name of the crawler to which this condition applies.
3130 3131 3132 3133 3134 3135 3136 3137 3138 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3130 class Condition < Struct.new( :logical_operator, :job_name, :state, :crawler_name, :crawl_state) SENSITIVE = [] include Aws::Structure end |
#job_name ⇒ String
The name of the job whose JobRuns
this condition applies to, and
on which this trigger waits.
3130 3131 3132 3133 3134 3135 3136 3137 3138 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3130 class Condition < Struct.new( :logical_operator, :job_name, :state, :crawler_name, :crawl_state) SENSITIVE = [] include Aws::Structure end |
#logical_operator ⇒ String
A logical operator.
3130 3131 3132 3133 3134 3135 3136 3137 3138 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3130 class Condition < Struct.new( :logical_operator, :job_name, :state, :crawler_name, :crawl_state) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The condition state. Currently, the only job states that a trigger
can listen for are SUCCEEDED
, STOPPED
, FAILED
, and TIMEOUT
.
The only crawler states that a trigger can listen for are
SUCCEEDED
, FAILED
, and CANCELLED
.
3130 3131 3132 3133 3134 3135 3136 3137 3138 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3130 class Condition < Struct.new( :logical_operator, :job_name, :state, :crawler_name, :crawl_state) SENSITIVE = [] include Aws::Structure end |