Interface CfnMemory.UserPreferenceMemoryStrategyProperty

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

@Stability(Stable) public static interface CfnMemory.UserPreferenceMemoryStrategyProperty 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.*;
 UserPreferenceMemoryStrategyProperty userPreferenceMemoryStrategyProperty = UserPreferenceMemoryStrategyProperty.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: