Class: Aws::Route53::Types::GetHealthCheckStatusRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::GetHealthCheckStatusRequest
- Defined in:
- gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb
Overview
Note:
When making an API call, you may pass GetHealthCheckStatusRequest data as a hash:
{
health_check_id: "HealthCheckId", # required
}
A request to get the status for a health check.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#health_check_id ⇒ String
The ID for the health check that you want the current status for.
Instance Attribute Details
#health_check_id ⇒ String
The ID for the health check that you want the current status for.
When you created the health check, CreateHealthCheck
returned the
ID in the response, in the HealthCheckId
element.
GetHealthCheckStatus
to get the status of a calculated
health check.
3227 3228 3229 3230 3231 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 3227 class GetHealthCheckStatusRequest < Struct.new( :health_check_id) SENSITIVE = [] include Aws::Structure end |