Skip to main content

flow_aliases

Creates, updates, deletes, gets or lists a flow_aliases resource.

Overview

Nameflow_aliases
TypeResource
Idaws.bedrock_agent.flow_aliases

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe unique identifier of the alias of the flow. (pattern: <code>(TSTALIASID|[0-9a-zA-Z]{10})</code>)
namestringThe name of the alias. (pattern: <code>([0-9a-zA-Z][_-]?){1,100}</code>)
arnstringThe Amazon Resource Name (ARN) of the alias. (pattern: <code>arn:aws:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:flow/[0-9a-zA-Z]{10}/alias/(TSTALIASID|[0-9a-zA-Z]{10})</code>)
concurrency_configurationobjectDetermines how multiple nodes in a flow can run in parallel. Running nodes concurrently can improve your flow's performance.
created_atstring (date-time)The time at which the alias was created.
descriptionstringA description of the alias.
flow_idstringThe unique identifier of the flow. (pattern: <code>[0-9a-zA-Z]{10}</code>)
routing_configurationarrayA list of configurations about the versions that the alias maps to. Currently, you can only specify one.
updated_atstring (date-time)The time at which the alias was last updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_flow_aliasesselectflow_identifier, regionmaxResults, nextTokenReturns a list of aliases for a flow.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
flow_identifierstringThe unique identifier of the flow for which aliases are being returned.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe 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.
nextTokenstringIf 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.

SELECT examples

Returns a list of aliases for a flow.

SELECT
id,
name,
arn,
concurrency_configuration,
created_at,
description,
flow_id,
routing_configuration,
updated_at
FROM aws.bedrock_agent.flow_aliases
WHERE flow_identifier = '{{ flow_identifier }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;