Module Values_1.InstanceInfoSource

Details about a specific managed node.

Sourcetype nonrec t = {
  1. agentType : Values_0.AgentType.t option;
    (*

    The type of agent installed on the node.

    *)
  2. agentVersion : Values_0.AgentVersion.t option;
    (*

    The version number of the agent installed on the node.

    *)
  3. computerName : Values_0.ComputerName.t option;
    (*

    The fully qualified host name of the managed node.

    *)
  4. instanceStatus : InstanceStatus.t option;
    (*

    The current status of the managed node.

    *)
  5. ipAddress : IpAddress.t option;
    (*

    The IP address of the managed node.

    *)
  6. managedStatus : ManagedStatus.t option;
    (*

    Indicates whether the node is managed by Systems Manager.

    *)
  7. platformType : Values_0.PlatformType.t option;
    (*

    The operating system platform type of the managed node.

    *)
  8. platformName : Values_0.PlatformName.t option;
    (*

    The name of the operating system platform running on your managed node.

    *)
  9. platformVersion : Values_0.PlatformVersion.t option;
    (*

    The version of the OS platform running on your managed node.

    *)
  10. resourceType : Values_0.ResourceType.t option;
    (*

    The type of instance, either an EC2 instance or another supported machine type in a hybrid fleet.

    *)
}
Sourceval make : ?agentType:??? -> ?agentVersion:??? -> ?computerName:??? -> ?instanceStatus:??? -> ?ipAddress:??? -> ?managedStatus:??? -> ?platformType:??? -> ?platformName:??? -> ?platformVersion:??? -> ?resourceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.AgentType.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