interface IRuntimeEndpoint
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Agentcore.Alpha.IRuntimeEndpoint |
Go | github.com/aws/aws-cdk-go/awsbedrockagentcorealpha/v2#IRuntimeEndpoint |
Java | software.amazon.awscdk.services.bedrock.agentcore.alpha.IRuntimeEndpoint |
Python | aws_cdk.aws_bedrock_agentcore_alpha.IRuntimeEndpoint |
TypeScript (source) | @aws-cdk/aws-bedrock-agentcore-alpha » IRuntimeEndpoint |
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Implements
IDependable, IConstruct, IEnvironment, IResource, IRuntime
Implemented by
Runtime
Obtainable from
Runtime.fromRuntimeEndpointAttributes()
Interface for Runtime Endpoint resources.
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | The ARN of the parent agent runtime. |
| agent | string | The ARN of the runtime endpoint resource. |
| endpoint | string | The name of the runtime endpoint. |
| env | Resource | The environment this resource belongs to. |
| node | Node | The tree node. |
| runtime | Runtime | A reference to a RuntimeEndpoint resource. |
| stack | Stack | The stack in which this resource is defined. |
| created | string | When the endpoint was created. |
| description? | string | The description of the runtime endpoint. |
| live | string | The live version of the agent runtime that is currently serving requests. |
| status? | string | The current status of the runtime endpoint. |
| target | string | The target version the endpoint is transitioning to (during updates). |
agentRuntimeArn
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
string
The ARN of the parent agent runtime.
agentRuntimeEndpointArn
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
string
The ARN of the runtime endpoint resource. Example
"arn:aws:bedrock-agentcore:us-west-2:123456789012:agent-runtime-endpoint/endpoint-abc123"
endpointName
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
string
The name of the runtime endpoint.
env
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
Resource
The environment this resource belongs to.
For resources that are created and managed in a Stack (those created by
creating new class instances like new Role(), new Bucket(), etc.), this
is always the same as the environment of the stack they belong to.
For referenced resources (those obtained from referencing methods like
Role.fromRoleArn(), Bucket.fromBucketName(), etc.), they might be
different than the stack they were imported into.
node
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
Node
The tree node.
runtimeEndpointRef
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
Runtime
A reference to a RuntimeEndpoint resource.
stack
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
Stack
The stack in which this resource is defined.
createdAt?
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
string
(optional)
When the endpoint was created.
description?
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
string
(optional)
The description of the runtime endpoint.
liveVersion?
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
string
(optional)
The live version of the agent runtime that is currently serving requests.
status?
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
string
(optional)
The current status of the runtime endpoint.
targetVersion?
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
string
(optional)
The target version the endpoint is transitioning to (during updates).
Methods
| Name | Description |
|---|---|
| apply | Apply the given removal policy to this resource. |
| with(...mixins) | Applies one or more mixins to this construct. |
applyRemovalPolicy(policy)
public applyRemovalPolicy(policy: RemovalPolicy): void
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Parameters
- policy
RemovalPolicy
Apply the given removal policy to this resource.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you've removed it from the CDK application or because you've made a change that requires the resource to be replaced.
The resource can be deleted (RemovalPolicy.DESTROY), or left in your AWS
account for data recovery and cleanup later (RemovalPolicy.RETAIN).
with(...mixins)
public with(...mixins: IMixin[]): IConstruct
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Parameters
- mixins
IMixin— The mixins to apply.
Returns
Applies one or more mixins to this construct.
Mixins are applied in order. The list of constructs is captured at the start of the call, so constructs added by a mixin will not be visited.

.NET
Go
Java
Python
TypeScript (