interface EpisodicMemoryStrategyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnMemory.EpisodicMemoryStrategyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnMemory_EpisodicMemoryStrategyProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnMemory.EpisodicMemoryStrategyProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnMemory.EpisodicMemoryStrategyProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnMemory » EpisodicMemoryStrategyProperty |
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 episodicMemoryStrategyProperty: bedrockagentcore.CfnMemory.EpisodicMemoryStrategyProperty = {
name: 'name',
// the properties below are optional
createdAt: 'createdAt',
description: 'description',
namespaces: ['namespaces'],
reflectionConfiguration: {
namespaces: ['namespaces'],
},
status: 'status',
strategyId: 'strategyId',
type: 'type',
updatedAt: 'updatedAt',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the Memory resource. |
| created | string | Creation timestamp of the memory strategy. |
| description? | string | Description of the Memory resource. |
| namespaces? | string[] | List of namespaces for memory strategy. |
| reflection | IResolvable | Episodic | |
| status? | string | Status of the memory strategy. |
| strategy | string | Unique identifier for the memory strategy. |
| type? | string | Type of memory strategy. |
| updated | string | Last update timestamp of the memory strategy. |
name
Type:
string
Name of the Memory resource.
createdAt?
Type:
string
(optional)
Creation timestamp of the memory strategy.
description?
Type:
string
(optional)
Description of the Memory resource.
namespaces?
Type:
string[]
(optional)
List of namespaces for memory strategy.
reflectionConfiguration?
Type:
IResolvable | Episodic
(optional)
status?
Type:
string
(optional)
Status of the memory strategy.
strategyId?
Type:
string
(optional)
Unique identifier for the memory strategy.
type?
Type:
string
(optional)
Type of memory strategy.
updatedAt?
Type:
string
(optional)
Last update timestamp of the memory strategy.

.NET
Go
Java
Python
TypeScript