interface ToolInputSchemaProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.aws_bedrock.CfnPrompt.ToolInputSchemaProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnPrompt_ToolInputSchemaProperty | 
  Java | software.amazon.awscdk.services.bedrock.CfnPrompt.ToolInputSchemaProperty | 
  Python | aws_cdk.aws_bedrock.CfnPrompt.ToolInputSchemaProperty | 
  TypeScript  | aws-cdk-lib » aws_bedrock » CfnPrompt » ToolInputSchemaProperty | 
The schema for the tool.
The top level schema type must be object . For more information, see Call a tool with the Converse API in the Amazon Bedrock User Guide.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
declare const json: any;
const toolInputSchemaProperty: bedrock.CfnPrompt.ToolInputSchemaProperty = {
  json: json,
};
Properties
| Name | Type | Description | 
|---|---|---|
| json | any | The JSON schema for the tool. | 
json
Type:
any
The JSON schema for the tool.
For more information, see JSON Schema Reference .

 .NET
 Go
 Java
 Python
 TypeScript