Class: Aws::EMR::Types::DescribeJobFlowsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::DescribeJobFlowsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
Note:
When making an API call, you may pass DescribeJobFlowsInput data as a 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
-
#created_after ⇒ Time
Return only job flows created after this date and time.
-
#created_before ⇒ Time
Return only job flows created before this date and time.
-
#job_flow_ids ⇒ Array<String>
Return only job flows whose job flow ID is contained in this list.
-
#job_flow_states ⇒ Array<String>
Return only job flows whose state is contained in this list.
Instance Attribute Details
#created_after ⇒ Time
Return only job flows created after this date and time.
1189 1190 1191 1192 1193 1194 1195 |
# File 'lib/aws-sdk-emr/types.rb', line 1189 class DescribeJobFlowsInput < Struct.new( :created_after, :created_before, :job_flow_ids, :job_flow_states) include Aws::Structure end |
#created_before ⇒ Time
Return only job flows created before this date and time.
1189 1190 1191 1192 1193 1194 1195 |
# File 'lib/aws-sdk-emr/types.rb', line 1189 class DescribeJobFlowsInput < Struct.new( :created_after, :created_before, :job_flow_ids, :job_flow_states) include Aws::Structure end |
#job_flow_ids ⇒ Array<String>
Return only job flows whose job flow ID is contained in this list.
1189 1190 1191 1192 1193 1194 1195 |
# File 'lib/aws-sdk-emr/types.rb', line 1189 class DescribeJobFlowsInput < Struct.new( :created_after, :created_before, :job_flow_ids, :job_flow_states) include Aws::Structure end |
#job_flow_states ⇒ Array<String>
Return only job flows whose state is contained in this list.
1189 1190 1191 1192 1193 1194 1195 |
# File 'lib/aws-sdk-emr/types.rb', line 1189 class DescribeJobFlowsInput < Struct.new( :created_after, :created_before, :job_flow_ids, :job_flow_states) include Aws::Structure end |