Class CfnRuntimeEndpoint

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.bedrockagentcore.CfnRuntimeEndpoint
All Implemented Interfaces:
IInspectable, ITaggableV2, IRuntimeEndpointRef, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)", date="2025-10-29T11:15:33.817Z") @Stability(Stable) public class CfnRuntimeEndpoint extends CfnResource implements IInspectable, IRuntimeEndpointRef, ITaggableV2
AgentCore Runtime is a secure, serverless runtime purpose-built for deploying and scaling dynamic AI agents and tools using any open-source framework including LangGraph, CrewAI, and Strands Agents, any protocol, and any model.

For more information about using agent runtime endpoints in Amazon Bedrock AgentCore, see AgentCore Runtime versioning and endpoints .

See the Properties section below for descriptions of both the required and optional properties.

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.*;
 CfnRuntimeEndpoint cfnRuntimeEndpoint = CfnRuntimeEndpoint.Builder.create(this, "MyCfnRuntimeEndpoint")
         .agentRuntimeId("agentRuntimeId")
         .name("name")
         // the properties below are optional
         .agentRuntimeVersion("agentRuntimeVersion")
         .description("description")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnRuntimeEndpoint

      protected CfnRuntimeEndpoint(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnRuntimeEndpoint

      protected CfnRuntimeEndpoint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnRuntimeEndpoint

      @Stability(Stable) public CfnRuntimeEndpoint(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnRuntimeEndpointProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrAgentRuntimeArn

      @Stability(Stable) @NotNull public String getAttrAgentRuntimeArn()
      The Amazon Resource Name (ARN) of the runtime agent.
    • getAttrAgentRuntimeEndpointArn

      @Stability(Stable) @NotNull public String getAttrAgentRuntimeEndpointArn()
      The endpoint Amazon Resource Name (ARN).
    • getAttrCreatedAt

      @Stability(Stable) @NotNull public String getAttrCreatedAt()
      The time at which the endpoint was created.
    • getAttrFailureReason

      @Stability(Stable) @NotNull public String getAttrFailureReason()
      The reason for failure if the memory is in a failed state.
    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
      The ID of the runtime endpoint.
    • getAttrLastUpdatedAt

      @Stability(Stable) @NotNull public String getAttrLastUpdatedAt()
      The time at which the endpoint was last updated.
    • getAttrLiveVersion

      @Stability(Stable) @NotNull public String getAttrLiveVersion()
      The live version for the runtime endpoint.
    • getAttrStatus

      @Stability(Stable) @NotNull public String getAttrStatus()
      The status of the runtime endpoint.
    • getAttrTargetVersion

      @Stability(Stable) @NotNull public String getAttrTargetVersion()
      The target version.
    • getCdkTagManager

      @Stability(Stable) @NotNull public TagManager getCdkTagManager()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getCdkTagManager in interface ITaggableV2
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getRuntimeEndpointRef

      @Stability(Stable) @NotNull public RuntimeEndpointReference getRuntimeEndpointRef()
      A reference to a RuntimeEndpoint resource.
      Specified by:
      getRuntimeEndpointRef in interface IRuntimeEndpointRef
    • getAgentRuntimeId

      @Stability(Stable) @NotNull public String getAgentRuntimeId()
      The agent runtime ID.
    • setAgentRuntimeId

      @Stability(Stable) public void setAgentRuntimeId(@NotNull String value)
      The agent runtime ID.
    • getName

      @Stability(Stable) @NotNull public String getName()
      The name of the AgentCore Runtime endpoint.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      The name of the AgentCore Runtime endpoint.
    • getAgentRuntimeVersion

      @Stability(Stable) @Nullable public String getAgentRuntimeVersion()
      The version of the agent.
    • setAgentRuntimeVersion

      @Stability(Stable) public void setAgentRuntimeVersion(@Nullable String value)
      The version of the agent.
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      Contains information about an agent runtime endpoint.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      Contains information about an agent runtime endpoint.
    • getTags

      @Stability(Stable) @Nullable public Map<String,String> getTags()
      The tags for the AgentCore Runtime endpoint.
    • setTags

      @Stability(Stable) public void setTags(@Nullable Map<String,String> value)
      The tags for the AgentCore Runtime endpoint.