From 27e151218973b2cf1a4df26b191c220d3839aa43 Mon Sep 17 00:00:00 2001 From: Guilherme Arcoverde <87540453+guiarcoverde@users.noreply.github.com> Date: Thu, 10 Jul 2025 20:18:32 -0300 Subject: [PATCH] refactor(models): make ActionGroup and Function setters public in Response model Updated the `Response` class to change the access modifiers of `ActionGroup` and `Function` properties from `internal set` to `public set` to allow external modification of these values. This change improves flexibility when constructing or modifying `Response` instances outside the defining assembly. Signed-off-by: Guilherme Arcoverde <87540453+guiarcoverde@users.noreply.github.com> --- .../Models/Response.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/src/AWS.Lambda.Powertools.EventHandler.Resolvers.BedrockAgentFunction/Models/Response.cs b/libraries/src/AWS.Lambda.Powertools.EventHandler.Resolvers.BedrockAgentFunction/Models/Response.cs index 5d2e76a7..0aa0754c 100644 --- a/libraries/src/AWS.Lambda.Powertools.EventHandler.Resolvers.BedrockAgentFunction/Models/Response.cs +++ b/libraries/src/AWS.Lambda.Powertools.EventHandler.Resolvers.BedrockAgentFunction/Models/Response.cs @@ -24,4 +24,4 @@ public class Response /// [JsonPropertyName("functionResponse")] public FunctionResponse FunctionResponse { get; set; } = new FunctionResponse(); -} \ No newline at end of file +}