aws-samples / amazon-connect-twitter-listener

MIT No Attribution
0 stars 2 forks source link

Amazon Connect Twitter integration

This project contains source code and supporting files for twitter streaming to Amazon Connect Tasks. Tweets are filtered on the specified tag and analyzed using comprehend to identify language and sentiment. Both tags are added as attributes to the task so additional branching decisions can be made.

Deployed resources

The project includes a cloud formation template with a Serverless Application Model (SAM) transform to deploy resources as follows:

AWS Lambda functions

Kinesis Stream

Secrets Manager Secret

EC2 Instance

Prerequisites.

  1. Amazon Connect Instance already set up with a queue and contact flow for handling tasks.
  2. Routing profile on Amazon Connect Instance with tasks enabled.
  3. Twitter developer account. You'll need read and write permissions for the App created.
  4. AWS Console Access with administrator account.
  5. Cloud9 IDE or AWS and SAM tools installed and properly configured with administrator credentials.
  6. KeyPair for the EC2 instance.

Deploy the solution

  1. Clone this repo.

git clone https://github.com/aws-samples/amazon-connect-twitter-listener

  1. Build the solution with SAM.

sam build -u

  1. Deploy the solution.

sam deploy -g

SAM will ask for the name of the application (name it something relevant such as "Connect-Twitter") as all resources will be grouped under it and deployment region.Reply Y on the confirmation prompt before deploying resources. SAM can save this information if you plan un doing changes, answer Y when prompted and accept the default environment and file name for the configuration.

  1. From the AWS Secrets Manager console, fill in the parameters in the ConnectTwitterConfig secret. The following parameters must be completed: Instance ID and contact flow id to handle tasks; Bearer Token, Access Token, Access Token Secret, Consumer Key and Consumer Secret from the Twitter App; and the Twitter topic to monitor such as #AWSRules. Follow rules Twitter API rules definitions to narrow results, for example, you can use the -is:reply as part of the specified rule to filer out responses on tweets.
  2. Add the Twitter-Replier function to the Amazon Connect configuration. You can use
  3. Create a new Transfer To Queue contact flow in Amazon Connect. Add a block for invoking the Twitter-Replier function. Name it TwitterReply.
  4. Create a Quick Connect with destination Queue and the TwitterReply contactflow created in the previous step.
  5. Reboot the EC2 instance. This will start the python script, which will pull the configuration from the secret and it will start streaming data onto the Kinesis stream.
  6. Agents enabled for tasks working on the associated Queue will receive tweets in the form of tasks. After accepting the task, the agent can reply back to Tweets using the TwitterReply quick connect to transfer the task. Information entered as part of the description will be posted on the Tweet being replied to.

Resource deletion

  1. From the cloudformation console, select the stack and click on Delete and confirm it by pressing Delete Stack.