Skip to main content
Skip table of contents

Amazon Connect Setup for Chat Attachments

VoiceFoundry Agent Desktop now has the ability to manage chat attachments through the standard AWS chat API (streams). While this does not require anything different to a non-Agent Desktop deployment of Connect with chat, we are documenting the requirements here to facilitate upgrades for existing customers.

This is currently a manual process.

Steps

  1. Create an S3 bucket

  2. Assign CORS policy to S3 bucket (see below section Assign CORS Policy)

  3. Setup Amazon Connect for chat attachments (see below section Amazon Connect Setup)

Assign CORS Policy

Once an S3 bucket is created for storing chat attachments, a CORS policy must be attached to the bucket to allow the upload/download of attachments from the applications. This includes website hosting the chat widget, Agent Desktop instance, and the standard CCP URL (in case the standard CCP is used as a fallback).

In the following example, we are using these values:

  • Website - https://voicefoundry.cloud

  • Agent Desktop - https://demo1.vf.ad.voicefoundry.cloud

  • CCP - https://demo1.my.connect.aws

CODE
[
    {
        "AllowedHeaders": [
            "*"
        ],
        "AllowedMethods": [
            "PUT",
            "GET"
        ],
        "AllowedOrigins": [
            "https://voicefoundry.cloud",
            "https://demo1.vf.ad.voicefoundry.cloud",
            "https://demo1.my.connect.aws"
        ],
        "ExposeHeaders": []
    }
]

This policy should be assigned by going to the permission tab in the S3 bucket.

Then scrolling to the bottom where the CORS setup is, and click edit.

Lastly, paste in the policy as per the above and click save.

Amazon Connect Setup

Setting up attachment storage in Connect requires navigating to the specific Connect instance, and selecting the Data Storage option from the menu.

Scroll to the bottom where you will see the Attachments section as per below. Click on Edit.

Select the check box to enable attachments, then select “Use existing bucket” and select the bucket you created in step 1.

Click save.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.