AWS Contact Center
Event based outbound campaigns with HAQM Connect
Organizations use contact centers to answer inbound calls and initiate outbound communication to their customers. Use cases for outbound communications include appointment reminders, telemarketing, subscription renewals, billing reminders, and follow-up calls. Customer preferences determine the communication channel (voice, messaging, or email) used in outbound campaigns. Contact center managers often use different applications for each channel because of legacy platform limitations. This results in additional labor, cost, and complexity.
With HAQM Connect outbound campaigns, you can proactively communicate across voice, SMS, and email channels, while supporting compliance with local regulations. A predictive / progressive dialer and machine learning (ML)–powered answering machine detection optimizes agent productivity and increases live-party connections.
This blog post demonstrates how to set up outbound campaigns based on database events, and automate this configuration and invocation process end-to-end. A change in the database automatically updates the required segment, invokes the corresponding journey, and starts the HAQM Connect outbound campaign.
The solution is built for an airline use case. The airline tracks flight status. For canceled flights, the airline calls the impacted passengers to offer an alternative flight or refund.
Solution overview
The following architecture diagram depicts the solution:
Sequence of events:
- A change in FlightStatus column in the FlightStatusTable invokes the Lambda function.
- The Lambda function fetches customer data from the Passenger
- The Lambda function creates a CSV file from the passenger data in the format required by HAQM Pinpoint, and uploads this CSV file to S3 bucket.
- The Lambda function imports the CSV file from S3 bucket and creates a segment in HAQM Pinpoint.
- The Lambda function then creates a HAQM Pinpoint Journey that sends the segment endpoints to HAQM Connect.
- HAQM Connect invokes the campaign.
- The passengers in the segment receive outbound call and get connected to an agent on answering the call.
Security disclaimer
Note that this solution is an example for how you can get started with building a database event based outbound campaign solution. We recommend performing additional code review, functional testing, and IT validation before releasing this solution in a production environment. Test your solution and follow AWS security best practices.
Deployment walkthrough
Here’s a quick overview of all the steps to be followed in this solution:
- Configure HAQM Connect outbound campaigns in your Connect instance.
- Create an HAQM Pinpoint project.
- Deploy the CloudFormation template.
- Test the solution.
Prerequisites
For this walkthrough, you should have the following prerequisites:
- An AWS account
- An HAQM Connect instance.
- Access to and basic understanding of the following AWS services:
- HAQM Connect with access to create the outbound campaign and queue.
- HAQM Pinpoint with access to manage journey and segments
- AWS Lambda with access to create Lambda functions
- HAQM S3 with access to create buckets
- HAQM DynamoDB with access to create, update, read tables and items.
- AWS IAM with access to create policies and roles
- Validate the Service Limits for Outbound Campaigns
Step-1 Configure outbound campaigns in your HAQM Connect instance
A. Enable HAQM Connect outbound campaign
- Sign in to the AWS Management Console and open the HAQM Connect console.
- From the Instance alias list, select the HAQM Connect instance for which you want to enable outbound campaigns.
- In the navigation pane, choose Telephony.
- In the Outbound calls section, select Enable outbound campaigns.
- Under Encryption settings, enter your AWS KMS key, or choose Create an AWS KMS key.
- Choose Save. This will take a few minutes to enable outbound campaigns.
B. Create a dedicated outbound campaign queue
This queue will be used to handle any contacts that will be routed to agents as a result of the campaign.
- Navigate to the HAQM Connect instance.
- On the left navigation menu, under Routing, choose Queues.
- Click Add queue.
- Add queue and Save.
- Add this queue to the Routing Profile of HAQM Connect agent dedicated to handle outbound campaign calls.
C. Create a Contact flow
- Download the contact flow to be used for outbound campaign.
- Navigate to the HAQM Connect instance.
- On the left navigation menu, choose Routing, then Contact flows.
- Click Create contact flow.
- From the dropdown next to Save (on the top right corner), select Import.
- Import the contact flow that you downloaded in the first step.
- Within this contact flow, select the Set Working Queue contact block.
- Set the queue as the outbound campaign queue that you created in Step 1.B, and choose Save.
- Save and Publish your contact flow.
D. Create an outbound campaign
- Navigate to the HAQM Connect instance.
- On the left navigation menu, choose Outbound Campaigns.
- Choose Create campaign.
- Enter the campaign name in the Campaign details
- In the Outbound configuration section, select the contact flow you created for outbound campaigns.
- Select the queue to associate with this campaign.
- Select a phone number to be shown as caller ID when making outbound calls if you want a specific phone number. The default is the Outbound caller ID number associated with the queue.
- Answering machine detection is enabled by default.
- Select Progressive for the dialer type.
- Choose a bandwidth allocation. You can set it to 100%.
- Save your campaign.
- Make a note of campaign id from the URL.
Step-2 Create a HAQM Pinpoint project
In this step, you will be creating a HAQM Pinpoint project.
- Navigate to AWS Management Console and go to HAQM Pinpoint.
- In the Get started section, enter a name for your project, and choose Create a project.
- On the Configure features page, choose Skip this step at the bottom right. Your HAQM Pinpoint project is now created.
- On the left navigation menu, choose All projects.
- Make a note of Project ID for the project that you created.
Step-3 CloudFormation Template Deployment
- Sign in to the AWS Management Console.
- Use the following Launch Stack button to deploy this solution in the Region where you have HAQM Connect instance.
- Enter the Stack name and provide the information under the Parameters section:
- ConnectCampaignARN:
arn:aws:connect-campaigns:{region}:{your_aws_account}:campaign/{connect_campaign_id}
(Replace the region with Connect Region, your_aws_account with your AWS account number and connect_campaign_id with the campaign ID you noted earlier) - PhoneNumber: Replace this with your (passenger) phone number
- PinpointProjectId: Replace this with your HAQM Pinpoint project ID that you noted earlier
Note: You can change other parameters such as FirstName, LastName, and Email.
- Acknowledge IAM resources creation, and choose Create stack. It will take a few minutes to provision the required resources.
- Your stack is created when the Status changes to CREATE_COMPLETE.
Step-4 Test the solution
To test the solution, you will in your database from Delayed to Canceled. This change will then invoke an outbound call to the passengers associated with this flight, connecting your agent to the passenger.
- Log in your HAQM Connect agent
- Make sure that your agent is in Available
- Navigate to the AWS Management Console and choose AWS CloudFormation.
- Select the stack that you created and choose the Resource.
- Find the FlightStatusTable and click on the link provided next to it.
- On the FlightStatusTable in DynamoDB, choose Explore table items.
- Update the value of FlightStatus attribute to Canceled.
- Your Connect agent will receive a call and an outbound call will be made to your phone number (from the PassengerDataTable).
Cleaning up
To avoid incurring future charges, empty the S3 bucket created as part of this solution. Then, remove all created resources by deleting the CloudFormation stack.
Conclusion
In this post, we implemented an HAQM Connect outbound campaign solution that is driven by changes to a database, by using the following steps:
- Configured HAQM Connect Outbound Campaigns in your Connect instance.
- Created a HAQM Pinpoint Project.
- Deployed AWS resources using AWS CloudFormation.
- Test the solution by updating a database.
This solution automates the process of creating a customer segment within HAQM Pinpoint, and creates a corresponding HAQM Pinpoint journey. The HAQM Pinpoint journey invokes HAQM Connect outbound campaign, to make automated outbound calls connecting your HAQM Connect agent and customer.
With HAQM Connect, you pay for what you use. There are no upfront payments, long-term commitments, or minimum monthly fees. The price metrics are detailed on HAQM Connect pricing.
Should you need help with setting this up, you can get assistance from AWS Professional Services. You can also seek assistance from HAQM Connect partners available worldwide.
Join us for AWS Contact Center Day, a free virtual event where you’ll learn about the future of customer service, how machine learning can optimize customer and agent experiences—and more. Register now »
Related Links
To learn more about the technologies or features used to create this solution, explore the following pages:
- HAQM Connect
- HAQM Connect Outbound Campaigns
- HAQM Pinpoint
- Getting started with Outbound Campaigns blogpost
Author Bio
![]() |
Lakshay Mutreja is a Solutions Architect specializing in HAQM Connect, based in California, USA. He helps customer achieve their business outcomes in the contact center space using HAQM Connect. Lakshay is always looking at innovative ways of enhancing product capabilities to deliver good customer experience. |
![]() |
Titiksha Singh is a Solutions Architect specializing in HAQM Connect, based in California, USA. She helps customers achieve their desired business outcomes with their HAQM Connect contact center solution. |