Interface CfnAgentAlias.AgentAliasHistoryEventProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAgentAlias.AgentAliasHistoryEventProperty.Jsii$Proxy
- Enclosing class:
CfnAgentAlias
@Stability(Stable)
public static interface CfnAgentAlias.AgentAliasHistoryEventProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrock.*;
AgentAliasHistoryEventProperty agentAliasHistoryEventProperty = AgentAliasHistoryEventProperty.builder()
.endDate("endDate")
.routingConfiguration(List.of(AgentAliasRoutingConfigurationListItemProperty.builder()
.agentVersion("agentVersion")
.build()))
.startDate("startDate")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAgentAlias.AgentAliasHistoryEventPropertystatic final classAn implementation forCfnAgentAlias.AgentAliasHistoryEventProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe date that the alias stopped being associated to the version in theroutingConfigurationobject.default ObjectContains details about the version of the agent with which the alias is associated.default StringThe date that the alias began being associated to the version in theroutingConfigurationobject.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndDate
The date that the alias stopped being associated to the version in theroutingConfigurationobject.- See Also:
-
getRoutingConfiguration
Contains details about the version of the agent with which the alias is associated.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnAgentAlias.AgentAliasRoutingConfigurationListItemProperty>- See Also:
-
getStartDate
The date that the alias began being associated to the version in theroutingConfigurationobject.- See Also:
-
builder
-