interface CfnHarnessEndpointProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnHarnessEndpointProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnHarnessEndpointProps |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnHarnessEndpointProps |
Python | aws_cdk.aws_bedrockagentcore.CfnHarnessEndpointProps |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnHarnessEndpointProps |
Properties for defining a CfnHarnessEndpoint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const cfnHarnessEndpointProps: bedrockagentcore.CfnHarnessEndpointProps = {
endpointName: 'endpointName',
harnessId: 'harnessId',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
targetVersion: 'targetVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoint | string | The name of the endpoint. |
| harness | string | The ID of the harness that the endpoint belongs to. |
| description? | string | The description of the endpoint. |
| tags? | Cfn[] | Tags to apply to the harness endpoint resource. |
| target | string | The harness version that the endpoint points to and serves invocations from. |
endpointName
Type:
string
The name of the endpoint.
Must start with a letter and contain only alphanumeric characters and underscores.
harnessId
Type:
string
The ID of the harness that the endpoint belongs to.
description?
Type:
string
(optional)
The description of the endpoint.
tags?
Type:
Cfn[]
(optional)
Tags to apply to the harness endpoint resource.
targetVersion?
Type:
string
(optional)
The harness version that the endpoint points to and serves invocations from.

.NET
Go
Java
Python
TypeScript