Skip to content

Stop Flow Execution

bedrockagentruntime_stop_flow_execution R Documentation

Stops an Amazon Bedrock flow's execution

Description

Stops an Amazon Bedrock flow's execution. This operation prevents further processing of the flow and changes the execution status to Aborted.

Usage

bedrockagentruntime_stop_flow_execution(executionIdentifier,
  flowAliasIdentifier, flowIdentifier)

Arguments

executionIdentifier

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

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(
  executionArn = "string",
  status = "Running"|"Succeeded"|"Failed"|"TimedOut"|"Aborted"
)

Request syntax

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