Module Values.DescribedWebAppVpcConfigSource

Contains the VPC configuration details for a web app endpoint, including the VPC identifier, subnet IDs, and VPC endpoint ID used for hosting the endpoint.

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

    The list of subnet IDs within the VPC where the web app endpoint is deployed. These subnets must be in the same VPC and provide network connectivity for the endpoint.

    *)
  2. vpcId : VpcId.t option;
    (*

    The identifier of the VPC where the web app endpoint is hosted.

    *)
  3. vpcEndpointId : VpcEndpointId.t option;
    (*

    The identifier of the VPC endpoint created for the web app.

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