https://pulumi.com logo
#aws
Title
# aws
f

future-refrigerator-88869

06/28/2022, 9:00 AM
Not pulumi related, but I maybe someone can still help me with an answer. Is it normal for sqs to replace
+
with (empty space) in header values? For example: If i pass the message attribute
Foo: Some+header+value
it will be transformed to ->
Foo: Some header value
I have an integration between api gateway and sqs and In the logs I can see that the message is sent correctly from apigateway integration but when i get to receive in sqs, it has the characters replaced.
d

damp-fall-55922

06/28/2022, 12:44 PM
that's urldecode() spaces in urls can be encoded as + signs
f

future-refrigerator-88869

06/28/2022, 12:45 PM
@damp-fall-55922 thanks for the reply. You're right, I had to url encode the string before passing it to sqs. All works now 🙂