Module Values.ExpressGatewayServiceNetworkConfigurationSource

The network configuration for an Express service. By default, an Express service utilizes subnets and security groups associated with the default VPC.

Sourcetype nonrec t = {
  1. securityGroups : StringList.t option;
    (*

    The IDs of the security groups associated with the Express service.

    *)
  2. subnets : StringList.t option;
    (*

    The IDs of the subnets associated with the Express service.

    *)
}
Sourceval make : ?securityGroups:??? -> ?subnets:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.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