step_dependencies
Creates, updates, deletes, gets or lists a step_dependencies resource.
Overview
| Name | step_dependencies |
| Type | Resource |
| Id | aws.deadline.step_dependencies |
Fields
The following fields are returned by SELECT queries:
- list_step_dependencies
| Name | Datatype | Description |
|---|---|---|
status | string | The step dependency status. (RESOLVED, UNRESOLVED) |
step_id | string | The step ID. (pattern: <code>step-[0-9a-f]{32}</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_step_dependencies | select | farm_id, queue_id, job_id, step_id, region | nextToken, maxResults | Lists 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.
| Name | Datatype | Description |
|---|---|---|
farm_id | string | The farm ID for the step dependencies list. |
job_id | string | The job ID for the step dependencies list. |
queue_id | string | The queue ID for the step dependencies list. |
region | string | AWS region (default: us-east-1) |
step_id | string | The step ID to include on the list. |
maxResults | integer | The maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages. |
nextToken | string | The token for the next set of results, or null to start from the beginning. |
SELECT examples
- list_step_dependencies
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 }}'
;