Skip to content

Commit 6738875

Browse files
committed
Implement session_summary_configuration
1 parent e38002e commit 6738875

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

internal/service/bedrockagent/agent.go

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -732,8 +732,13 @@ type guardrailConfigurationModel struct {
732732
}
733733

734734
type memoryConfigurationModel struct {
735-
EnabledMemoryTypes fwtypes.ListValueOf[fwtypes.StringEnum[awstypes.MemoryType]] `tfsdk:"enabled_memory_types"`
736-
StorageDays types.Int32 `tfsdk:"storage_days"`
735+
EnabledMemoryTypes fwtypes.ListValueOf[fwtypes.StringEnum[awstypes.MemoryType]] `tfsdk:"enabled_memory_types"`
736+
SessionSummaryConfiguration fwtypes.ListNestedObjectValueOf[sessionSummaryConfigurationModel] `tfsdk:"session_summary_configuration"`
737+
StorageDays types.Int32 `tfsdk:"storage_days"`
738+
}
739+
740+
type sessionSummaryConfigurationModel struct {
741+
MaxRecentSessions types.Int64 `tfsdk:"max_recent_sessions"`
737742
}
738743

739744
type promptOverrideConfigurationModel struct {

0 commit comments

Comments
 (0)