interface HarnessInlineFunctionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnHarness.HarnessInlineFunctionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnHarness_HarnessInlineFunctionConfigProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnHarness.HarnessInlineFunctionConfigProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnHarness.HarnessInlineFunctionConfigProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnHarness » HarnessInlineFunctionConfigProperty |
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 inputSchema: any;
const harnessInlineFunctionConfigProperty: bedrockagentcore.CfnHarness.HarnessInlineFunctionConfigProperty = {
description: 'description',
inputSchema: inputSchema,
};
Properties
| Name | Type | Description |
|---|---|---|
| description | string | |
| input | any | JSON Schema describing the tool's input parameters. |
description
Type:
string
inputSchema
Type:
any
JSON Schema describing the tool's input parameters.

.NET
Go
Java
Python
TypeScript