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

.NET
Go
Java
Python
TypeScript