Module Values.VpcConfigSource

The VPC security groups and subnets that are attached to a Lambda function. For more information, see Configuring a Lambda function to access resources in a VPC.

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

    A list of VPC subnet IDs.

    *)
  2. securityGroupIds : SecurityGroupIds.t option;
    (*

    A list of VPC security group IDs.

    *)
  3. ipv6AllowedForDualStack : NullableBoolean.t option;
    (*

    Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.

    *)
}
Sourceval make : ?subnetIds:??? -> ?securityGroupIds:??? -> ?ipv6AllowedForDualStack:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `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