Interface CfnAIAgentPropsMixin.EmailResponseAIAgentConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAIAgentPropsMixin.EmailResponseAIAgentConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAIAgentPropsMixin
@Stability(Stable)
public static interface CfnAIAgentPropsMixin.EmailResponseAIAgentConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration settings for the EMAIL_RESPONSE AI agent including prompts, locale, and knowledge base associations.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.wisdom.mixins.*;
EmailResponseAIAgentConfigurationProperty emailResponseAIAgentConfigurationProperty = EmailResponseAIAgentConfigurationProperty.builder()
.associationConfigurations(List.of(AssociationConfigurationProperty.builder()
.associationConfigurationData(AssociationConfigurationDataProperty.builder()
.knowledgeBaseAssociationConfigurationData(KnowledgeBaseAssociationConfigurationDataProperty.builder()
.contentTagFilter(TagFilterProperty.builder()
.andConditions(List.of(TagConditionProperty.builder()
.key("key")
.value("value")
.build()))
.orConditions(List.of(OrConditionProperty.builder()
.andConditions(List.of(TagConditionProperty.builder()
.key("key")
.value("value")
.build()))
.tagCondition(TagConditionProperty.builder()
.key("key")
.value("value")
.build())
.build()))
.tagCondition(TagConditionProperty.builder()
.key("key")
.value("value")
.build())
.build())
.maxResults(123)
.overrideKnowledgeBaseSearchType("overrideKnowledgeBaseSearchType")
.build())
.build())
.associationId("associationId")
.associationType("associationType")
.build()))
.emailQueryReformulationAiPromptId("emailQueryReformulationAiPromptId")
.emailResponseAiPromptId("emailResponseAiPromptId")
.locale("locale")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAIAgentPropsMixin.EmailResponseAIAgentConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectConfiguration settings for knowledge base associations used by the email response agent.default StringThe ID of the System AI prompt used for reformulating email queries to optimize knowledge base search for response generation.default StringThe ID of the System AI prompt used for generating professional email responses based on knowledge base content.default StringThe locale setting for language-specific email response generation (for example, en_US, es_ES).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAssociationConfigurations
Configuration settings for knowledge base associations used by the email response agent.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnAIAgentPropsMixin.AssociationConfigurationProperty>- See Also:
-
getEmailQueryReformulationAiPromptId
The ID of the System AI prompt used for reformulating email queries to optimize knowledge base search for response generation.- See Also:
-
getEmailResponseAiPromptId
The ID of the System AI prompt used for generating professional email responses based on knowledge base content.- See Also:
-
getLocale
The locale setting for language-specific email response generation (for example, en_US, es_ES).- See Also:
-
builder
@Stability(Stable) static CfnAIAgentPropsMixin.EmailResponseAIAgentConfigurationProperty.Builder builder()
-