CfnRuntimeEndpointProps
- class aws_cdk.aws_bedrockagentcore.CfnRuntimeEndpointProps(*, agent_runtime_id, name, agent_runtime_version=None, description=None, tags=None)
Bases:
objectProperties for defining a
CfnRuntimeEndpoint.- Parameters:
agent_runtime_id (
str) – The agent runtime ID.name (
str) – The name of the AgentCore Runtime endpoint.agent_runtime_version (
Optional[str]) – The version of the agent.description (
Optional[str]) – Contains information about an agent runtime endpoint. An agent runtime is the execution environment for a Amazon Bedrock Agent.tags (
Optional[Mapping[str,str]]) – The tags for the AgentCore Runtime endpoint.
- See:
- 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 cfn_runtime_endpoint_props = bedrockagentcore.CfnRuntimeEndpointProps( agent_runtime_id="agentRuntimeId", name="name", # the properties below are optional agent_runtime_version="agentRuntimeVersion", description="description", tags={ "tags_key": "tags" } )
Attributes
- agent_runtime_id
The agent runtime ID.
- agent_runtime_version
The version of the agent.
- description
Contains information about an agent runtime endpoint.
An agent runtime is the execution environment for a Amazon Bedrock Agent.
- name
The name of the AgentCore Runtime endpoint.
- tags
The tags for the AgentCore Runtime endpoint.