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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMemory.SemanticMemoryStrategyPropertystatic final classAn implementation forCfnMemory.SemanticMemoryStrategyProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringCreation timestamp of the memory strategy.default StringThe memory strategy description.getName()The memory strategy name.The memory strategy namespaces.default StringStatus of the memory strategy.default StringThe memory strategy ID.default StringgetType()The memory strategy type.default StringLast update timestamp of the memory strategy.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The memory strategy name.- See Also:
-
getCreatedAt
Creation timestamp of the memory strategy.- See Also:
-
getDescription
The memory strategy description.- See Also:
-
getNamespaces
The memory strategy namespaces.- See Also:
-
getStatus
Status of the memory strategy.- See Also:
-
getStrategyId
The memory strategy ID.- See Also:
-
getType
The memory strategy type.- See Also:
-
getUpdatedAt
Last update timestamp of the memory strategy.- See Also:
-
builder
-