Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .autover/changes/cfe4a449-209e-41ec-9a35-929b0d0d3afb.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"Projects": [
{
"Name": "Amazon.Lambda.APIGatewayEvents",
"Type": "Patch",
"ChangelogMessages": [
"Marked ProxyRequestContext.Error property as Obsolete for APIGatewayProxyRequest."
]
}
]
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Amazon.Lambda.APIGatewayEvents
namespace Amazon.Lambda.APIGatewayEvents
{
using System;
using System.Collections.Generic;
Expand Down Expand Up @@ -234,10 +234,11 @@ public class ProxyRequestContext
/// Gets and sets the operation name.
/// </summary>
public string OperationName { get; set; }

/// <summary>
/// Gets and sets the error.
/// </summary>
[Obsolete("This property is obsolete since it is not used by AWS API Gateway and will never have value set by the service.")]
public string Error { get; set; }

/// <summary>
Expand Down