Learn R Programming

paws.analytics (version 0.1.6)

emr_describe_job_flows: This API is deprecated and will eventually be removed

Description

This API is deprecated and will eventually be removed. We recommend you use ListClusters, DescribeCluster, ListSteps, ListInstanceGroups and ListBootstrapActions instead.

Usage

emr_describe_job_flows(CreatedAfter, CreatedBefore, JobFlowIds,
  JobFlowStates)

Arguments

CreatedAfter

Return only job flows created after this date and time.

CreatedBefore

Return only job flows created before this date and time.

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.

Request syntax

svc$describe_job_flows(
  CreatedAfter = as.POSIXct(
    "2015-01-01"
  ),
  CreatedBefore = as.POSIXct(
    "2015-01-01"
  ),
  JobFlowIds = list(
    "string"
  ),
  JobFlowStates = list(
    "STARTING"|"BOOTSTRAPPING"|"RUNNING"|"WAITING"|"SHUTTING_DOWN"|"TERMINATED"|"COMPLETED"|"FAILED"
  )
)

Details

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 EMR can return a maximum of 512 job flow descriptions.