Understanding Amazon Chime SDK live transcription events - Amazon Chime SDK

Understanding Amazon Chime SDK live transcription events

The Amazon Chime SDK sends transcription lifecycle events, which you can use to trigger notifications and initiate downstream work flows. Some examples of using transcription events include:

  • Measuring the adoption of live transcription in Amazon Chime SDK meetings

  • Tracking language preferences

You can send events to Amazon EventBridge, Amazon Simple Notification Service, and Amazon Simple Queue Service. For more information, refer to Events from AWS services in the Amazon EventBridge User Guide.

The Amazon Chime SDK sends this event when meeting transcription is started or the TranscriptionConfiguration is updated.

Example: Event data

The following is example data for this event.

{ "version": "0", "source": "aws.chime", "account": "111122223333", "id": "12345678-1234-1234-1234-111122223333", "region": "us-east-1", "detail-type": "Chime Meeting State Change", "time": "yyyy-mm-ddThh:mm:ssZ", "resources": [] "detail": { "version": "0", "eventType": "chime:TranscriptionStarted", "timestamp": 12344566754, "meetingId": "87654321-4321-4321-1234-111122223333", "externalMeetingId": "mymeeting", "mediaRegion": "us-west-1", "transcriptionRegion": "us-west-2", "transcriptionConfiguration": "{...}" } }

The Amazon Chime SDK sends this event when meeting transcription is stopped.

Example: Event data

The following is example data for this event.

{ "version": "0", "source": "aws.chime", "account": "111122223333", "id": "12345678-1234-1234-1234-111122223333", "region": "us-east-1", "detail-type": "Chime Meeting State Change", "time": "yyyy-mm-ddThh:mm:ssZ", "resources": [] "detail": { "version": "0", "eventType": "chime:TranscriptionStopped", "timestamp": 12344566754, "meetingId": "87654321-4321-4321-1234-111122223333", "externalMeetingId": "mymeeting", "mediaRegion": "us-west-1", "transcriptionRegion": "us-west-2", "transcriptionConfiguration": "{...}" } }

The Amazon Chime SDK sends this event if meeting transcription is interrupted.

Example: Event data

The following is example data for this event.

{ "version": "0", "source": "aws.chime", "account": "111122223333", "id": "12345678-1234-1234-1234-111122223333", "region": "us-east-1", "detail-type": "Chime Meeting State Change", "time": "yyyy-mm-ddThh:mm:ssZ", "resources": [] "detail": { "version": "0", "eventType": "chime:TranscriptionInterrupted", "timestamp": 12344566754, "meetingId": "87654321-4321-4321-1234-111122223333", "externalMeetingId": "mymeeting", "message": "Internal server error", "mediaRegion": "us-west-1", "transcriptionRegion": "us-west-2", "transcriptionConfiguration": "{...}" } }

The Amazon Chime SDK sends this event if meeting transcription is resumed after an interruption.

Example: Event data

The following is example data for this event.

{ "version": "0", "source": "aws.chime", "account": "111122223333", "id": "12345678-1234-1234-1234-111122223333", "region": "us-east-1", "detail-type": "Chime Meeting State Change", "time": "yyyy-mm-ddThh:mm:ssZ", "resources": [] "detail": { "version": "0", "eventType": "chime:TranscriptionResumed", "timestamp": 12344566754, "meetingId": "87654321-4321-4321-1234-111122223333", "externalMeetingId": "mymeeting", "mediaRegion": "us-west-1", "transcriptionRegion": "us-west-2", "transcriptionConfiguration": "{...}" } }

The Amazon Chime SDK sends this event if meeting transcription failed to start, or failed to resume after an interruption.

Example: Event data

The following is example data for this event.

{ "version": "0", "source": "aws.chime", "account": "111122223333", "id": "12345678-1234-1234-1234-111122223333", "region": "us-east-1", "detail-type": "Chime Meeting State Change", "time": "yyyy-mm-ddThh:mm:ssZ", "resources": [] "detail": { "version": "0", "eventType": "chime:TranscriptionFailed", "timestamp": 12344566754, "meetingId": "87654321-4321-4321-1234-111122223333", "externalMeetingId": "mymeeting", "message": "Internal server error", "mediaRegion": "us-west-1", "transcriptionRegion": "us-west-2", "transcriptionConfiguration": "{...}" } }