Interface RuntimeEndpointAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
RuntimeEndpointAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.129.0 (build eaca441)", date="2026-05-19T08:18:44.500Z") @Stability(Stable) public interface RuntimeEndpointAttributes extends software.amazon.jsii.JsiiSerializable
Attributes for importing an existing Runtime Endpoint.

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.*;
 RuntimeEndpointAttributes runtimeEndpointAttributes = RuntimeEndpointAttributes.builder()
         .agentRuntimeArn("agentRuntimeArn")
         .agentRuntimeEndpointArn("agentRuntimeEndpointArn")
         .endpointName("endpointName")
         // the properties below are optional
         .createdAt("createdAt")
         .description("description")
         .endpointId("endpointId")
         .lastUpdatedAt("lastUpdatedAt")
         .liveVersion("liveVersion")
         .status("status")
         .targetVersion("targetVersion")
         .build();
 
  • Method Details

    • getAgentRuntimeArn

      @Stability(Stable) @NotNull String getAgentRuntimeArn()
      The ARN of the parent agent runtime.
    • getAgentRuntimeEndpointArn

      @Stability(Stable) @NotNull String getAgentRuntimeEndpointArn()
      The ARN of the runtime endpoint.
    • getEndpointName

      @Stability(Stable) @NotNull String getEndpointName()
      The name of the runtime endpoint.
    • getCreatedAt

      @Stability(Stable) @Nullable default String getCreatedAt()
      When the endpoint was created.

      Default: - Creation time not available

    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The description of the runtime endpoint.

      Default: - No description

    • getEndpointId

      @Stability(Stable) @Nullable default String getEndpointId()
      The unique identifier of the runtime endpoint.

      Default: - Endpoint ID not available

    • getLastUpdatedAt

      @Stability(Stable) @Nullable default String getLastUpdatedAt()
      When the endpoint was last updated.

      Default: - Last update time not available

    • getLiveVersion

      @Stability(Stable) @Nullable default String getLiveVersion()
      The live version of the agent runtime that is currently serving requests.

      Default: - Live version not available

    • getStatus

      @Stability(Stable) @Nullable default String getStatus()
      The current status of the runtime endpoint.

      Default: - Status not available

    • getTargetVersion

      @Stability(Stable) @Nullable default String getTargetVersion()
      The target version the endpoint is transitioning to (during updates).

      Default: - Target version not available

    • builder

      @Stability(Stable) static RuntimeEndpointAttributes.Builder builder()
      Returns:
      a RuntimeEndpointAttributes.Builder of RuntimeEndpointAttributes