Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eventbridge-pipes-sqs-to-eventbridge-with-filters/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Send SQS message that will trigger event on event bus
# Send SQS message to be sent to EventBridge using the filter.
aws sqs send-message \
--queue-url=SQS_URL \
--message-body '{"orderId":"125a2e1e-d420-482e-8008-5a606f4b2076, "customerId": "a48516db-66aa-4dbc-bb66-a7f058c5ec24", "type": "NEW"}'
--message-body '{"orderId":"125a2e1e-d420-482e-8008-5a606f4b2076", "customerId": "a48516db-66aa-4dbc-bb66-a7f058c5ec24", "type": "NEW"}'
```

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

## Delete stack
Expand Down