CfnFlowAliasMixinProps

class aws_cdk.mixins_preview.aws_bedrock.mixins.CfnFlowAliasMixinProps(*, concurrency_configuration=None, description=None, flow_arn=None, name=None, routing_configuration=None, tags=None)

Bases: object

Properties for CfnFlowAliasPropsMixin.

Parameters:
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.mixins_preview.aws_bedrock import mixins as bedrock_mixins

cfn_flow_alias_mixin_props = bedrock_mixins.CfnFlowAliasMixinProps(
    concurrency_configuration=bedrock_mixins.CfnFlowAliasPropsMixin.FlowAliasConcurrencyConfigurationProperty(
        max_concurrency=123,
        type="type"
    ),
    description="description",
    flow_arn="flowArn",
    name="name",
    routing_configuration=[bedrock_mixins.CfnFlowAliasPropsMixin.FlowAliasRoutingConfigurationListItemProperty(
        flow_version="flowVersion"
    )],
    tags={
        "tags_key": "tags"
    }
)

Attributes

concurrency_configuration

The configuration that specifies how nodes in the flow are executed concurrently.

See:

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

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