interface ToolConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Wisdom.CfnAIAgentPropsMixin.ToolConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswisdom#CfnAIAgentPropsMixin_ToolConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.wisdom.CfnAIAgentPropsMixin.ToolConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_wisdom.CfnAIAgentPropsMixin.ToolConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wisdom » CfnAIAgentPropsMixin » ToolConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wisdom as wisdom } from '@aws-cdk/cfn-property-mixins';
declare const annotations: any;
declare const inputSchema: any;
declare const outputSchema: any;
const toolConfigurationProperty: wisdom.CfnAIAgentPropsMixin.ToolConfigurationProperty = {
annotations: annotations,
description: 'description',
inputSchema: inputSchema,
instruction: {
examples: ['examples'],
instruction: 'instruction',
},
outputFilters: [{
jsonPath: 'jsonPath',
outputConfiguration: {
outputVariableNameOverride: 'outputVariableNameOverride',
sessionDataNamespace: 'sessionDataNamespace',
},
}],
outputSchema: outputSchema,
overrideInputValues: [{
jsonPath: 'jsonPath',
value: {
constant: {
type: 'type',
value: 'value',
},
},
}],
title: 'title',
toolId: 'toolId',
toolName: 'toolName',
toolType: 'toolType',
userInteractionConfiguration: {
isUserConfirmationRequired: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| annotations? | any | |
| description? | string | |
| input | any | |
| instruction? | IResolvable | Tool | |
| output | IResolvable | (IResolvable | Tool)[] | |
| output | any | |
| override | IResolvable | (IResolvable | Tool)[] | |
| title? | string | |
| tool | string | |
| tool | string | |
| tool | string | |
| user | IResolvable | User |
annotations?
Type:
any
(optional)
description?
Type:
string
(optional)
inputSchema?
Type:
any
(optional)
instruction?
Type:
IResolvable | Tool
(optional)
outputFilters?
Type:
IResolvable | (IResolvable | Tool)[]
(optional)
outputSchema?
Type:
any
(optional)
overrideInputValues?
Type:
IResolvable | (IResolvable | Tool)[]
(optional)
title?
Type:
string
(optional)
toolId?
Type:
string
(optional)
toolName?
Type:
string
(optional)
toolType?
Type:
string
(optional)
userInteractionConfiguration?
Type:
IResolvable | User
(optional)

.NET
Go
Java
Python
TypeScript