interface AgentAliasHistoryEventProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnAgentAliasPropsMixin.AgentAliasHistoryEventProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnAgentAliasPropsMixin_AgentAliasHistoryEventProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnAgentAliasPropsMixin.AgentAliasHistoryEventProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnAgentAliasPropsMixin.AgentAliasHistoryEventProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnAgentAliasPropsMixin » AgentAliasHistoryEventProperty |
Contains details about the history of the alias.
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 agentAliasHistoryEventProperty: bedrock_mixins.CfnAgentAliasPropsMixin.AgentAliasHistoryEventProperty = {
endDate: 'endDate',
routingConfiguration: [{
agentVersion: 'agentVersion',
}],
startDate: 'startDate',
};
Properties
| Name | Type | Description |
|---|---|---|
| end | string | The date that the alias stopped being associated to the version in the routingConfiguration object. |
| routing | IResolvable | (IResolvable | Agent)[] | Contains details about the version of the agent with which the alias is associated. |
| start | string | The date that the alias began being associated to the version in the routingConfiguration object. |
endDate?
Type:
string
(optional)
The date that the alias stopped being associated to the version in the routingConfiguration object.
routingConfiguration?
Type:
IResolvable | (IResolvable | Agent)[]
(optional)
Contains details about the version of the agent with which the alias is associated.
startDate?
Type:
string
(optional)
The date that the alias began being associated to the version in the routingConfiguration object.

.NET
Go
Java
Python
TypeScript