Interface CfnMemory.CustomConfigurationInputProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMemory.CustomConfigurationInputProperty.Jsii$Proxy
Enclosing class:
CfnMemory

@Stability(Stable) public static interface CfnMemory.CustomConfigurationInputProperty 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.bedrockagentcore.*;
 CustomConfigurationInputProperty customConfigurationInputProperty = CustomConfigurationInputProperty.builder()
         .semanticOverride(SemanticOverrideProperty.builder()
                 .consolidation(SemanticOverrideConsolidationConfigurationInputProperty.builder()
                         .appendToPrompt("appendToPrompt")
                         .modelId("modelId")
                         .build())
                 .extraction(SemanticOverrideExtractionConfigurationInputProperty.builder()
                         .appendToPrompt("appendToPrompt")
                         .modelId("modelId")
                         .build())
                 .build())
         .summaryOverride(SummaryOverrideProperty.builder()
                 .consolidation(SummaryOverrideConsolidationConfigurationInputProperty.builder()
                         .appendToPrompt("appendToPrompt")
                         .modelId("modelId")
                         .build())
                 .build())
         .userPreferenceOverride(UserPreferenceOverrideProperty.builder()
                 .consolidation(UserPreferenceOverrideConsolidationConfigurationInputProperty.builder()
                         .appendToPrompt("appendToPrompt")
                         .modelId("modelId")
                         .build())
                 .extraction(UserPreferenceOverrideExtractionConfigurationInputProperty.builder()
                         .appendToPrompt("appendToPrompt")
                         .modelId("modelId")
                         .build())
                 .build())
         .build();
 

See Also: