Module Values.AgentDetailsSource

Detailed information about the agent.

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

    Current agent version.

    *)
  2. instanceId : InstanceId.t;
    (*

    ID of EC2 instance agent is running on.

    *)
  3. instanceType : InstanceType.t;
    (*

    Type of EC2 instance agent is running on.

    *)
  4. reservedCpuCores : AgentCpuCoresList.t option;
    (*

    This field should not be used. Use agentCpuCores instead. List of CPU cores reserved for processes other than the agent running on the EC2 instance.

    *)
  5. agentCpuCores : AgentCpuCoresList.t option;
    (*

    List of CPU cores reserved for the agent.

    *)
  6. componentVersions : ComponentVersionList.t;
    (*

    List of versions being used by agent components.

    *)
}
Sourceval context_ : string
Sourceval make : ?reservedCpuCores:??? -> ?agentCpuCores:??? -> agentVersion:VersionString.t -> instanceId:InstanceId.t -> instanceType:InstanceType.t -> componentVersions:ComponentVersionList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Integer of Integer.t | `Structure of (string * [> `List of [> `String of VersionString.t ] list | `String of ComponentTypeString.t ]) list ] list | `String of VersionString.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