RuntimeEndpointAttributes
- class aws_cdk.aws_bedrock_agentcore_alpha.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(experimental) Attributes for importing an existing Runtime Endpoint.
- Parameters:
agent_runtime_arn (
str) – (experimental) The ARN of the parent agent runtime.agent_runtime_endpoint_arn (
str) – (experimental) The ARN of the runtime endpoint.endpoint_name (
str) – (experimental) The name of the runtime endpoint.created_at (
Optional[str]) – (experimental) When the endpoint was created. Default: - Creation time not availabledescription (
Optional[str]) – (experimental) The description of the runtime endpoint. Default: - No descriptionendpoint_id (
Optional[str]) – (experimental) The unique identifier of the runtime endpoint. Default: - Endpoint ID not availablelast_updated_at (
Optional[str]) – (experimental) When the endpoint was last updated. Default: - Last update time not availablelive_version (
Optional[str]) – (experimental) The live version of the agent runtime that is currently serving requests. Default: - Live version not availablestatus (
Optional[str]) – (experimental) The current status of the runtime endpoint. Default: - Status not availabletarget_version (
Optional[str]) – (experimental) The target version the endpoint is transitioning to (during updates). Default: - Target version not available
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_bedrock_agentcore_alpha as bedrock_agentcore_alpha runtime_endpoint_attributes = bedrock_agentcore_alpha.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
(experimental) The ARN of the parent agent runtime.
- Stability:
experimental
- agent_runtime_endpoint_arn
(experimental) The ARN of the runtime endpoint.
- Stability:
experimental
- created_at
(experimental) When the endpoint was created.
- Default:
Creation time not available
- Stability:
experimental
- description
(experimental) The description of the runtime endpoint.
- Default:
No description
- Stability:
experimental
- endpoint_id
(experimental) The unique identifier of the runtime endpoint.
- Default:
Endpoint ID not available
- Stability:
experimental
- endpoint_name
(experimental) The name of the runtime endpoint.
- Stability:
experimental
- last_updated_at
(experimental) When the endpoint was last updated.
- Default:
Last update time not available
- Stability:
experimental
- live_version
(experimental) The live version of the agent runtime that is currently serving requests.
- Default:
Live version not available
- Stability:
experimental
- status
(experimental) The current status of the runtime endpoint.
- Default:
Status not available
- Stability:
experimental
- target_version
(experimental) The target version the endpoint is transitioning to (during updates).
- Default:
Target version not available
- Stability:
experimental