namespace Amazon.Lambda.CloudWatchEvents.BatchEvents
{
///
/// An object representing a job timeout configuration.
/// https://docs.aws.amazon.com/batch/latest/APIReference/API_JobTimeout.html
///
public class JobTimeout
{
///
/// The time duration in seconds (measured from the job attempt's startedAt timestamp) after which
/// AWS Batch terminates your jobs if they have not finished.
///
public int AttemptDurationSeconds { get; set; }
}
}