Module Values.DiscoveryDataSource

Data for agent discovery.

Sourcetype nonrec t = {
  1. publicIpAddresses : IpAddressList.t;
    (*

    List of public IP addresses to associate with agent.

    *)
  2. privateIpAddresses : IpAddressList.t;
    (*

    List of private IP addresses to associate with agent.

    *)
  3. capabilityArns : CapabilityArnList.t;
    (*

    List of capabilities to associate with agent.

    *)
}
Sourceval context_ : string
Sourceval make : publicIpAddresses:IpAddressList.t -> privateIpAddresses:IpAddressList.t -> capabilityArns:CapabilityArnList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of IpV4Address.t ] list ]) 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