/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include This action deletes a health check.See Also:
AWS
* API Reference
The ID of the health check that you want to delete.
*/ inline const Aws::String& GetHealthCheckId() const{ return m_healthCheckId; } /** *The ID of the health check that you want to delete.
*/ inline bool HealthCheckIdHasBeenSet() const { return m_healthCheckIdHasBeenSet; } /** *The ID of the health check that you want to delete.
*/ inline void SetHealthCheckId(const Aws::String& value) { m_healthCheckIdHasBeenSet = true; m_healthCheckId = value; } /** *The ID of the health check that you want to delete.
*/ inline void SetHealthCheckId(Aws::String&& value) { m_healthCheckIdHasBeenSet = true; m_healthCheckId = std::move(value); } /** *The ID of the health check that you want to delete.
*/ inline void SetHealthCheckId(const char* value) { m_healthCheckIdHasBeenSet = true; m_healthCheckId.assign(value); } /** *The ID of the health check that you want to delete.
*/ inline DeleteHealthCheckRequest& WithHealthCheckId(const Aws::String& value) { SetHealthCheckId(value); return *this;} /** *The ID of the health check that you want to delete.
*/ inline DeleteHealthCheckRequest& WithHealthCheckId(Aws::String&& value) { SetHealthCheckId(std::move(value)); return *this;} /** *The ID of the health check that you want to delete.
*/ inline DeleteHealthCheckRequest& WithHealthCheckId(const char* value) { SetHealthCheckId(value); return *this;} private: Aws::String m_healthCheckId; bool m_healthCheckIdHasBeenSet = false; }; } // namespace Model } // namespace Route53 } // namespace Aws