AWS Fundamentals Logo
AWS Fundamentals
AWS::Bedrock::FlowAlias

Bedrock FlowAlias

Definition of AWS::Bedrock::FlowAlias Resource Type

Properties

6 configurable properties. 3 required. Click a row to see details.

Filter:
PropertyTypeFlags
FlowArn
string
RequiredCreate-only
Name
string
Required
RoutingConfiguration
Array<FlowAliasRoutingConfigurationListItem>
Required
ConcurrencyConfiguration
FlowAliasConcurrencyConfiguration
Description
string
Tags
TagsMap

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ArnstringArn of the Flow Alias
CreatedAtstringTime Stamp.
FlowIdstringIdentifier for a flow resource.
IdstringId for a Flow Alias generated at the server side.
UpdatedAtstringTime Stamp.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Bedrock::FlowAlias

Resources:
  MyResource:
    Type: AWS::Bedrock::FlowAlias
    Properties:
      Name: "my-name"
      FlowArn: "arn:aws:service:region:account:resource"
      RoutingConfiguration: []
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

bedrock:CreateFlowAliasbedrock:GetFlowAliasbedrock:TagResourcebedrock:ListTagsForResource

read

bedrock:GetFlowAliasbedrock:ListTagsForResource

update

bedrock:UpdateFlowAliasbedrock:GetFlowAliasbedrock:TagResourcebedrock:UntagResourcebedrock:ListTagsForResource

delete

bedrock:DeleteFlowAlias

list

bedrock:ListFlowAliases

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceBedrock
Properties11
Required3
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

FlowArn

External Links