Module: AWSCDK::BedrockAgentCore::MemoryStrategyType

Defined in:
bedrock_agent_core/memory_strategy_type.rb

Overview

Long-term memory extraction strategy types.

Constant Summary collapse

SUMMARIZATION =
Deprecated.
Note:

Default:

Summarization strategy - extracts concise summaries to preserve critical context and key insights.

Jsii::Enum.new("aws-cdk-lib.aws_bedrockagentcore.MemoryStrategyType", "SUMMARIZATION")
SEMANTIC =
Deprecated.
Note:

Default:

Semantic memory strategy - extracts general factual knowledge, concepts and meanings from raw conversations using vector embeddings for similarity search.

Jsii::Enum.new("aws-cdk-lib.aws_bedrockagentcore.MemoryStrategyType", "SEMANTIC")
USER_PREFERENCE =
Deprecated.
Note:

Default:

User preferences strategy - extracts user behavior patterns from raw conversations.

Jsii::Enum.new("aws-cdk-lib.aws_bedrockagentcore.MemoryStrategyType", "USER_PREFERENCE")
EPISODIC =
Deprecated.
Note:

Default:

Episodic memory strategy - captures meaningful slices of user and system interactions.

Jsii::Enum.new("aws-cdk-lib.aws_bedrockagentcore.MemoryStrategyType", "EPISODIC")
CUSTOM =
Deprecated.
Note:

Default:

Customize memory processing through custom foundation model and prompt templates.

Jsii::Enum.new("aws-cdk-lib.aws_bedrockagentcore.MemoryStrategyType", "CUSTOM")