Values.WebAppVpcConfigSourceContains the VPC configuration settings for hosting a web app endpoint, including the VPC ID, subnet IDs, and security group IDs for access control.
type nonrec t = {subnetIds : SubnetIds.t option;The list of subnet IDs within the VPC where the web app endpoint will be deployed. These subnets must be in the same VPC specified in the VpcId parameter.
*)vpcId : VpcId.t option;The identifier of the VPC where the web app endpoint will be hosted.
*)securityGroupIds : SecurityGroupIds.t option;The list of security group IDs that control access to the web app endpoint. These security groups determine which sources can access the endpoint based on IP addresses and port configurations.
*)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.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of [> `String of SubnetId.t ] list
| `String of VpcId.t ])
list ]