Skip to content

Bedrock Agent  >  Operations  >  delete_flow_alias

delete_flow_alias

Operation

delete_flow_alias async

delete_flow_alias(input: DeleteFlowAliasInput, plugins: list[Plugin] | None = None) -> DeleteFlowAliasOutput

Deletes an alias of a flow.

Parameters:

Name Type Description Default
input DeleteFlowAliasInput

An instance of DeleteFlowAliasInput.

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
DeleteFlowAliasOutput

An instance of DeleteFlowAliasOutput.

Input

DeleteFlowAliasInput dataclass

Dataclass for DeleteFlowAliasInput structure.

Attributes

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

The unique identifier of the alias to be deleted.

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

The unique identifier of the flow that the alias belongs to.

Output

DeleteFlowAliasOutput dataclass

Dataclass for DeleteFlowAliasOutput structure.

Attributes

flow_id instance-attribute
flow_id: str

The unique identifier of the flow that the alias belongs to.

id instance-attribute
id: str

The unique identifier of the flow.