namespace Amazon.Lambda.CloudWatchEvents.TranslateEvents { /// /// This class represents the details of a Translate Text Translation Job State Change sent via EventBridge. /// For more see - https://docs.aws.amazon.com/translate/latest/dg/monitoring-with-eventbridge.html /// public class TranslateTextTranslationJobStateChange { /// /// The translation job id. /// public string JobId { get; set; } /// /// The translation job status. /// public string JobStatus { get; set; } } }