namespace Amazon.Lambda.CloudWatchEvents.BatchEvents
{
///
/// An object representing a job attempt.
/// https://docs.aws.amazon.com/batch/latest/APIReference/API_AttemptDetail.html
///
public class AttemptDetail
{
///
/// Details about the container in this job attempt.
///
public AttemptContainerDetail Container { get; set; }
///
/// The Unix time stamp (in seconds and milliseconds) for when the attempt was started
/// (when the attempt transitioned from the STARTING state to the RUNNING state).
///
public long StartedAt { get; set; }
///
/// A short, human-readable string to provide additional details about the current status of the job attempt.
///
public string StatusReason { get; set; }
///
/// The Unix time stamp (in seconds and milliseconds) for when the attempt was stopped
/// (when the attempt transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED).
///
public long StoppedAt { get; set; }
}
}