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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forRuntimeEndpointAttributesstatic final classAn implementation forRuntimeEndpointAttributes -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The ARN of the parent agent runtime.The ARN of the runtime endpoint.default StringWhen the endpoint was created.default StringThe description of the runtime endpoint.default StringThe unique identifier of the runtime endpoint.The name of the runtime endpoint.default StringWhen the endpoint was last updated.default StringThe live version of the agent runtime that is currently serving requests.default StringThe current status of the runtime endpoint.default StringThe target version the endpoint is transitioning to (during updates).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAgentRuntimeArn
The ARN of the parent agent runtime. -
getAgentRuntimeEndpointArn
The ARN of the runtime endpoint. -
getEndpointName
The name of the runtime endpoint. -
getCreatedAt
When the endpoint was created.Default: - Creation time not available
-
getDescription
The description of the runtime endpoint.Default: - No description
-
getEndpointId
The unique identifier of the runtime endpoint.Default: - Endpoint ID not available
-
getLastUpdatedAt
When the endpoint was last updated.Default: - Last update time not available
-
getLiveVersion
The live version of the agent runtime that is currently serving requests.Default: - Live version not available
-
getStatus
The current status of the runtime endpoint.Default: - Status not available
-
getTargetVersion
The target version the endpoint is transitioning to (during updates).Default: - Target version not available
-
builder
- Returns:
- a
RuntimeEndpointAttributes.BuilderofRuntimeEndpointAttributes
-