AWS SQS
Send device events to AWS SQS
Introduction
Preparing your AWS account
Note Region
Create SQS queue
Create IAM Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowSendingMessagesToSQS",
"Effect": "Allow",
"Action": "sqs:SendMessage",
"Resource": "arn:aws:sqs:REGION:ACCOUNT_ID:QUEUE_NAME"
}
]
}Create IAM Role


Configuring the Integration

Last updated