/** *

The Docker and Amazon ECS container agent version information about a container instance.

*/ export interface _VersionInfo { /** *

The version number of the Amazon ECS container agent.

*/ agentVersion?: string; /** *

The Git commit hash for the Amazon ECS container agent build on the amazon-ecs-agent GitHub repository.

*/ agentHash?: string; /** *

The Docker version running on the container instance.

*/ dockerVersion?: string; } export declare type _UnmarshalledVersionInfo = _VersionInfo;