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

VpcConfigOutput

import type { VpcConfigOutput } 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 VpcConfigOutput {
SecurityGroupIds?: string[] | null;
SubnetIds?: string[] | null;
VpcId?: 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.

§
VpcId?: string | null
[src]

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