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:
objectProperties for CfnFlowAliasPropsMixin.
- Parameters:
concurrency_configuration (
Union[IResolvable,FlowAliasConcurrencyConfigurationProperty,Dict[str,Any],None]) – The configuration that specifies how nodes in the flow are executed concurrently.description (
Optional[str]) – A description of the alias.flow_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the alias.name (
Optional[str]) – The name of the alias.routing_configuration (
Union[IResolvable,Sequence[Union[IResolvable,FlowAliasRoutingConfigurationListItemProperty,Dict[str,Any]]],None]) – A list of configurations about the versions that the alias maps to. Currently, you can only specify one.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.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.
- description
A description of the alias.
- flow_arn
The Amazon Resource Name (ARN) of the alias.
- name
The name of the alias.
- routing_configuration
A list of configurations about the versions that the alias maps to.
Currently, you can only specify one.
- tags
.
- See:
- Type:
Metadata that you can assign to a resource as key-value pairs. For more information, see the following resources