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

WeightedTarget

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

An object that represents a target and its relative weight. Traffic is distributed across targets according to their relative weight. For example, a weighted target with a relative weight of 50 receives five times as much traffic as one with a relative weight of 10. The total weight for all targets combined must be less than or equal to 100.

interface WeightedTarget {
virtualNode: string;
weight: number;
}

§Properties

§
virtualNode: string
[src]

The virtual node to associate with the weighted target.

§
weight: number
[src]

The relative weight of the weighted target.