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

VpcOutputSettings

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

The properties for a private VPC Output When this property is specified, the output egress addresses will be created in a user specified VPC

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

§Properties

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

List of public address allocation ids to associate with ENIs that will be created in Output VPC. Must specify one for SINGLE_PIPELINE, two for STANDARD channels

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

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

§
SubnetIds: string[]
[src]

A list of VPC subnet IDs from the same VPC. If STANDARD channel, subnet IDs must be mapped to two unique availability zones (AZ).