interface HarnessToolProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnHarness.HarnessToolProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnHarness_HarnessToolProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnHarness.HarnessToolProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnHarness.HarnessToolProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnHarness » HarnessToolProperty |
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';
declare const awsIam: any;
declare const inputSchema: any;
declare const none: any;
const harnessToolProperty: bedrockagentcore.CfnHarness.HarnessToolProperty = {
type: 'type',
// the properties below are optional
config: {
agentCoreBrowser: {
browserArn: 'browserArn',
},
agentCoreCodeInterpreter: {
codeInterpreterArn: 'codeInterpreterArn',
},
agentCoreGateway: {
gatewayArn: 'gatewayArn',
// the properties below are optional
outboundAuth: {
awsIam: awsIam,
none: none,
oauth: {
providerArn: 'providerArn',
scopes: ['scopes'],
// the properties below are optional
customParameters: {
customParametersKey: 'customParameters',
},
defaultReturnUrl: 'defaultReturnUrl',
grantType: 'grantType',
},
},
},
inlineFunction: {
description: 'description',
inputSchema: inputSchema,
},
remoteMcp: {
url: 'url',
// the properties below are optional
headers: {
headersKey: 'headers',
},
},
},
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | |
| config? | IResolvable | Harness | |
| name? | string |
type
Type:
string
config?
Type:
IResolvable | Harness
(optional)
name?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript