Interface CfnAgentAliasProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAgentAliasProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-22T22:42:48.138Z") @Stability(Stable) public interface CfnAgentAliasProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnAgentAlias.

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.*;
 CfnAgentAliasProps cfnAgentAliasProps = CfnAgentAliasProps.builder()
         .agentAliasName("agentAliasName")
         .agentId("agentId")
         // the properties below are optional
         .description("description")
         .routingConfiguration(List.of(AgentAliasRoutingConfigurationListItemProperty.builder()
                 .agentVersion("agentVersion")
                 .build()))
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 

See Also: