interface EmailGenerativeAnswerAIAgentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Wisdom.CfnAIAgent.EmailGenerativeAnswerAIAgentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnAIAgent_EmailGenerativeAnswerAIAgentConfigurationProperty |
Java | software.amazon.awscdk.services.wisdom.CfnAIAgent.EmailGenerativeAnswerAIAgentConfigurationProperty |
Python | aws_cdk.aws_wisdom.CfnAIAgent.EmailGenerativeAnswerAIAgentConfigurationProperty |
TypeScript | aws-cdk-lib » aws_wisdom » CfnAIAgent » EmailGenerativeAnswerAIAgentConfigurationProperty |
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-lib';
const emailGenerativeAnswerAIAgentConfigurationProperty: wisdom.CfnAIAgent.EmailGenerativeAnswerAIAgentConfigurationProperty = {
associationConfigurations: [{
associationConfigurationData: {
knowledgeBaseAssociationConfigurationData: {
contentTagFilter: {
andConditions: [{
key: 'key',
// the properties below are optional
value: 'value',
}],
orConditions: [{
andConditions: [{
key: 'key',
// the properties below are optional
value: 'value',
}],
tagCondition: {
key: 'key',
// the properties below are optional
value: 'value',
},
}],
tagCondition: {
key: 'key',
// the properties below are optional
value: 'value',
},
},
maxResults: 123,
overrideKnowledgeBaseSearchType: 'overrideKnowledgeBaseSearchType',
},
},
associationId: 'associationId',
associationType: 'associationType',
}],
emailGenerativeAnswerAiPromptId: 'emailGenerativeAnswerAiPromptId',
emailQueryReformulationAiPromptId: 'emailQueryReformulationAiPromptId',
locale: 'locale',
};
Properties
| Name | Type | Description |
|---|---|---|
| association | IResolvable | (IResolvable | Association)[] | |
| email | string | |
| email | string | |
| locale? | string |
associationConfigurations?
Type:
IResolvable | (IResolvable | Association)[]
(optional)
emailGenerativeAnswerAiPromptId?
Type:
string
(optional)
emailQueryReformulationAiPromptId?
Type:
string
(optional)
locale?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript