Interface CfnAgentAliasMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAgentAliasMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:23.232Z")
@Stability(Stable)
public interface CfnAgentAliasMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnAgentAliasPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.bedrock.mixins.*;
CfnAgentAliasMixinProps cfnAgentAliasMixinProps = CfnAgentAliasMixinProps.builder()
.agentAliasName("agentAliasName")
.agentId("agentId")
.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 forCfnAgentAliasMixinPropsstatic final classAn implementation forCfnAgentAliasMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the alias of the agent.default StringThe 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: '<'eitherIResolvableorCfnAgentAliasPropsMixin.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
CfnAgentAliasMixinProps.BuilderofCfnAgentAliasMixinProps
-