Class CfnPromptPropsMixin.ToolInputSchemaProperty
The schema for the tool.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Bedrock
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnPromptPropsMixin.ToolInputSchemaProperty : CfnPromptPropsMixin.IToolInputSchemaProperty
Syntax (vb)
Public Class CfnPromptPropsMixin.ToolInputSchemaProperty Implements CfnPromptPropsMixin.IToolInputSchemaProperty
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Bedrock;
var json;
var toolInputSchemaProperty = new ToolInputSchemaProperty {
Json = json
};
Synopsis
Constructors
| ToolInputSchemaProperty() | The schema for the tool. |
Properties
| Json | The JSON schema for the tool. |
Constructors
ToolInputSchemaProperty()
The schema for the tool.
public ToolInputSchemaProperty()
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Bedrock;
var json;
var toolInputSchemaProperty = new ToolInputSchemaProperty {
Json = json
};
Properties
Json
The JSON schema for the tool.
public object? Json { get; set; }