Class: Aws::Route53::Types::DeleteHealthCheckRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::DeleteHealthCheckRequest
- Defined in:
- gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb
Overview
Note:
When making an API call, you may pass DeleteHealthCheckRequest data as a hash:
{
health_check_id: "HealthCheckId", # required
}
This action deletes a health check.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#health_check_id ⇒ String
The ID of the health check that you want to delete.
Instance Attribute Details
#health_check_id ⇒ String
The ID of the health check that you want to delete.
2340 2341 2342 2343 2344 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 2340 class DeleteHealthCheckRequest < Struct.new( :health_check_id) SENSITIVE = [] include Aws::Structure end |