Class CfnAgent.SessionSummaryConfigurationProperty
Configuration for SESSION_SUMMARY memory type enabled for the agent.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAgent.SessionSummaryConfigurationProperty : CfnAgent.ISessionSummaryConfigurationProperty
Syntax (vb)
Public Class CfnAgent.SessionSummaryConfigurationProperty Implements CfnAgent.ISessionSummaryConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Bedrock;
var sessionSummaryConfigurationProperty = new SessionSummaryConfigurationProperty {
MaxRecentSessions = 123
};
Synopsis
Constructors
| SessionSummaryConfigurationProperty() | Configuration for SESSION_SUMMARY memory type enabled for the agent. |
Properties
| MaxRecentSessions | Maximum number of recent session summaries to include in the agent's prompt context. |
Constructors
SessionSummaryConfigurationProperty()
Configuration for SESSION_SUMMARY memory type enabled for the agent.
public SessionSummaryConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Bedrock;
var sessionSummaryConfigurationProperty = new SessionSummaryConfigurationProperty {
MaxRecentSessions = 123
};
Properties
MaxRecentSessions
Maximum number of recent session summaries to include in the agent's prompt context.
public double? MaxRecentSessions { get; set; }