What timestamp is being used by Amazon Connect for recordings filename? Initiation timestamp OR Disconnect timestamp?
As we know amazon connect record the calls and store the recordings on S3 bucket, i am looking for what timestamp i can use to make the filename by myself in my code!
There are two timestamps e.g. Initiation timestamp & Disconnect timestamp are being used while creating filenames with contactId_timestamp_UTC
e.g. 7bb75057-76ae-4e7e-a140-44a50cc5954b_20220418T06:44_UTC.wav.
I have used the callStartTime to create these filenames and then get the files from S3 using SignedURL but in few cases there is a difference of 1 sec as file stored with incremental of one sec on S3 and i couldn't get the file form S3.
For example i the filename is been created by my application is: 7bb75057-76ae-4e7e-a140-44a50cc5954b_20220418T06:44_UTC.wav
. but the recording stored on S3 has filename as: 7bb75057-76ae-4e7e-a140-44a50cc5954b_20220418T06:45_UTC.wav.
The last thing can this data (timestamp) is available in contact object? so i can use it.
The contact trace record contains details about the S3 location of the recording - see https://docs.aws.amazon.com/connect/latest/adminguide/ctr-data-model.html#ctr-ContactTraceRecord.
You can access these via Kinesis Stream or Kinesis Firehose - for setup instructions see https://docs.aws.amazon.com/connect/latest/adminguide/data-streaming.html
Use Kinesis to get the S3 location when the CTR is emitted. Then you can use that in the GetObject API.
Relevant questions
How to map call duration in call recordings of amazon connect?
Accepted Answerasked 2 months agoFiltering CloudWatch Insights by timestamp with date range
asked 2 years agoHow to get the amazon connect Phone call audio streams(Recordings) from S3 to Local environment
asked 3 months agoAWS S3 select_object_content TIMESTAMP column
asked 7 months agoFormatting time as a unix timestamp
Accepted Answerasked a year agoEnabling Contact Lens for Amazon Connect for specific calls
Accepted Answerasked 2 years agoCallRecording FileName in S3
asked 3 years agoHow to make/access call recordings filenames
asked 3 months agoWhat timestamp is being used by Amazon Connect for recordings filename? Initiation timestamp OR Disconnect timestamp?
asked 2 months agoKinesis video streaming - stream appears stuck on frame when navigating via producer timestamp and using getMedia API
asked a month ago
I don't want to use Kinesis but GetObject API to get the object from S3.