/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The request structure for the delete webhook request. See
* Also:
AWS
* API Reference
The unique ID for a webhook.
*/ inline const Aws::String& GetWebhookId() const{ return m_webhookId; } /** *The unique ID for a webhook.
*/ inline bool WebhookIdHasBeenSet() const { return m_webhookIdHasBeenSet; } /** *The unique ID for a webhook.
*/ inline void SetWebhookId(const Aws::String& value) { m_webhookIdHasBeenSet = true; m_webhookId = value; } /** *The unique ID for a webhook.
*/ inline void SetWebhookId(Aws::String&& value) { m_webhookIdHasBeenSet = true; m_webhookId = std::move(value); } /** *The unique ID for a webhook.
*/ inline void SetWebhookId(const char* value) { m_webhookIdHasBeenSet = true; m_webhookId.assign(value); } /** *The unique ID for a webhook.
*/ inline DeleteWebhookRequest& WithWebhookId(const Aws::String& value) { SetWebhookId(value); return *this;} /** *The unique ID for a webhook.
*/ inline DeleteWebhookRequest& WithWebhookId(Aws::String&& value) { SetWebhookId(std::move(value)); return *this;} /** *The unique ID for a webhook.
*/ inline DeleteWebhookRequest& WithWebhookId(const char* value) { SetWebhookId(value); return *this;} private: Aws::String m_webhookId; bool m_webhookIdHasBeenSet = false; }; } // namespace Model } // namespace Amplify } // namespace Aws