CfnFlowAliasProps

class aws_cdk.aws_bedrock.CfnFlowAliasProps(*, flow_arn, name, routing_configuration, description=None, tags=None)

Bases: object

Properties for defining a CfnFlowAlias.

Parameters:
  • flow_arn (str) – The Amazon Resource Name (ARN) of the alias.

  • name (str) – The name of the alias.

  • routing_configuration (Union[IResolvable, Sequence[Union[IResolvable, FlowAliasRoutingConfigurationListItemProperty, Dict[str, Any]]]]) – A list of configurations about the versions that the alias maps to. Currently, you can only specify one.

  • description (Optional[str]) – A description of the alias.

  • tags (Optional[Mapping[str, str]]) – Metadata that you can assign to a resource as key-value pairs. For more information, see the following resources:. - Tag naming limits and requirements - Tagging best practices

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-flowalias.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_bedrock as bedrock

cfn_flow_alias_props = bedrock.CfnFlowAliasProps(
    flow_arn="flowArn",
    name="name",
    routing_configuration=[bedrock.CfnFlowAlias.FlowAliasRoutingConfigurationListItemProperty(
        flow_version="flowVersion"
    )],

    # the properties below are optional
    description="description",
    tags={
        "tags_key": "tags"
    }
)

Attributes

description

A description of the alias.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-flowalias.html#cfn-bedrock-flowalias-description

flow_arn

The Amazon Resource Name (ARN) of the alias.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-flowalias.html#cfn-bedrock-flowalias-flowarn

name

The name of the alias.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-flowalias.html#cfn-bedrock-flowalias-name

routing_configuration

A list of configurations about the versions that the alias maps to.

Currently, you can only specify one.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-flowalias.html#cfn-bedrock-flowalias-routingconfiguration

tags

.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-flowalias.html#cfn-bedrock-flowalias-tags

Type:

Metadata that you can assign to a resource as key-value pairs. For more information, see the following resources