You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Libraries/src/Amazon.Lambda.S3Events/S3Event.cs
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -57,9 +57,22 @@ public class S3ObjectEntity
57
57
{
58
58
/// <summary>
59
59
/// Gets and sets the key for the object stored in S3.
60
+
/// <para>
61
+
/// Note: S3 events sent to Lambda will have the object key in the JSON document url encoded. For example if the object key name contains a space character it will be represented as +.
62
+
/// This property returns the object key exactly as it is received in the S3 event including being url encoded. To get the key decoded use the <see cref="KeyDecoded"/> property.
63
+
/// </para>
60
64
/// </summary>
61
65
publicstringKey{get;set;}
62
66
67
+
/// <summary>
68
+
/// Gets and the url decoded key for the object stored in S3.
69
+
/// <para>
70
+
/// Note: S3 events sent to Lambda will have the object key in the JSON document url encoded. For example if the object key name contains a space character it will be represented as +.
71
+
/// This read only property returns the value of <see cref="Key"/> property url decoded.
0 commit comments