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

VpcConfiguration

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

The configuration settings for an Amazon VPC that contains data sources for your Grafana workspace to connect to.

Note: Provided securityGroupIds and subnetIds must be part of the same VPC.

interface VpcConfiguration {
securityGroupIds: string[];
subnetIds: string[];
}

§Properties

§
securityGroupIds: string[]
[src]

The list of Amazon EC2 security group IDs attached to the Amazon VPC for your Grafana workspace to connect. Duplicates not allowed.

§
subnetIds: string[]
[src]

The list of Amazon EC2 subnet IDs created in the Amazon VPC for your Grafana workspace to connect. Duplicates not allowed.