RuntimeEndpointAttributes

class aws_cdk.aws_bedrockagentcore.RuntimeEndpointAttributes(*, agent_runtime_arn, agent_runtime_endpoint_arn, endpoint_name, created_at=None, description=None, endpoint_id=None, last_updated_at=None, live_version=None, status=None, target_version=None)

Bases: object

Attributes for importing an existing Runtime Endpoint.

Parameters:
  • agent_runtime_arn (str) – The ARN of the parent agent runtime.

  • agent_runtime_endpoint_arn (str) – The ARN of the runtime endpoint.

  • endpoint_name (str) – The name of the runtime endpoint.

  • created_at (Optional[str]) – When the endpoint was created. Default: - Creation time not available

  • description (Optional[str]) – The description of the runtime endpoint. Default: - No description

  • endpoint_id (Optional[str]) – The unique identifier of the runtime endpoint. Default: - Endpoint ID not available

  • last_updated_at (Optional[str]) – When the endpoint was last updated. Default: - Last update time not available

  • live_version (Optional[str]) – The live version of the agent runtime that is currently serving requests. Default: - Live version not available

  • status (Optional[str]) – The current status of the runtime endpoint. Default: - Status not available

  • target_version (Optional[str]) – The target version the endpoint is transitioning to (during updates). Default: - Target version not available

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_bedrockagentcore as bedrockagentcore

runtime_endpoint_attributes = bedrockagentcore.RuntimeEndpointAttributes(
    agent_runtime_arn="agentRuntimeArn",
    agent_runtime_endpoint_arn="agentRuntimeEndpointArn",
    endpoint_name="endpointName",

    # the properties below are optional
    created_at="createdAt",
    description="description",
    endpoint_id="endpointId",
    last_updated_at="lastUpdatedAt",
    live_version="liveVersion",
    status="status",
    target_version="targetVersion"
)

Attributes

agent_runtime_arn

The ARN of the parent agent runtime.

agent_runtime_endpoint_arn

The ARN of the runtime endpoint.

created_at

When the endpoint was created.

Default:
  • Creation time not available

description

The description of the runtime endpoint.

Default:
  • No description

endpoint_id

The unique identifier of the runtime endpoint.

Default:
  • Endpoint ID not available

endpoint_name

The name of the runtime endpoint.

last_updated_at

When the endpoint was last updated.

Default:
  • Last update time not available

live_version

The live version of the agent runtime that is currently serving requests.

Default:
  • Live version not available

status

The current status of the runtime endpoint.

Default:
  • Status not available

target_version

The target version the endpoint is transitioning to (during updates).

Default:
  • Target version not available