CfnHarnessEndpointMixinProps
- class aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnHarnessEndpointMixinProps(*, description=None, endpoint_name=None, harness_id=None, tags=None, target_version=None)
Bases:
objectProperties for CfnHarnessEndpointPropsMixin.
- Parameters:
description (
Optional[str]) – The description of the endpoint.endpoint_name (
Optional[str]) – The name of the endpoint. Must start with a letter and contain only alphanumeric characters and underscores.harness_id (
Optional[str]) – The ID of the harness that the endpoint belongs to.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.cfn_property_mixins import aws_bedrockagentcore as bedrockagentcore cfn_harness_endpoint_mixin_props = bedrockagentcore.CfnHarnessEndpointMixinProps( description="description", endpoint_name="endpointName", harness_id="harnessId", 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.