Interface CfnAgentAliasProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAgentAliasProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-01-25T00:20:51.575Z")
@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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAgentAliasProps
static final class
An implementation forCfnAgentAliasProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnAgentAliasProps.Builder
builder()
The name of the alias of the agent.The unique identifier of the agent.default String
The description of the alias of the agent.default Object
Contains details about the routing configuration of the alias.getTags()
Metadata that you can assign to a resource as key-value pairs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAgentAliasName
The name of the alias of the agent.- See Also:
-
getAgentId
The unique identifier of the agent.- See Also:
-
getDescription
The description of the alias of the agent.- See Also:
-
getRoutingConfiguration
Contains details about the routing configuration of the alias.- See Also:
-
getTags
Metadata that you can assign to a resource as key-value pairs. For more information, see the following resources:.- See Also:
-
builder
- Returns:
- a
CfnAgentAliasProps.Builder
ofCfnAgentAliasProps
-