Get Instances Health Status
| servicediscovery_get_instances_health_status | R Documentation |
Gets the current health status (Healthy, Unhealthy, or Unknown) of one or more instances that are associated with a specified service¶
Description¶
Gets the current health status (Healthy, Unhealthy, or Unknown) of
one or more instances that are associated with a specified service.
There's a brief delay between when you register an instance and when the health status for the instance is available.
Usage¶
Arguments¶
ServiceId[required] The ID of the service that the instance is associated with.
InstancesAn array that contains the IDs of all the instances that you want to get the health status for.
If you omit
Instances, Cloud Map returns the health status for all the instances that are associated with the specified service.To get the IDs for the instances that you've registered by using a specified service, submit a
list_instancesrequest.MaxResultsThe maximum number of instances that you want Cloud Map to return in the response to a
get_instances_health_statusrequest. If you don't specify a value forMaxResults, Cloud Map returns up to 100 instances.NextTokenFor the first
get_instances_health_statusrequest, omit this value.If more than
MaxResultsinstances match the specified criteria, you can submit anotherget_instances_health_statusrequest to get the next group of results. Specify the value ofNextTokenfrom the previous response in the next request.
Value¶
A list with the following syntax:
Request syntax¶
svc$get_instances_health_status(
ServiceId = "string",
Instances = list(
"string"
),
MaxResults = 123,
NextToken = "string"
)