File tree 1 file changed +2
-1
lines changed
src/AWS.Messaging/Serialization/Handlers
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,8 @@ public static AWS.Messaging.SNSMetadata CreateSNSMetadata(JsonElement root)
38
38
MessageId = root . GetProperty ( "MessageId" ) . GetString ( ) ,
39
39
TopicArn = root . GetProperty ( "TopicArn" ) . GetString ( ) ,
40
40
Timestamp = root . GetProperty ( "Timestamp" ) . GetDateTimeOffset ( ) ,
41
+ UnsubscribeURL = root . GetProperty ( "UnsubscribeURL" ) . GetString ( ) ,
42
+ Subject = root . GetProperty ( "Subject" ) . GetString ( )
41
43
} ;
42
44
}
43
45
@@ -46,7 +48,6 @@ public static AWS.Messaging.EventBridgeMetadata CreateEventBridgeMetadata(JsonEl
46
48
return new AWS . Messaging . EventBridgeMetadata
47
49
{
48
50
EventId = root . GetProperty ( "id" ) . GetString ( ) ,
49
- Version = root . GetProperty ( "version" ) . GetString ( ) ,
50
51
DetailType = root . GetProperty ( "detail-type" ) . GetString ( ) ,
51
52
Source = root . GetProperty ( "source" ) . GetString ( ) ,
52
53
AWSAccount = root . GetProperty ( "account" ) . GetString ( ) ,
You can’t perform that action at this time.
0 commit comments