interface HarnessInlineFunctionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnHarnessPropsMixin.HarnessInlineFunctionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnHarnessPropsMixin_HarnessInlineFunctionConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnHarnessPropsMixin.HarnessInlineFunctionConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnHarnessPropsMixin.HarnessInlineFunctionConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnHarnessPropsMixin » 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/cfn-property-mixins';
declare const inputSchema: any;
const harnessInlineFunctionConfigProperty: bedrockagentcore.CfnHarnessPropsMixin.HarnessInlineFunctionConfigProperty = {
description: 'description',
inputSchema: inputSchema,
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | |
| input | any | JSON Schema describing the tool's input parameters. |
description?
Type:
string
(optional)
inputSchema?
Type:
any
(optional)
JSON Schema describing the tool's input parameters.

.NET
Go
Java
Python
TypeScript