Container for the parameters to the DescribeJobFlows operation.

DescribeJobFlows returns a list of job flows that match all of the supplied parameters. The parameters can include a list of job flow IDs, job flow states, and restrictions on job flow creation date and time.

Regardless of supplied parameters, only job flows created within the last two months are returned.

If no parameters are supplied, then job flows matching either of the following criteria are returned:

  • Job flows created and completed in the last two weeks
  • Job flows created within the last two months that are in one of the following states: RUNNING , WAITING , SHUTTING_DOWN , STARTING

Amazon Elastic MapReduce can return a maximum of 512 job flow descriptions.

Namespace: Amazon.ElasticMapReduce.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class DescribeJobFlowsRequest : AmazonWebServiceRequest
Public Class DescribeJobFlowsRequest _
	Inherits AmazonWebServiceRequest
public ref class DescribeJobFlowsRequest : public AmazonWebServiceRequest

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
DescribeJobFlowsRequest()()()()
Initializes a new instance of the DescribeJobFlowsRequest class
CreatedAfter
Return only job flows created after this date and time.
CreatedBefore
Return only job flows created before this date and time.
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
JobFlowIds
Return only job flows whose job flow ID is contained in this list.
JobFlowStates
Return only job flows whose state is contained in this list.
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
WithCreatedAfter(DateTime)
Sets the CreatedAfter property
WithCreatedBefore(DateTime)
Sets the CreatedBefore property
WithJobFlowIds(IEnumerable<(Of <<'(String>)>>))
Adds elements to the JobFlowIds collection
WithJobFlowIds(array<String>[]()[][])
Adds elements to the JobFlowIds collection
WithJobFlowStates(IEnumerable<(Of <<'(String>)>>))
Adds elements to the JobFlowStates collection
WithJobFlowStates(array<String>[]()[][])
Adds elements to the JobFlowStates collection

Inheritance Hierarchy

System..::..Object
  Amazon.Runtime..::..AmazonWebServiceRequest
    Amazon.ElasticMapReduce.Model..::..DescribeJobFlowsRequest

See Also