Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AwsLambdaFunctionVpcConfig

import type { AwsLambdaFunctionVpcConfig } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

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

interface AwsLambdaFunctionVpcConfig {
SecurityGroupIds?: string[] | null;
SubnetIds?: string[] | null;
VpcId?: string | null;
}

§Properties

§
SecurityGroupIds?: string[] | null
[src]

A list of VPC security groups IDs.

§
SubnetIds?: string[] | null
[src]

A list of VPC subnet IDs.

§
VpcId?: string | null
[src]

The ID of the VPC.