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 Respostas
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
ESPECIALISTA
respondido há um mês
profile picture
ESPECIALISTA
avaliado há um mês
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
ESPECIALISTA
respondido há um mês
profile picture
ESPECIALISTA
avaliado há um mês

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas