Skip to content

Commit c8be15a

Browse files
authored
Update README.md
1 parent f47563d commit c8be15a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lambda-durable-esm-and-chaining/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,13 @@ The pattern showcases two key Durable Functions capabilities:
6565
aws sqs send-message \
6666
--queue-url <QUEUE_URL> \
6767
--message-body '{"data_source": "test.csv", "processing_type": "standard"}'
68+
--region <REPLACE_REGION>
6869
```
6970

7071
4. **Verify successful processing**:
7172
```bash
7273
# Check if data was processed and stored in DynamoDB
73-
aws dynamodb scan --table-name <PROCESSED_DATA_TABLE> --query 'Items[*]'
74+
aws dynamodb scan --table-name <PROCESSED_DATA_TABLE> --query 'Items[*]' --region <REPLACE_REGION>
7475
```
7576

7677
**Success indicators:**

0 commit comments

Comments
 (0)