interface ToolInputSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnPromptVersionPropsMixin.ToolInputSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnPromptVersionPropsMixin_ToolInputSchemaProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnPromptVersionPropsMixin.ToolInputSchemaProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnPromptVersionPropsMixin.ToolInputSchemaProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnPromptVersionPropsMixin » 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/cfn-property-mixins';
declare const json: any;
const toolInputSchemaProperty: bedrock.CfnPromptVersionPropsMixin.ToolInputSchemaProperty = {
json: json,
};
Properties
| Name | Type | Description |
|---|---|---|
| json? | any | The JSON schema for the tool. |
json?
Type:
any
(optional)
The JSON schema for the tool.
For more information, see JSON Schema Reference .

.NET
Go
Java
Python
TypeScript