Skip to content

Get Flow Execution

bedrockagentruntime_get_flow_execution R Documentation

Retrieves details about a specific flow execution, including its status, start and end times, and any errors that occurred during execution

Description

Retrieves details about a specific flow execution, including its status, start and end times, and any errors that occurred during execution.

Usage

bedrockagentruntime_get_flow_execution(executionIdentifier,
  flowAliasIdentifier, flowIdentifier)

Arguments

executionIdentifier

[required] The unique identifier of the flow execution to retrieve.

flowAliasIdentifier

[required] The unique identifier of the flow alias used for the execution.

flowIdentifier

[required] The unique identifier of the flow.

Value

A list with the following syntax:

list(
  endedAt = as.POSIXct(
    "2015-01-01"
  ),
  errors = list(
    list(
      error = "ExecutionTimedOut",
      message = "string",
      nodeName = "string"
    )
  ),
  executionArn = "string",
  flowAliasIdentifier = "string",
  flowIdentifier = "string",
  flowVersion = "string",
  startedAt = as.POSIXct(
    "2015-01-01"
  ),
  status = "Running"|"Succeeded"|"Failed"|"TimedOut"|"Aborted"
)

Request syntax

svc$get_flow_execution(
  executionIdentifier = "string",
  flowAliasIdentifier = "string",
  flowIdentifier = "string"
)