/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The result structure for the get webhook request. See Also:
* AWS
* API Reference
Describes the structure of a webhook.
*/ inline const Webhook& GetWebhook() const{ return m_webhook; } /** *Describes the structure of a webhook.
*/ inline void SetWebhook(const Webhook& value) { m_webhook = value; } /** *Describes the structure of a webhook.
*/ inline void SetWebhook(Webhook&& value) { m_webhook = std::move(value); } /** *Describes the structure of a webhook.
*/ inline GetWebhookResult& WithWebhook(const Webhook& value) { SetWebhook(value); return *this;} /** *Describes the structure of a webhook.
*/ inline GetWebhookResult& WithWebhook(Webhook&& value) { SetWebhook(std::move(value)); return *this;} private: Webhook m_webhook; }; } // namespace Model } // namespace Amplify } // namespace Aws