Skip to content

Commit 1a20578

Browse files
authored
Merge pull request #2672 from devendra2690/main
Added missing quote in json body for OrderId,
2 parents 3eaf9a6 + c8f1b41 commit 1a20578

File tree

1 file changed

+2
-2
lines changed
  • eventbridge-pipes-sqs-to-eventbridge-with-filters

1 file changed

+2
-2
lines changed

eventbridge-pipes-sqs-to-eventbridge-with-filters/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Send SQS message that will trigger event on event bus
5151
# Send SQS message to be sent to EventBridge using the filter.
5252
aws sqs send-message \
5353
--queue-url=SQS_URL \
54-
--message-body '{"orderId":"125a2e1e-d420-482e-8008-5a606f4b2076, "customerId": "a48516db-66aa-4dbc-bb66-a7f058c5ec24", "type": "NEW"}'
54+
--message-body '{"orderId":"125a2e1e-d420-482e-8008-5a606f4b2076", "customerId": "a48516db-66aa-4dbc-bb66-a7f058c5ec24", "type": "NEW"}'
5555
```
5656

5757
Send SQS message that will will not trigger event on event bus
@@ -60,7 +60,7 @@ Send SQS message that will will not trigger event on event bus
6060
# Send SQS message to be sent to EventBridge using the filter.
6161
aws sqs send-message \
6262
--queue-url=SQS_URL \
63-
--message-body '{"orderId":"125a2e1e-d420-482e-8008-5a606f4b2076, "customerId": "a48516db-66aa-4dbc-bb66-a7f058c5ec24", "type": "OLD"}'
63+
--message-body '{"orderId":"125a2e1e-d420-482e-8008-5a606f4b2076", "customerId": "a48516db-66aa-4dbc-bb66-a7f058c5ec24", "type": "OLD"}'
6464
```
6565

6666
## Delete stack

0 commit comments

Comments
 (0)