interface OrchestrationAIAgentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Wisdom.CfnAIAgentPropsMixin.OrchestrationAIAgentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswisdom#CfnAIAgentPropsMixin_OrchestrationAIAgentConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.wisdom.CfnAIAgentPropsMixin.OrchestrationAIAgentConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_wisdom.CfnAIAgentPropsMixin.OrchestrationAIAgentConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wisdom » CfnAIAgentPropsMixin » OrchestrationAIAgentConfigurationProperty |
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 orchestrationAIAgentConfigurationProperty: wisdom.CfnAIAgentPropsMixin.OrchestrationAIAgentConfigurationProperty = {
connectInstanceArn: 'connectInstanceArn',
locale: 'locale',
orchestrationAiGuardrailId: 'orchestrationAiGuardrailId',
orchestrationAiPromptId: 'orchestrationAiPromptId',
toolConfigurations: [{
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 |
|---|---|---|
| connect | string | |
| locale? | string | |
| orchestration | string | |
| orchestration | string | |
| tool | IResolvable | (IResolvable | Tool)[] |
connectInstanceArn?
Type:
string
(optional)
locale?
Type:
string
(optional)
orchestrationAiGuardrailId?
Type:
string
(optional)
orchestrationAiPromptId?
Type:
string
(optional)
toolConfigurations?
Type:
IResolvable | (IResolvable | Tool)[]
(optional)

.NET
Go
Java
Python
TypeScript