Deregister Instances From Load Balancer
elb_deregister_instances_from_load_balancer | R Documentation |
Deregisters the specified instances from the specified load balancer¶
Description¶
Deregisters the specified instances from the specified load balancer. After the instance is deregistered, it no longer receives traffic from the load balancer.
You can use describe_load_balancers
to verify that the instance is
deregistered from the load balancer.
For more information, see Register or De-Register EC2 Instances in the Classic Load Balancers Guide.
Usage¶
Arguments¶
LoadBalancerName
[required] The name of the load balancer.
Instances
[required] The IDs of the instances.
Value¶
A list with the following syntax:
Request syntax¶
svc$deregister_instances_from_load_balancer(
LoadBalancerName = "string",
Instances = list(
list(
InstanceId = "string"
)
)
)