list_flow_executions¶
Operation¶
list_flow_executions
async
¶
list_flow_executions(input: ListFlowExecutionsInput, plugins: list[Plugin] | None = None) -> ListFlowExecutionsOutput
Lists all executions of a flow. Results can be paginated and include summary information about each execution, such as status, start and end times, and the execution's Amazon Resource Name (ARN).
Note
Flow executions is in preview release for Amazon Bedrock and is subject to change.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
ListFlowExecutionsInput
|
An instance of |
required |
plugins
|
list[Plugin] | None
|
A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations. |
None
|
Returns:
| Type | Description |
|---|---|
ListFlowExecutionsOutput
|
An instance of |
Input¶
ListFlowExecutionsInput
dataclass
¶
Dataclass for ListFlowExecutionsInput structure.
Attributes¶
flow_alias_identifier
class-attribute
instance-attribute
¶
flow_alias_identifier: str | None = None
The unique identifier of the flow alias to list executions for.
flow_identifier
class-attribute
instance-attribute
¶
flow_identifier: str | None = None
The unique identifier of the flow to list executions for.
Output¶
ListFlowExecutionsOutput
dataclass
¶
Dataclass for ListFlowExecutionsOutput structure.
Attributes¶
flow_execution_summaries
instance-attribute
¶
flow_execution_summaries: list[FlowExecutionSummary]
A list of flow execution summaries. Each summary includes the execution ARN, flow identifier, flow alias identifier, flow version, status, and timestamps.