RuntimeEndpointProps

class aws_cdk.aws_bedrock_agentcore_alpha.RuntimeEndpointProps(*, agent_runtime_id, agent_runtime_version=None, description=None, endpoint_name=None, tags=None)

Bases: object

(experimental) Properties for creating a Bedrock Agent Core Runtime Endpoint resource.

Parameters:
  • agent_runtime_id (str) – (experimental) The ID of the agent runtime to associate with this endpoint This is the unique identifier of the runtime resource Pattern: ^[a-zA-Z][a-zA-Z0-9_]{0,99}-[a-zA-Z0-9]{10}$.

  • agent_runtime_version (Optional[str]) – (experimental) The version of the agent runtime to use for this endpoint If not specified, the endpoint will point to version “1” of the runtime. Pattern: ^([1-9][0-9]{0,4})$ Default: “1”

  • description (Optional[str]) – (experimental) Optional description for the agent runtime endpoint Length Minimum: 1 , Maximum: 256. Default: - No description

  • endpoint_name (Optional[str]) – (experimental) The name of the agent runtime endpoint Valid characters are a-z, A-Z, 0-9, _ (underscore) Must start with a letter and can be up to 48 characters long Pattern: ^[a-zA-Z][a-zA-Z0-9_]{0,47}$. Default: - auto generate

  • tags (Optional[Mapping[str, str]]) – (experimental) Tags for the agent runtime endpoint A list of key:value pairs of tags to apply to this RuntimeEndpoint resource Pattern: ^[a-zA-Z0-9s._:/=+@-]*$. Default: {} - no tags

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_props = bedrock_agentcore_alpha.RuntimeEndpointProps(
    agent_runtime_id="agentRuntimeId",

    # the properties below are optional
    agent_runtime_version="agentRuntimeVersion",
    description="description",
    endpoint_name="endpointName",
    tags={
        "tags_key": "tags"
    }
)

Attributes

agent_runtime_id

^[a-zA-Z][a-zA-Z0-9_]{0,99}-[a-zA-Z0-9]{10}$.

Stability:

experimental

Type:

(experimental) The ID of the agent runtime to associate with this endpoint This is the unique identifier of the runtime resource Pattern

agent_runtime_version

(experimental) The version of the agent runtime to use for this endpoint If not specified, the endpoint will point to version “1” of the runtime.

Pattern: ^([1-9][0-9]{0,4})$

Default:

“1”

Stability:

experimental

description
Default:
  • No description

Stability:

experimental

Type:

(experimental) Optional description for the agent runtime endpoint Length Minimum

Type:

1 , Maximum

endpoint_name

^[a-zA-Z][a-zA-Z0-9_]{0,47}$.

Default:
  • auto generate

Stability:

experimental

Type:

(experimental) The name of the agent runtime endpoint Valid characters are a-z, A-Z, 0-9, _ (underscore) Must start with a letter and can be up to 48 characters long Pattern

tags

^[a-zA-Z0-9s._:/=+@-]*$.

Default:

{} - no tags

Stability:

experimental

Type:

(experimental) Tags for the agent runtime endpoint A list of key

Type:

value pairs of tags to apply to this RuntimeEndpoint resource Pattern