Module Values.DeregisterTargetsInputSource

Deregisters the specified targets from the specified target group. After the targets are deregistered, they no longer receive traffic from the load balancer. The load balancer stops sending requests to targets that are deregistering, but uses connection draining to ensure that in-flight traffic completes on the existing connections. This deregistration delay is configured by default but can be updated for each target group. For more information, see the following: Deregistration delay in the Application Load Balancers User Guide Deregistration delay in the Network Load Balancers User Guide Deregistration delay in the Gateway Load Balancers User Guide Note: If the specified target does not exist, the action returns successfully.

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

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

    *)
  2. targets : TargetDescriptions.t;
    (*

    The targets. If you specified a port override when you registered a target, you must specify both the target ID and the port when you deregister it.

    *)
}
Sourceval context_ : string
Sourceval make : targetGroupArn:TargetGroupArn.t -> targets:TargetDescriptions.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of Port.t | `String of TargetId.t ]) list ] list | `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