Module Values.TargetNetworkSource

Configuration for the target network topology and addressing.

Sourcetype nonrec t = {
  1. topology : TargetNetworkTopology.t;
    (*

    The network topology type for the target environment.

    *)
  2. inboundCidr : Cidr.t option;
    (*

    The CIDR block for inbound traffic in the target network.

    *)
  3. outboundCidr : Cidr.t option;
    (*

    The CIDR block for outbound traffic in the target network.

    *)
  4. inspectionCidr : Cidr.t option;
    (*

    The CIDR block for inspection traffic in the target network.

    *)
}
Sourceval context_ : string
Sourceval make : ?inboundCidr:??? -> ?outboundCidr:??? -> ?inspectionCidr:??? -> topology:TargetNetworkTopology.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Cidr.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