CfnAgentAliasMixinProps
- class aws_cdk.mixins_preview.aws_bedrock.mixins.CfnAgentAliasMixinProps(*, agent_alias_name=None, agent_id=None, description=None, routing_configuration=None, tags=None)
Bases:
objectProperties for CfnAgentAliasPropsMixin.
- Parameters:
agent_alias_name (
Optional[str]) – The name of the alias of the agent.agent_id (
Optional[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.mixins_preview.aws_bedrock import mixins as bedrock_mixins cfn_agent_alias_mixin_props = bedrock_mixins.CfnAgentAliasMixinProps( agent_alias_name="agentAliasName", agent_id="agentId", description="description", routing_configuration=[bedrock_mixins.CfnAgentAliasPropsMixin.AgentAliasRoutingConfigurationListItemProperty( agent_version="agentVersion" )], tags={ "tags_key": "tags" } )
Attributes
- agent_alias_name
The name of the alias of the agent.
- agent_id
The unique identifier of the agent.
- description
The description of the alias of the agent.
- routing_configuration
Contains details about the routing configuration of the alias.
- tags
.
- See:
- Type:
Metadata that you can assign to a resource as key-value pairs. For more information, see the following resources