What the delivery exception handler costs
There is no model in this system, exceptions are a small fraction of shipments, and tracking events are the volume. Four thousand shipments a month is a healthy small retailer. Here is where each cent goes.
Key takeaways
- About $7 a month at 4,000 shipments. Roughly $24 at 15,000 shipments.
- One Bedrock read per shipment is the only line that scales. Everything else is rounding.
- Nothing is always-on, so a quiet month genuinely costs almost nothing.
- Tracking event writes dominate; messages are sent on about one shipment in seventy.
- The duplicate test runs before the read, so resends are free.
- The three real risks: a retry loop, storage nobody expires, and a bigger model than the job needs.
The bill at three volumes
These are US East prices at the time of writing, at three volumes that bracket most small businesses. Find the bar closest to your own and read across.
Line by line
| Line | At 4,000 shipments | How it scales |
|---|---|---|
| Bedrock read | $0.00 | Linear. One call per shipment, roughly 1,800 in and 200 out tokens. |
| SES | $2.01 | Linear. About 0.02 messages per shipment. |
| DynamoDB + S3 | $0.92 | Storage grows with what you retain, not with throughput. |
| Lambda + SQS | $0.12 | Linear, and effectively free at this scale. |
| CloudWatch | $0.16 | Flat, if you set retention. Unbounded if you do not. |
| Secrets Manager | $0.40 | Flat. One secret, $0.40 a month. |
| AWS Budgets | $0.46 | Flat. Two actions, so you find out before the bill does. |
There is no read line: nothing here calls a model. The messaging band is per shipment, not per exception, which is why it looks small.
The three ways this bill surprises you
Every one of these has happened to somebody, and all three are cheap to prevent.
- Polling every shipment every hour. Poll on a schedule proportional to the service’s typical scan gap, and stop polling once delivered.
- Never expiring tracking events. Events on delivered shipments are useful for computing the gap thresholds and then not at all. Ninety days is plenty.
- Storing every webhook payload verbatim. Keep the raw status and text; the full payload is mostly carrier boilerplate repeated on every event.
What it costs when nothing happens
This matters more than the headline number for a seasonal business. In a month with nothing to process the bill is the fixed band: Secrets Manager at forty cents, AWS Budgets at forty-six, and a few cents of storage. Call it a dollar. There is no instance to stop and nothing to remember to turn off.
- Management
- Analytics
- Front-end & mobile
Set these on day one
- A dead-letter queue on every SQS queue, with a maximum receive count of three.
- Thirty-day retention on every CloudWatch log group. There is no default that is safe.
- An S3 lifecycle rule on the object prefix, tiering at 90 days and expiring at your actual record-keeping horizon.
- Two AWS Budgets actions — one that emails at half your expected spend, one at double it. The second is how you find out about a loop in an hour instead of a month.
- Provisioned concurrency: none. Nothing here is latency-sensitive enough to justify paying for a warm function.
Next: the same system drawn for engineers — service names, resource identifiers, IAM scopes, table schemas and the model id.
All posts