Interface CfnAIAgent.EmailGenerativeAnswerAIAgentConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAIAgent.EmailGenerativeAnswerAIAgentConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAIAgent
@Stability(Stable)
public static interface CfnAIAgent.EmailGenerativeAnswerAIAgentConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.wisdom.*;
EmailGenerativeAnswerAIAgentConfigurationProperty emailGenerativeAnswerAIAgentConfigurationProperty = EmailGenerativeAnswerAIAgentConfigurationProperty.builder()
.associationConfigurations(List.of(AssociationConfigurationProperty.builder()
.associationConfigurationData(AssociationConfigurationDataProperty.builder()
.knowledgeBaseAssociationConfigurationData(KnowledgeBaseAssociationConfigurationDataProperty.builder()
.contentTagFilter(TagFilterProperty.builder()
.andConditions(List.of(TagConditionProperty.builder()
.key("key")
// the properties below are optional
.value("value")
.build()))
.orConditions(List.of(OrConditionProperty.builder()
.andConditions(List.of(TagConditionProperty.builder()
.key("key")
// the properties below are optional
.value("value")
.build()))
.tagCondition(TagConditionProperty.builder()
.key("key")
// the properties below are optional
.value("value")
.build())
.build()))
.tagCondition(TagConditionProperty.builder()
.key("key")
// the properties below are optional
.value("value")
.build())
.build())
.maxResults(123)
.overrideKnowledgeBaseSearchType("overrideKnowledgeBaseSearchType")
.build())
.build())
.associationId("associationId")
.associationType("associationType")
.build()))
.emailGenerativeAnswerAiPromptId("emailGenerativeAnswerAiPromptId")
.emailQueryReformulationAiPromptId("emailQueryReformulationAiPromptId")
.locale("locale")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAIAgent.EmailGenerativeAnswerAIAgentConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnAIAgent.AssociationConfigurationProperty>default Stringdefault Stringdefault StringMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAssociationConfigurations
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnAIAgent.AssociationConfigurationProperty>- See Also:
-
getEmailGenerativeAnswerAiPromptId
- See Also:
-
getEmailQueryReformulationAiPromptId
- See Also:
-
getLocale
- See Also:
-
builder
@Stability(Stable) static CfnAIAgent.EmailGenerativeAnswerAIAgentConfigurationProperty.Builder builder()
-