interface EpisodicMemoryStrategyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnMemoryPropsMixin.EpisodicMemoryStrategyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnMemoryPropsMixin_EpisodicMemoryStrategyProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnMemoryPropsMixin.EpisodicMemoryStrategyProperty |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnMemoryPropsMixin.EpisodicMemoryStrategyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnMemoryPropsMixin » EpisodicMemoryStrategyProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrockagentcore_mixins } from '@aws-cdk/mixins-preview/aws-bedrockagentcore';
const episodicMemoryStrategyProperty: bedrockagentcore_mixins.CfnMemoryPropsMixin.EpisodicMemoryStrategyProperty = {
createdAt: 'createdAt',
description: 'description',
name: 'name',
namespaces: ['namespaces'],
reflectionConfiguration: {
namespaces: ['namespaces'],
},
status: 'status',
strategyId: 'strategyId',
type: 'type',
updatedAt: 'updatedAt',
};
Properties
| Name | Type | Description |
|---|---|---|
| created | string | Creation timestamp of the memory strategy. |
| description? | string | Description of the Memory resource. |
| name? | string | Name 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. |
createdAt?
Type:
string
(optional)
Creation timestamp of the memory strategy.
description?
Type:
string
(optional)
Description of the Memory resource.
name?
Type:
string
(optional)
Name 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