Twitter to AWS SQS
@dylan
code:
data:privatelast updated:5 years ago
@dylan/
Twitter to AWS SQS
  1. Copy the workflow.
  2. Configure the Twitter source: connect your account, enter your search term, and set any optional params.
  3. Create an IAM user and attach an IAM policy of the following format:
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "VisualEditor0",
            "Effect": "Allow",
            "Action": "sqs:SendMessage",
            "Resource": "[your-sqs-queue-arn]"
        }
    ]
}

This assumes you have an SQS queue created where you'd like events delivered. If not, go ahead an create one now.

  1. Click the Connect Account button in send_message_to_sqs step, saving your AWS access and secret keys from above.
  2. Add the SQS queue URL as the value of the SQS Queue URL param.
  3. Deploy the workflow. This workflow will send new tweets to your SQS queue.