interface CfnAgentAliasMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnAgentAliasMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnAgentAliasMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnAgentAliasMixinProps |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnAgentAliasMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnAgentAliasMixinProps |
Properties for CfnAgentAliasPropsMixin.
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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const cfnAgentAliasMixinProps: bedrock_mixins.CfnAgentAliasMixinProps = {
agentAliasName: 'agentAliasName',
agentId: 'agentId',
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
(optional)
The name of the alias of the agent.
agentId?
Type:
string
(optional)
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:.

.NET
Go
Java
Python
TypeScript