Module Values.UpdateWebAppVpcConfigSource

Contains the VPC configuration settings for updating a web app endpoint, including the subnet IDs where the endpoint should be deployed.

Sourcetype nonrec t = {
  1. subnetIds : SubnetIds.t option;
    (*

    The list of subnet IDs within the VPC where the web app endpoint should be deployed during the update operation.

    *)
  2. ipAddressType : WebAppVpcEndpointIpAddressType.t option;
    (*

    The IP address type for the web app's VPC endpoint. This determines whether the endpoint is accessible over IPv4 only, or over both IPv4 and IPv6.

    *)
}
Sourceval make : ?subnetIds:??? -> ?ipAddressType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of SubnetId.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