Class: Aws::Route53::Types::GetHealthCheckStatusRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-route53/types.rb

Overview

A request to get the status for a health check.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#health_check_idString

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.

<note markdown=“1”> If you want to check the status of a calculated health check, you must use the Amazon Route 53 console or the CloudWatch console. You can’t use ‘GetHealthCheckStatus` to get the status of a calculated health check.

</note>

Returns:

  • (String)


2833
2834
2835
2836
2837
# File 'lib/aws-sdk-route53/types.rb', line 2833

class GetHealthCheckStatusRequest < Struct.new(
  :health_check_id)
  SENSITIVE = []
  include Aws::Structure
end