Interface CfnAgentAliasProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAgentAliasProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:32.238Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAgentAliasPropsstatic final classAn implementation forCfnAgentAliasProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnAgentAliasProps.Builderbuilder()The name of the alias of the agent.The unique identifier of the agent.default StringThe description of the alias of the agent.default ObjectContains 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.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnAgentAlias.AgentAliasRoutingConfigurationListItemProperty>- 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.BuilderofCfnAgentAliasProps
-