Interface PromptMemorySummarizationConfigCustomParser

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, PromptStepConfigBase
All Known Implementing Classes:
PromptMemorySummarizationConfigCustomParser.Jsii$Proxy

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-06-20T13:49:28.008Z") @Stability(Experimental) public interface PromptMemorySummarizationConfigCustomParser extends software.amazon.jsii.JsiiSerializable, PromptStepConfigBase
(experimental) Configuration for the memory summarization step.

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.bedrock.alpha.*;
 PromptMemorySummarizationConfigCustomParser promptMemorySummarizationConfigCustomParser = PromptMemorySummarizationConfigCustomParser.builder()
         .stepType(AgentStepType.PRE_PROCESSING)
         // the properties below are optional
         .customPromptTemplate("customPromptTemplate")
         .inferenceConfig(InferenceConfiguration.builder()
                 .maximumLength(123)
                 .stopSequences(List.of("stopSequences"))
                 .temperature(123)
                 .topK(123)
                 .topP(123)
                 .build())
         .stepEnabled(false)
         .useCustomParser(false)
         .build();