interface MemoryConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnAgent.MemoryConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnAgent_MemoryConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnAgent.MemoryConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnAgent.MemoryConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnAgent » MemoryConfigurationProperty |
Details of the memory configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
const memoryConfigurationProperty: bedrock.CfnAgent.MemoryConfigurationProperty = {
enabledMemoryTypes: ['enabledMemoryTypes'],
sessionSummaryConfiguration: {
maxRecentSessions: 123,
},
storageDays: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled | string[] | The type of memory that is stored. |
| session | IResolvable | Session | Contains the configuration for SESSION_SUMMARY memory type enabled for the agent. |
| storage | number | The number of days the agent is configured to retain the conversational context. |
enabledMemoryTypes?
Type:
string[]
(optional)
The type of memory that is stored.
sessionSummaryConfiguration?
Type:
IResolvable | Session
(optional)
Contains the configuration for SESSION_SUMMARY memory type enabled for the agent.
storageDays?
Type:
number
(optional)
The number of days the agent is configured to retain the conversational context.

.NET
Go
Java
Python
TypeScript