Module Values.GatewayNetworkSource

The network settings for a gateway.

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

    A unique IP address range to use for this network. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.

    *)
  2. name : String_.t;
    (*

    The name of the network. This name is used to reference the network and must be unique among networks in this gateway.

    *)
}
Sourceval context_ : string
Sourceval make : cidrBlock:String_.t -> name:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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