Module Values.IpRouteSource

Contains the IP address block. This is often the address block of the DNS server used for your self-managed domain.

Sourcetype nonrec t = {
  1. cidrIp : CidrIp.t option;
    (*

    IP address block in CIDR format, such as 10.0.0.0/24. This is often the address block of the DNS server used for your self-managed domain. For a single IP address, use a CIDR address block with /32. For example, 10.0.0.0/32.

    *)
  2. cidrIpv6 : CidrIpv6.t option;
    (*

    IPv6 address block in CIDR format, such as 2001:db8::/32. This is often the address block of the DNS server used for your self-managed domain. For a single IPv6 address, use a CIDR address block with /128. For example, 2001:db8::1/128.

    *)
  3. description : Description.t option;
    (*

    Description of the address block.

    *)
}
Sourceval make : ?cidrIp:??? -> ?cidrIpv6:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CidrIp.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