interface ToolInputSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnPromptPropsMixin.ToolInputSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnPromptPropsMixin_ToolInputSchemaProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnPromptPropsMixin.ToolInputSchemaProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnPromptPropsMixin.ToolInputSchemaProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnPromptPropsMixin » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
declare const json: any;
const toolInputSchemaProperty: bedrock_mixins.CfnPromptPropsMixin.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