interface SelfServiceAIAgentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Wisdom.Mixins.CfnAIAgentPropsMixin.SelfServiceAIAgentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswisdom/mixins#CfnAIAgentPropsMixin_SelfServiceAIAgentConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.wisdom.mixins.CfnAIAgentPropsMixin.SelfServiceAIAgentConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_wisdom.mixins.CfnAIAgentPropsMixin.SelfServiceAIAgentConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wisdom » mixins » CfnAIAgentPropsMixin » SelfServiceAIAgentConfigurationProperty |
The configuration of the self-service AI agent.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as wisdom_mixins } from '@aws-cdk/mixins-preview/aws-wisdom';
const selfServiceAIAgentConfigurationProperty: wisdom_mixins.CfnAIAgentPropsMixin.SelfServiceAIAgentConfigurationProperty = {
associationConfigurations: [{
associationConfigurationData: {
knowledgeBaseAssociationConfigurationData: {
contentTagFilter: {
andConditions: [{
key: 'key',
value: 'value',
}],
orConditions: [{
andConditions: [{
key: 'key',
value: 'value',
}],
tagCondition: {
key: 'key',
value: 'value',
},
}],
tagCondition: {
key: 'key',
value: 'value',
},
},
maxResults: 123,
overrideKnowledgeBaseSearchType: 'overrideKnowledgeBaseSearchType',
},
},
associationId: 'associationId',
associationType: 'associationType',
}],
selfServiceAiGuardrailId: 'selfServiceAiGuardrailId',
selfServiceAnswerGenerationAiPromptId: 'selfServiceAnswerGenerationAiPromptId',
selfServicePreProcessingAiPromptId: 'selfServicePreProcessingAiPromptId',
};
Properties
| Name | Type | Description |
|---|---|---|
| association | IResolvable | (IResolvable | Association)[] | The association configuration of the self-service AI agent. |
| self | string | The ID of the self-service AI guardrail. |
| self | string | The ID of the self-service answer generation AI prompt. |
| self | string | The ID of the self-service preprocessing AI prompt. |
associationConfigurations?
Type:
IResolvable | (IResolvable | Association)[]
(optional)
The association configuration of the self-service AI agent.
selfServiceAiGuardrailId?
Type:
string
(optional)
The ID of the self-service AI guardrail.
selfServiceAnswerGenerationAiPromptId?
Type:
string
(optional)
The ID of the self-service answer generation AI prompt.
selfServicePreProcessingAiPromptId?
Type:
string
(optional)
The ID of the self-service preprocessing AI prompt.

.NET
Go
Java
Python
TypeScript