Class: Aws::Glue::Types::Condition

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Note:

When making an API call, you may pass Condition data as a hash:

{
  logical_operator: "EQUALS", # accepts EQUALS
  job_name: "NameString",
  state: "STARTING", # accepts STARTING, RUNNING, STOPPING, STOPPED, SUCCEEDED, FAILED, TIMEOUT
  crawler_name: "NameString",
  crawl_state: "RUNNING", # accepts RUNNING, CANCELLING, CANCELLED, SUCCEEDED, FAILED
}

Defines a condition under which a trigger fires.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#crawl_stateString

The state of the crawler to which this condition applies.

Returns:

  • (String)


1812
1813
1814
1815
1816
1817
1818
1819
1820
# File 'lib/aws-sdk-glue/types.rb', line 1812

class Condition < Struct.new(
  :logical_operator,
  :job_name,
  :state,
  :crawler_name,
  :crawl_state)
  SENSITIVE = []
  include Aws::Structure
end

#crawler_nameString

The name of the crawler to which this condition applies.

Returns:

  • (String)


1812
1813
1814
1815
1816
1817
1818
1819
1820
# File 'lib/aws-sdk-glue/types.rb', line 1812

class Condition < Struct.new(
  :logical_operator,
  :job_name,
  :state,
  :crawler_name,
  :crawl_state)
  SENSITIVE = []
  include Aws::Structure
end

#job_nameString

The name of the job whose ‘JobRuns` this condition applies to, and on which this trigger waits.

Returns:

  • (String)


1812
1813
1814
1815
1816
1817
1818
1819
1820
# File 'lib/aws-sdk-glue/types.rb', line 1812

class Condition < Struct.new(
  :logical_operator,
  :job_name,
  :state,
  :crawler_name,
  :crawl_state)
  SENSITIVE = []
  include Aws::Structure
end

#logical_operatorString

A logical operator.

Returns:

  • (String)


1812
1813
1814
1815
1816
1817
1818
1819
1820
# File 'lib/aws-sdk-glue/types.rb', line 1812

class Condition < Struct.new(
  :logical_operator,
  :job_name,
  :state,
  :crawler_name,
  :crawl_state)
  SENSITIVE = []
  include Aws::Structure
end

#stateString

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`.

Returns:

  • (String)


1812
1813
1814
1815
1816
1817
1818
1819
1820
# File 'lib/aws-sdk-glue/types.rb', line 1812

class Condition < Struct.new(
  :logical_operator,
  :job_name,
  :state,
  :crawler_name,
  :crawl_state)
  SENSITIVE = []
  include Aws::Structure
end