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

InputVpcRequest

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

Settings for a private VPC Input. When this property is specified, the input destination addresses will be created in a VPC rather than with public Internet addresses. This property requires setting the roleArn property on Input creation. Not compatible with the inputSecurityGroups property.

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

§Properties

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

A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network interfaces. Requires subnetIds. If none are specified then the VPC default security group will be used.

§
SubnetIds: string[]
[src]

A list of 2 VPC subnet IDs from the same VPC. Subnet IDs must be mapped to two unique availability zones (AZ).