Safe Haskell | None |
---|---|
Language | Haskell2010 |
This API is deprecated and will eventually be removed. We recommend you use ListClusters
, DescribeCluster
, ListSteps
, ListInstanceGroups
and ListBootstrapActions
instead.
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.
http://docs.aws.amazon.com/ElasticMapReduce/latest/API/API_DescribeJobFlows.html
- data DescribeJobFlows
- describeJobFlows :: DescribeJobFlows
- djfCreatedAfter :: Lens' DescribeJobFlows (Maybe UTCTime)
- djfCreatedBefore :: Lens' DescribeJobFlows (Maybe UTCTime)
- djfJobFlowIds :: Lens' DescribeJobFlows [Text]
- djfJobFlowStates :: Lens' DescribeJobFlows [JobFlowExecutionState]
- data DescribeJobFlowsResponse
- describeJobFlowsResponse :: DescribeJobFlowsResponse
- djfrJobFlows :: Lens' DescribeJobFlowsResponse [JobFlowDetail]
Request
data DescribeJobFlows Source
Request constructor
describeJobFlows :: DescribeJobFlows Source
DescribeJobFlows
constructor.
The fields accessible through corresponding lenses are:
Request lenses
djfCreatedAfter :: Lens' DescribeJobFlows (Maybe UTCTime) Source
Return only job flows created after this date and time.
djfCreatedBefore :: Lens' DescribeJobFlows (Maybe UTCTime) Source
Return only job flows created before this date and time.
djfJobFlowIds :: Lens' DescribeJobFlows [Text] Source
Return only job flows whose job flow ID is contained in this list.
djfJobFlowStates :: Lens' DescribeJobFlows [JobFlowExecutionState] Source
Return only job flows whose state is contained in this list.
Response
Response constructor
describeJobFlowsResponse :: DescribeJobFlowsResponse Source
DescribeJobFlowsResponse
constructor.
The fields accessible through corresponding lenses are:
Response lenses
djfrJobFlows :: Lens' DescribeJobFlowsResponse [JobFlowDetail] Source
A list of job flows matching the parameters supplied.