using System; using System.Collections.Generic; using System.Text; namespace Amazon.Lambda.CloudWatchEvents.ECSEvents { /// /// The Docker and Amazon ECS container agent version information about a container instance. /// https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_VersionInfo.html /// public class VersionInfo { /// /// The Git commit hash for the Amazon ECS container agent build on the amazon-ecs-agent GitHub repository. /// public string AgentHash { get; set; } /// /// The version number of the Amazon ECS container agent. /// public string AgentVersion { get; set; } /// /// The Docker version running on the container instance. /// public string DockerVersion { get; set; } } }