Skip to main content

step_dependencies

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

Overview

Namestep_dependencies
TypeResource
Idaws.deadline.step_dependencies

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
statusstringThe step dependency 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_dependenciesselectfarm_id, queue_id, job_id, step_id, regionnextToken, maxResultsLists the dependencies for a step.

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 step dependencies list.
job_idstringThe job ID for the step dependencies list.
queue_idstringThe queue ID for the step dependencies list.
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 the dependencies for a step.

SELECT
status,
step_id
FROM aws.deadline.step_dependencies
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 }}'
;