Amazon connect - Schedule contact search report to S3 daily

0

Need to schedule the extraction of the report daily for the incoming call details including the customer phone number and the agent attended to the call similar to the details that are presented in the contact search report . is there a way other than streaming the CTC record through Kinesis to S3?

2回答
1

Here are some options for your consideration:

  1. AWS Lambda and Amazon EventBridge

    • Create a Lambda function to generate the report and upload to S3
    • Use EventBridge to schedule the Lambda function to run daily
  2. AWS Glue

    • Use Glue crawler to extract report data
    • Create a Glue job to transform and load data into S3
    • Schedule the Glue job to run daily using Glue triggers or EventBridge
  3. AWS Step Functions

    • Create a Step Functions state machine to extract report and upload to S3
    • Use EventBridge to schedule the state machine execution daily

In terms of cost, the most expensive solution is likely to be AWS Glue, as it involves both data extraction and transformation, which can consume significant resources. The least expensive solution is likely to be AWS Lambda and Amazon EventBridge, as Lambda functions are billed based on the actual time and resources consumed, which can be minimal for a simple report generation task.

profile picture
エキスパート
回答済み 1ヶ月前
profile picture
エキスパート
レビュー済み 1ヶ月前
0

Leverage Connect API for extraction: https://docs.aws.amazon.com/connect/latest/APIReference/API_GetCurrentUserData.html and use one of above methods.

If list is not huge, go for eventbridge + lambda, by far the cheapest non streaming option

profile picture
エキスパート
回答済み 1ヶ月前
profile picture
エキスパート
レビュー済み 1ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ