/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include HTTP URL destination properties.See Also:
AWS
* API Reference
The URL used to confirm the HTTP topic rule destination URL.
*/ inline const Aws::String& GetConfirmationUrl() const{ return m_confirmationUrl; } /** *The URL used to confirm the HTTP topic rule destination URL.
*/ inline bool ConfirmationUrlHasBeenSet() const { return m_confirmationUrlHasBeenSet; } /** *The URL used to confirm the HTTP topic rule destination URL.
*/ inline void SetConfirmationUrl(const Aws::String& value) { m_confirmationUrlHasBeenSet = true; m_confirmationUrl = value; } /** *The URL used to confirm the HTTP topic rule destination URL.
*/ inline void SetConfirmationUrl(Aws::String&& value) { m_confirmationUrlHasBeenSet = true; m_confirmationUrl = std::move(value); } /** *The URL used to confirm the HTTP topic rule destination URL.
*/ inline void SetConfirmationUrl(const char* value) { m_confirmationUrlHasBeenSet = true; m_confirmationUrl.assign(value); } /** *The URL used to confirm the HTTP topic rule destination URL.
*/ inline HttpUrlDestinationProperties& WithConfirmationUrl(const Aws::String& value) { SetConfirmationUrl(value); return *this;} /** *The URL used to confirm the HTTP topic rule destination URL.
*/ inline HttpUrlDestinationProperties& WithConfirmationUrl(Aws::String&& value) { SetConfirmationUrl(std::move(value)); return *this;} /** *The URL used to confirm the HTTP topic rule destination URL.
*/ inline HttpUrlDestinationProperties& WithConfirmationUrl(const char* value) { SetConfirmationUrl(value); return *this;} private: Aws::String m_confirmationUrl; bool m_confirmationUrlHasBeenSet = false; }; } // namespace Model } // namespace IoT } // namespace Aws