interface MemoryConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnAgentPropsMixin.MemoryConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnAgentPropsMixin_MemoryConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnAgentPropsMixin.MemoryConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnAgentPropsMixin.MemoryConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnAgentPropsMixin » 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/cfn-property-mixins';
const memoryConfigurationProperty: bedrock.CfnAgentPropsMixin.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