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
전문가
답변함 한 달 전
profile picture
전문가
검토됨 한 달 전
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
전문가
답변함 한 달 전
profile picture
전문가
검토됨 한 달 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠