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

VpcConfig

import type { VpcConfig } from "https://aws-api.deno.dev/v0.3/services/codebuild.ts?docs=full";

Information about the VPC configuration that CodeBuild accesses.

interface VpcConfig {
securityGroupIds?: string[] | null;
subnets?: string[] | null;
vpcId?: string | null;
}

§Properties

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

A list of one or more security groups IDs in your Amazon VPC.

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

A list of one or more subnet IDs in your Amazon VPC.

§
vpcId?: string | null
[src]

The ID of the Amazon VPC.