Module Values.CreateGatewayRequestSource

Creates a new gateway. The request must include at least one network (up to four).

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

    The range of IP addresses that are allowed to contribute content or initiate output requests for flows communicating with this gateway. 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 gateway. This name can not be modified after the gateway is created.

    *)
  3. networks : GatewayNetwork.t list;
    (*

    The list of networks that you want to add to the gateway.

    *)
}
Sourceval context_ : string
Sourceval make : egressCidrBlocks:String_.t list -> name:String_.t -> networks:GatewayNetwork.t list -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t | `Structure 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