interface CfnAgentAliasProps
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_bedrock.CfnAgentAliasProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnAgentAliasProps |
![]() | software.amazon.awscdk.services.bedrock.CfnAgentAliasProps |
![]() | aws_cdk.aws_bedrock.CfnAgentAliasProps |
![]() | aws-cdk-lib » aws_bedrock » CfnAgentAliasProps |
Properties for defining a CfnAgentAlias
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-agentalias.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
const cfnAgentAliasProps: bedrock.CfnAgentAliasProps = {
agentAliasName: 'agentAliasName',
agentId: 'agentId',
// the properties below are optional
description: 'description',
routingConfiguration: [{
agentVersion: 'agentVersion',
}],
tags: {
tagsKey: 'tags',
},
};
Properties
Name | Type | Description |
---|---|---|
agent | string | The name of the alias of the agent. |
agent | string | The unique identifier of the agent. |
description? | string | The description of the alias of the agent. |
routing | IResolvable | IResolvable | Agent [] | Contains details about the routing configuration of the alias. |
tags? | { [string]: string } | Metadata that you can assign to a resource as key-value pairs. For more information, see the following resources:. |
agentAliasName
Type:
string
The name of the alias of the agent.
agentId
Type:
string
The unique identifier of the agent.
description?
Type:
string
(optional)
The description of the alias of the agent.
routingConfiguration?
Type:
IResolvable
|
IResolvable
|
Agent
[]
(optional)
Contains details about the routing configuration of the alias.
tags?
Type:
{ [string]: string }
(optional)
Metadata that you can assign to a resource as key-value pairs. For more information, see the following resources:.