workflow_steps
Creates, updates, deletes, gets or lists a workflow_steps resource.
Overview
| Name | workflow_steps |
| Type | Resource |
| Id | aws.customer_profiles.workflow_steps |
Fields
The following fields are returned by SELECT queries:
- get_workflow_steps
| Name | Datatype | Description |
|---|---|---|
items | array | List containing workflow step details. |
next_token | string | If there are additional results, this is the token for the next set of results. |
workflow_id | string | Unique identifier for the workflow. (pattern: <code>[a-f0-9]{32}</code>) |
workflow_type | string | The type of workflow. The only supported value is APPFLOW_INTEGRATION. (APPFLOW_INTEGRATION) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_workflow_steps | select | domain_name, workflow_id, region | next-token, max-results | Get granular list of steps in workflow. |
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 |
|---|---|---|
domain_name | string | The unique name of the domain. |
region | string | AWS region (default: us-east-1) |
workflow_id | string | Unique identifier for the workflow. |
max-results | integer | The maximum number of results to return per page. |
next-token | string | The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results. |
SELECT examples
- get_workflow_steps
Get granular list of steps in workflow.
SELECT
items,
next_token,
workflow_id,
workflow_type
FROM aws.customer_profiles.workflow_steps
WHERE domain_name = '{{ domain_name }}' -- required
AND workflow_id = '{{ workflow_id }}' -- required
AND region = '{{ region }}' -- required
AND `next-token` = '{{ next-token }}'
AND `max-results` = '{{ max-results }}'
;