interface SessionSummaryConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnAgentPropsMixin.SessionSummaryConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnAgentPropsMixin_SessionSummaryConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnAgentPropsMixin.SessionSummaryConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnAgentPropsMixin.SessionSummaryConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnAgentPropsMixin » SessionSummaryConfigurationProperty |
Configuration for SESSION_SUMMARY memory type enabled for the agent.
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 sessionSummaryConfigurationProperty: bedrock.CfnAgentPropsMixin.SessionSummaryConfigurationProperty = {
maxRecentSessions: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | Maximum number of recent session summaries to include in the agent's prompt context. |
maxRecentSessions?
Type:
number
(optional)
Maximum number of recent session summaries to include in the agent's prompt context.

.NET
Go
Java
Python
TypeScript