Class CfnAgentAliasPropsMixin.AgentAliasHistoryEventProperty
Contains details about the history of the alias.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnAgentAliasPropsMixin.AgentAliasHistoryEventProperty : CfnAgentAliasPropsMixin.IAgentAliasHistoryEventProperty
Syntax (vb)
Public Class CfnAgentAliasPropsMixin.AgentAliasHistoryEventProperty Implements CfnAgentAliasPropsMixin.IAgentAliasHistoryEventProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var agentAliasHistoryEventProperty = new AgentAliasHistoryEventProperty {
EndDate = "endDate",
RoutingConfiguration = new [] { new AgentAliasRoutingConfigurationListItemProperty {
AgentVersion = "agentVersion"
} },
StartDate = "startDate"
};
Synopsis
Constructors
| AgentAliasHistoryEventProperty() | Contains details about the history of the alias. |
Properties
| EndDate | The date that the alias stopped being associated to the version in the |
| RoutingConfiguration | Contains details about the version of the agent with which the alias is associated. |
| StartDate | The date that the alias began being associated to the version in the |
Constructors
AgentAliasHistoryEventProperty()
Contains details about the history of the alias.
public AgentAliasHistoryEventProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var agentAliasHistoryEventProperty = new AgentAliasHistoryEventProperty {
EndDate = "endDate",
RoutingConfiguration = new [] { new AgentAliasRoutingConfigurationListItemProperty {
AgentVersion = "agentVersion"
} },
StartDate = "startDate"
};
Properties
EndDate
The date that the alias stopped being associated to the version in the routingConfiguration object.
public string? EndDate { get; set; }
Property Value
Remarks
RoutingConfiguration
Contains details about the version of the agent with which the alias is associated.
public object? RoutingConfiguration { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnAgentAliasPropsMixin.IAgentAliasRoutingConfigurationListItemProperty)[]
StartDate
The date that the alias began being associated to the version in the routingConfiguration object.
public string? StartDate { get; set; }