namespace Amazon.Lambda.CloudWatchEvents.TranscribeEvents { /// /// This class represents the details of a Transcribe Job State Change sent via EventBridge. /// For more see - https://docs.aws.amazon.com/transcribe/latest/dg/monitoring-events.html /// public class TranscribeJobStateChange { /// /// The transcription job name. /// public string TranscriptionJobName { get; set; } /// /// The transcription job status. /// public string TranscriptionJobStatus { get; set; } /// /// If the TranscriptionJobStatus is FAILED, this field contains information about the failure. /// public string FailureReason { get; set; } } }