CfnHarnessEndpointProps
- class aws_cdk.aws_bedrockagentcore.CfnHarnessEndpointProps(*, endpoint_name, harness_id, description=None, tags=None, target_version=None)
Bases:
objectProperties 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:
- 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.
- endpoint_name
The name of the endpoint.
Must start with a letter and contain only alphanumeric characters and underscores.
- harness_id
The ID of the harness that the endpoint belongs to.
- tags
Tags to apply to the harness endpoint resource.
- target_version
The harness version that the endpoint points to and serves invocations from.