Module Values.VersionInfoSource

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

Sourcetype nonrec t = {
  1. agentVersion : String_.t option;
    (*

    The version number of the Amazon ECS container agent.

    *)
  2. agentHash : String_.t option;
    (*

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

    *)
  3. dockerVersion : String_.t option;
    (*

    The Docker version that's running on the container instance.

    *)
}
Sourceval make : ?agentVersion:??? -> ?agentHash:??? -> ?dockerVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t