Skip to content

Get Execution Flow Snapshot

bedrockagentruntime_get_execution_flow_snapshot R Documentation

Retrieves the flow definition snapshot used for a flow execution

Description

Retrieves the flow definition snapshot used for a flow execution. The snapshot represents the flow metadata and definition as it existed at the time the execution was started. Note that even if the flow is edited after an execution starts, the snapshot connected to the execution remains unchanged.

Flow executions is in preview release for Amazon Bedrock and is subject to change.

Usage

bedrockagentruntime_get_execution_flow_snapshot(executionIdentifier,
  flowAliasIdentifier, flowIdentifier)

Arguments

executionIdentifier

[required] The unique identifier of the flow execution.

flowAliasIdentifier

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

flowIdentifier

[required] The unique identifier of the flow.

Value

A list with the following syntax:

list(
  customerEncryptionKeyArn = "string",
  definition = "string",
  executionRoleArn = "string",
  flowAliasIdentifier = "string",
  flowIdentifier = "string",
  flowVersion = "string"
)

Request syntax

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