Module Values.VpcConfigSource

Amazon Virtual Private Cloud configuration details associated with your Lambda function.

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

    The identifiers of the subnets that are associated with your Lambda function.

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

    The identifier of the Amazon Virtual Private Cloud.

    *)
  3. securityGroups : SecurityGroups.t option;
    (*

    The identifier of the security group attached to the Lambda function.

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