CfnRuntimeEndpointProps

class aws_cdk.aws_bedrockagentcore.CfnRuntimeEndpointProps(*, agent_runtime_id, name, agent_runtime_version=None, description=None, tags=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-agentruntimeid

agent_runtime_version

The version of the agent.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-agentruntimeversion

description

Contains information about an agent runtime endpoint.

An agent runtime is the execution environment for a Amazon Bedrock Agent.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-description

name

The name of the AgentCore Runtime endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-name

tags

The tags for the AgentCore Runtime endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-tags