Skip to main content

Integrations

Verify That AWS Credentials Can Access SQS

If users have provided the correct inputs and TimedSQSFunctionApp is throwing permissions errors or a 404 error about accessing the SQS URL, then use the following commands:

export AWS_ACCESS_KEY_ID=''
export AWS_SECRET_ACCESS_KEY=''
export AWS_REGION='' 

aws sqs get-queue-attributes --queue-url <QUEUE_URL> --attribute-names
ApproximateNumberOfMessages

aws sqs receive-message --queue-url <QUEUE_URL>