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 ID of the parent Agent Runtime.

  • name (str)

  • agent_runtime_version (Optional[str])

  • description (Optional[str])

  • tags (Optional[Mapping[str, str]]) – A map of tag keys and values.

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 ID of the parent Agent Runtime.

See:

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

agent_runtime_version

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

Type:

see

description

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

Type:

see

name

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

Type:

see

tags

A map of tag keys and values.

See:

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