Interface CfnHarness.HarnessMemoryConfigurationProperty

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

@Stability(Stable) public static interface CfnHarness.HarnessMemoryConfigurationProperty 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.*;
 HarnessMemoryConfigurationProperty harnessMemoryConfigurationProperty = HarnessMemoryConfigurationProperty.builder()
         .agentCoreMemoryConfiguration(HarnessAgentCoreMemoryConfigurationProperty.builder()
                 .arn("arn")
                 // the properties below are optional
                 .actorId("actorId")
                 .messagesCount(123)
                 .retrievalConfig(Map.of(
                         "retrievalConfigKey", HarnessAgentCoreMemoryRetrievalConfigProperty.builder()
                                 .relevanceScore(123)
                                 .strategyId("strategyId")
                                 .topK(123)
                                 .build()))
                 .build())
         .build();
 

See Also: