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

VpcConfigInput

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

If this canary is to test an endpoint in a VPC, this structure contains information about the subnets and security groups of the VPC endpoint. For more information, see Running a Canary in a VPC.

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

§Properties

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

The IDs of the security groups for this canary.

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

The IDs of the subnets where this canary is to run.