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

VPCConfigResponse

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

VPC configuration associated with your simulation job.

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

§Properties

§
assignPublicIp?: boolean | null
[src]

A boolean indicating if a public IP was assigned.

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

A list of security group IDs associated with the simulation job.

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

A list of subnet IDs associated with the simulation job.

§
vpcId?: string | null
[src]

The VPC ID associated with your simulation job.