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/robomaker.ts?docs=full";

If your simulation job accesses resources in a VPC, you provide this parameter identifying the list of security group IDs and subnet IDs. These must belong to the same VPC. You must provide at least one security group and two subnet IDs.

interface VPCConfig {
assignPublicIp?: boolean | null;
securityGroups?: string[] | null;
subnets: string[];
}

§Properties

§
assignPublicIp?: boolean | null
[src]

A boolean indicating whether to assign a public IP address.

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

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

§
subnets: string[]
[src]

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