#!/bin/sh
set -e

QUEUE_URL=$1

yarn -s awslocal sqs get-queue-attributes \
  --queue-url "$QUEUE_URL" \
  --attribute-names All
