Interface CfnRuntimeEndpointProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuntimeEndpointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:00.090Z")
@Stability(Stable)
public interface CfnRuntimeEndpointProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnRuntimeEndpoint.
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.bedrockagentcore.*;
CfnRuntimeEndpointProps cfnRuntimeEndpointProps = CfnRuntimeEndpointProps.builder()
.agentRuntimeId("agentRuntimeId")
.name("name")
// the properties below are optional
.agentRuntimeVersion("agentRuntimeVersion")
.description("description")
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRuntimeEndpointPropsstatic final classAn implementation forCfnRuntimeEndpointProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAgentRuntimeId
The agent runtime ID.- See Also:
-
getName
The name of the AgentCore Runtime endpoint.- See Also:
-
getAgentRuntimeVersion
The version of the agent.- See Also:
-
getDescription
Contains information about an agent runtime endpoint.An agent runtime is the execution environment for a Amazon Bedrock Agent.
- See Also:
-
getTags
The tags for the AgentCore Runtime endpoint.- See Also:
-
builder
- Returns:
- a
CfnRuntimeEndpointProps.BuilderofCfnRuntimeEndpointProps
-