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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAgentAlias.AgentAliasHistoryEventProperty
static final class
An implementation forCfnAgentAlias.AgentAliasHistoryEventProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The date that the alias stopped being associated to the version in theroutingConfiguration
object.default Object
Contains details about the version of the agent with which the alias is associated.default String
The date that the alias began being associated to the version in theroutingConfiguration
object.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 theroutingConfiguration
object.- See Also:
-
getRoutingConfiguration
Contains details about the version of the agent with which the alias is associated.- See Also:
-
getStartDate
The date that the alias began being associated to the version in theroutingConfiguration
object.- See Also:
-
builder
-