Module Values.TargetGroupPairInfoSource

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

Sourcetype nonrec t = {
  1. targetGroups : TargetGroupInfoList.t option;
    (*

    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.

    *)
  2. prodTrafficRoute : TrafficRoute.t option;
    (*

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

    *)
  3. testTrafficRoute : TrafficRoute.t option;
    (*

    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.

    *)
}
Sourceval make : ?targetGroups:??? -> ?prodTrafficRoute:??? -> ?testTrafficRoute:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TargetGroupName.t ]) list ] list | `Structure of (string * [> `List of [> `String of ListenerArn.t ] list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t