interface MemoryStrategyCommonProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.MemoryStrategyCommonProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#MemoryStrategyCommonProps |
Java | software.amazon.awscdk.services.bedrockagentcore.MemoryStrategyCommonProps |
Python | aws_cdk.aws_bedrockagentcore.MemoryStrategyCommonProps |
TypeScript (source) | aws-cdk-lib » aws_bedrockagentcore » MemoryStrategyCommonProps |
Configuration parameters common for any memory strategy.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const memoryStrategyCommonProps: bedrockagentcore.MemoryStrategyCommonProps = {
strategyName: 'strategyName',
// the properties below are optional
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| strategy | string | The name for the strategy. |
| description? | string | The description of the strategy. |
strategyName
Type:
string
The name for the strategy.
description?
Type:
string
(optional, default: No description)
The description of the strategy.

.NET
Go
Java
Python
TypeScript (