We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7ff424 commit 8bf05f9Copy full SHA for 8bf05f9
1 file changed
Libraries/src/Amazon.Lambda.Core/ILambdaContext.cs
@@ -85,14 +85,16 @@ public interface ILambdaContext
85
/// </summary>
86
TimeSpan RemainingTime { get; }
87
88
+#if NET8_0_OR_GREATER
89
/// <summary>
90
/// Gets the tenant id for the Lambda function.
91
- string TenantId { get; }
92
+ string TenantId { get { return string.Empty; } }
93
94
95
/// The trace id generated by Lambda for distributed tracing across AWS services.
96
- string TraceId { get; }
97
+ string TraceId { get { return string.Empty; } }
98
+#endif
99
}
100
0 commit comments