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
MessageAttributes is defined as a map[string]interface{} whereas in reality is sent as a map[string]*sns.MessageAttributeValue as defined in the aws-sdk package.
Lots of assertions are needed to dig a value out of the map[string]interface{}, would be nicer to use a stricter type?
The text was updated successfully, but these errors were encountered:
MessageAttributes is defined as a
map[string]interface{}
whereas in reality is sent as amap[string]*sns.MessageAttributeValue
as defined in the aws-sdk package.Lots of assertions are needed to dig a value out of the
map[string]interface{}
, would be nicer to use a stricter type?The text was updated successfully, but these errors were encountered: