Skip to content

Get Workflow Steps

customerprofiles_get_workflow_steps R Documentation

Get granular list of steps in workflow

Description

Get granular list of steps in workflow.

Usage

customerprofiles_get_workflow_steps(DomainName, WorkflowId, NextToken,
  MaxResults)

Arguments

DomainName

[required] The unique name of the domain.

WorkflowId

[required] Unique identifier for the workflow.

NextToken

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.

MaxResults

The maximum number of results to return per page.

Value

A list with the following syntax:

list(
  WorkflowId = "string",
  WorkflowType = "APPFLOW_INTEGRATION",
  Items = list(
    list(
      AppflowIntegration = list(
        FlowName = "string",
        Status = "NOT_STARTED"|"IN_PROGRESS"|"COMPLETE"|"FAILED"|"SPLIT"|"RETRY"|"CANCELLED",
        ExecutionMessage = "string",
        RecordsProcessed = 123,
        BatchRecordsStartTime = "string",
        BatchRecordsEndTime = "string",
        CreatedAt = as.POSIXct(
          "2015-01-01"
        ),
        LastUpdatedAt = as.POSIXct(
          "2015-01-01"
        )
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$get_workflow_steps(
  DomainName = "string",
  WorkflowId = "string",
  NextToken = "string",
  MaxResults = 123
)