Skip to main content

workflow_steps

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

Overview

Nameworkflow_steps
TypeResource
Idaws.customer_profiles.workflow_steps

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
itemsarrayList containing workflow step details.
next_tokenstringIf there are additional results, this is the token for the next set of results.
workflow_idstringUnique identifier for the workflow. (pattern: <code>[a-f0-9]{32}</code>)
workflow_typestringThe type of workflow. The only supported value is APPFLOW_INTEGRATION. (APPFLOW_INTEGRATION)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_workflow_stepsselectdomain_name, workflow_id, regionnext-token, max-resultsGet 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.

NameDatatypeDescription
domain_namestringThe unique name of the domain.
regionstringAWS region (default: us-east-1)
workflow_idstringUnique identifier for the workflow.
max-resultsintegerThe maximum number of results to return per page.
next-tokenstringThe 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 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 }}'
;