using System;
namespace Amazon.Lambda.CloudWatchEvents.ECSEvents
{
///
/// Details about the managed agent status for the container.
/// https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ManagedAgent.html
///
public class ManagedAgent
{
///
/// The Unix timestamp for when the managed agent was last started.
///
public DateTime LastStartedAt { get; set; }
///
/// The last known status of the managed agent.
///
public string LastStatus { get; set; }
///
/// The name of the managed agent. When the execute command feature is enabled, the managed agent name is ExecuteCommandAgent.
///
public string Name { get; set; }
///
/// The reason for why the managed agent is in the state it is in.
///
public string Reason { get; set; }
}
}