CfnAgentAliasProps

class aws_cdk.aws_bedrock.CfnAgentAliasProps(*, agent_alias_name, agent_id, description=None, routing_configuration=None, tags=None)

Bases: object

Properties for defining a CfnAgentAlias.

Parameters:
  • agent_alias_name (str) – The name of the alias of the agent.

  • agent_id (str) – The unique identifier of the agent.

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

  • routing_configuration (Union[IResolvable, Sequence[Union[IResolvable, AgentAliasRoutingConfigurationListItemProperty, Dict[str, Any]]], None]) – Contains details about the routing configuration 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-agentalias.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_agent_alias_props = bedrock.CfnAgentAliasProps(
    agent_alias_name="agentAliasName",
    agent_id="agentId",

    # the properties below are optional
    description="description",
    routing_configuration=[bedrock.CfnAgentAlias.AgentAliasRoutingConfigurationListItemProperty(
        agent_version="agentVersion"
    )],
    tags={
        "tags_key": "tags"
    }
)

Attributes

agent_alias_name

The name of the alias of the agent.

See:

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

agent_id

The unique identifier of the agent.

See:

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

description

The description of the alias of the agent.

See:

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

routing_configuration

Contains details about the routing configuration of the alias.

See:

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

tags

.

See:

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

Type:

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