You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::EMR::Types::DescribeJobFlowsInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DescribeJobFlowsInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  created_after: Time.now,
  created_before: Time.now,
  job_flow_ids: ["XmlString"],
  job_flow_states: ["STARTING"], # accepts STARTING, BOOTSTRAPPING, RUNNING, WAITING, SHUTTING_DOWN, TERMINATED, COMPLETED, FAILED
}

The input for the DescribeJobFlows operation.

Instance Attribute Summary collapse

Instance Attribute Details

#created_afterTime

Return only job flows created after this date and time.

Returns:

  • (Time)

    Return only job flows created after this date and time.

#created_beforeTime

Return only job flows created before this date and time.

Returns:

  • (Time)

    Return only job flows created before this date and time.

#job_flow_idsArray<String>

Return only job flows whose job flow ID is contained in this list.

Returns:

  • (Array<String>)

    Return only job flows whose job flow ID is contained in this list.

#job_flow_statesArray<String>

Return only job flows whose state is contained in this list.

Returns:

  • (Array<String>)

    Return only job flows whose state is contained in this list.