Interface CfnMemory.SemanticMemoryStrategyProperty

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

@Stability(Stable) public static interface CfnMemory.SemanticMemoryStrategyProperty extends software.amazon.jsii.JsiiSerializable
The memory strategy.

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.*;
 SemanticMemoryStrategyProperty semanticMemoryStrategyProperty = SemanticMemoryStrategyProperty.builder()
         .name("name")
         // the properties below are optional
         .createdAt("createdAt")
         .description("description")
         .namespaces(List.of("namespaces"))
         .status("status")
         .strategyId("strategyId")
         .type("type")
         .updatedAt("updatedAt")
         .build();
 

See Also: