Skip to main content

step_consumers

Creates, updates, deletes, gets or lists a step_consumers resource.

Overview

Namestep_consumers
TypeResource
Idaws.deadline.step_consumers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
statusstringThe step consumer status. (RESOLVED, UNRESOLVED)
step_idstringThe step ID. (pattern: <code>step-[0-9a-f]{32}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_step_consumersselectfarm_id, queue_id, job_id, step_id, regionnextToken, maxResultsLists step consumers.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
farm_idstringThe farm ID for the list of step consumers.
job_idstringThe job ID for the step consumer.
queue_idstringThe queue ID for the step consumer.
regionstringAWS region (default: us-east-1)
step_idstringThe step ID to include on the list.
maxResultsintegerThe maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.
nextTokenstringThe token for the next set of results, or null to start from the beginning.

SELECT examples

Lists step consumers.

SELECT
status,
step_id
FROM aws.deadline.step_consumers
WHERE farm_id = '{{ farm_id }}' -- required
AND queue_id = '{{ queue_id }}' -- required
AND job_id = '{{ job_id }}' -- required
AND step_id = '{{ step_id }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;