Skip to content

Bedrock Agent  >  Operations  >  list_flows

list_flows

Operation

list_flows async

list_flows(input: ListFlowsInput, plugins: list[Plugin] | None = None) -> ListFlowsOutput

Returns a list of flows and information about each flow. For more information, see Manage a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

Parameters:

Name Type Description Default
input ListFlowsInput

An instance of ListFlowsInput.

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
ListFlowsOutput

An instance of ListFlowsOutput.

Input

ListFlowsInput dataclass

Dataclass for ListFlowsInput structure.

Attributes

max_results class-attribute instance-attribute
max_results: int | None = None

The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.

next_token class-attribute instance-attribute
next_token: str | None = None

If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

Output

ListFlowsOutput dataclass

Dataclass for ListFlowsOutput structure.

Attributes

flow_summaries instance-attribute
flow_summaries: list[FlowSummary]

A list, each member of which contains information about a flow.

next_token class-attribute instance-attribute
next_token: str | None = None

If the total number of results is greater than the maxResults value provided in the request, use this token when making another request in the nextToken field to return the next batch of results.