Module Values.AwsLambdaFunctionVpcConfigSource

The VPC security groups and subnets that are attached to a Lambda function.

Sourcetype nonrec t = {
  1. securityGroupIds : NonEmptyStringList.t option;
    (*

    A list of VPC security groups IDs.

    *)
  2. subnetIds : NonEmptyStringList.t option;
    (*

    A list of VPC subnet IDs.

    *)
  3. vpcId : NonEmptyString.t option;
    (*

    The ID of the VPC.

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