Module Values.TargetGroupTupleSource

Information about how traffic will be distributed between multiple target groups in a forward rule.

Sourcetype nonrec t = {
  1. targetGroupArn : TargetGroupArn.t option;
    (*

    The Amazon Resource Name (ARN) of the target group.

    *)
  2. weight : TargetGroupWeight.t option;
    (*

    The weight. The range is 0 to 999.

    *)
}
Sourceval make : ?targetGroupArn:??? -> ?weight:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of TargetGroupWeight.t | `String of TargetGroupArn.t ]) 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