Describe Instance Health
| elb_describe_instance_health | R Documentation |
Describes the state of the specified instances with respect to the specified load balancer¶
Description¶
Describes the state of the specified instances with respect to the specified load balancer. If no instances are specified, the call describes the state of all instances that are currently registered with the load balancer. If instances are specified, their state is returned even if they are no longer registered with the load balancer. The state of terminated instances is not returned.
Usage¶
Arguments¶
LoadBalancerName[required] The name of the load balancer.
InstancesThe IDs of the instances.
Value¶
A list with the following syntax:
list(
InstanceStates = list(
list(
InstanceId = "string",
State = "string",
ReasonCode = "string",
Description = "string"
)
)
)
Request syntax¶
svc$describe_instance_health(
LoadBalancerName = "string",
Instances = list(
list(
InstanceId = "string"
)
)
)