CfnHarnessEndpointProps

class aws_cdk.aws_bedrockagentcore.CfnHarnessEndpointProps(*, endpoint_name, harness_id, description=None, tags=None, target_version=None)

Bases: object

Properties for defining a CfnHarnessEndpoint.

Parameters:
  • endpoint_name (str) – The name of the endpoint. Must start with a letter and contain only alphanumeric characters and underscores.

  • harness_id (str) – The ID of the harness that the endpoint belongs to.

  • description (Optional[str]) – The description of the endpoint.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Tags to apply to the harness endpoint resource.

  • target_version (Optional[str]) – The harness version that the endpoint points to and serves invocations from.

See:

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

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# 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_harness_endpoint_props = bedrockagentcore.CfnHarnessEndpointProps(
    endpoint_name="endpointName",
    harness_id="harnessId",

    # the properties below are optional
    description="description",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    target_version="targetVersion"
)

Attributes

description

The description of the endpoint.

See:

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

endpoint_name

The name of the endpoint.

Must start with a letter and contain only alphanumeric characters and underscores.

See:

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

harness_id

The ID of the harness that the endpoint belongs to.

See:

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

tags

Tags to apply to the harness endpoint resource.

See:

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

target_version

The harness version that the endpoint points to and serves invocations from.

See:

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