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

VirtualNodeSpec

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

An object that represents the specification of a virtual node.

interface VirtualNodeSpec {
backendDefaults?: BackendDefaults | null;
backends?: Backend[] | null;
listeners?: Listener[] | null;
logging?: Logging | null;
serviceDiscovery?: ServiceDiscovery | null;
}

§Properties

§
backendDefaults?: BackendDefaults | null
[src]

A reference to an object that represents the defaults for backends.

§
backends?: Backend[] | null
[src]

The backends that the virtual node is expected to send outbound traffic to.

§
listeners?: Listener[] | null
[src]

The listener that the virtual node is expected to receive inbound traffic from. You can specify one listener.

§
logging?: Logging | null
[src]

The inbound and outbound access logging information for the virtual node.

§
serviceDiscovery?: ServiceDiscovery | null
[src]

The service discovery information for the virtual node. If your virtual node does not expect ingress traffic, you can omit this parameter. If you specify a listener, then you must specify service discovery information.