From 45246dd654749c5035bb5725dcc9845fc8ce69e7 Mon Sep 17 00:00:00 2001 From: Tim Pugh Date: Tue, 16 Jun 2026 15:42:53 -0700 Subject: [PATCH] docs: clarify the Lambda ARN CfnOutput description --- infrastructure/backend_stack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/backend_stack.py b/infrastructure/backend_stack.py index eca2c49..9327f0b 100644 --- a/infrastructure/backend_stack.py +++ b/infrastructure/backend_stack.py @@ -86,7 +86,7 @@ def __init__( CfnOutput( self, "FunctionArnOutput", - description="Serverless App Lambda Function ARN", + description="ARN of the Lambda function backing the greeting API", value=self.app.function.function_arn, ) CfnOutput(