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

EgressConfiguration

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

Describes configuration settings related to outbound network traffic of an App Runner service.

interface EgressConfiguration {
EgressType?: EgressType | null;
VpcConnectorArn?: string | null;
}

§Properties

§
EgressType?: EgressType | null
[src]

The type of egress configuration.

Set to DEFAULT for access to resources hosted on public networks.

Set to VPC to associate your service to a custom VPC specified by VpcConnectorArn.

§
VpcConnectorArn?: string | null
[src]

The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to associate with your App Runner service. Only valid when EgressType = VPC.