Module Values.AssociatedHostSource

Describes the properties of the associated host.

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

    The name of the host.

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

    The ID of the Amazon EC2 instance.

    *)
  3. ipAddresses : IpAddressList.t option;
    (*

    The IP addresses of the associated host.

    *)
  4. osVersion : String_.t option;
    (*

    The version of the operating system.

    *)
}
Sourceval make : ?hostname:??? -> ?ec2InstanceId:??? -> ?ipAddresses:??? -> ?osVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of String_.t ]) list ] list | `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