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

TargetGroupPairInfo

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

Information about two target groups and how traffic is routed during an Amazon ECS deployment. An optional test traffic route can be specified.

interface TargetGroupPairInfo {
prodTrafficRoute?: TrafficRoute | null;
targetGroups?: TargetGroupInfo[] | null;
testTrafficRoute?: TrafficRoute | null;
}

§Properties

§
prodTrafficRoute?: TrafficRoute | null
[src]

The path used by a load balancer to route production traffic when an Amazon ECS deployment is complete.

§
targetGroups?: TargetGroupInfo[] | null
[src]

One pair of target groups. One is associated with the original task set. The second is associated with the task set that serves traffic after the deployment is complete.

§
testTrafficRoute?: TrafficRoute | null
[src]

An optional path used by a load balancer to route test traffic after an Amazon ECS deployment. Validation can occur while test traffic is served during a deployment.