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?

gefragt vor einem Monat252 Aufrufe
2 Antworten
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
EXPERTE
beantwortet vor einem Monat
profile picture
EXPERTE
überprüft vor einem Monat
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
EXPERTE
beantwortet vor einem Monat
profile picture
EXPERTE
überprüft vor einem Monat

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen