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: