This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-iot/include/aws/iot/model/HttpUrlDestinationSummary.h

97 lines
2.9 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/iot/IoT_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace IoT
{
namespace Model
{
/**
* <p>Information about an HTTP URL destination.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/iot-2015-05-28/HttpUrlDestinationSummary">AWS
* API Reference</a></p>
*/
class AWS_IOT_API HttpUrlDestinationSummary
{
public:
HttpUrlDestinationSummary();
HttpUrlDestinationSummary(Aws::Utils::Json::JsonView jsonValue);
HttpUrlDestinationSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The URL used to confirm ownership of or access to the HTTP topic rule
* destination URL.</p>
*/
inline const Aws::String& GetConfirmationUrl() const{ return m_confirmationUrl; }
/**
* <p>The URL used to confirm ownership of or access to the HTTP topic rule
* destination URL.</p>
*/
inline bool ConfirmationUrlHasBeenSet() const { return m_confirmationUrlHasBeenSet; }
/**
* <p>The URL used to confirm ownership of or access to the HTTP topic rule
* destination URL.</p>
*/
inline void SetConfirmationUrl(const Aws::String& value) { m_confirmationUrlHasBeenSet = true; m_confirmationUrl = value; }
/**
* <p>The URL used to confirm ownership of or access to the HTTP topic rule
* destination URL.</p>
*/
inline void SetConfirmationUrl(Aws::String&& value) { m_confirmationUrlHasBeenSet = true; m_confirmationUrl = std::move(value); }
/**
* <p>The URL used to confirm ownership of or access to the HTTP topic rule
* destination URL.</p>
*/
inline void SetConfirmationUrl(const char* value) { m_confirmationUrlHasBeenSet = true; m_confirmationUrl.assign(value); }
/**
* <p>The URL used to confirm ownership of or access to the HTTP topic rule
* destination URL.</p>
*/
inline HttpUrlDestinationSummary& WithConfirmationUrl(const Aws::String& value) { SetConfirmationUrl(value); return *this;}
/**
* <p>The URL used to confirm ownership of or access to the HTTP topic rule
* destination URL.</p>
*/
inline HttpUrlDestinationSummary& WithConfirmationUrl(Aws::String&& value) { SetConfirmationUrl(std::move(value)); return *this;}
/**
* <p>The URL used to confirm ownership of or access to the HTTP topic rule
* destination URL.</p>
*/
inline HttpUrlDestinationSummary& WithConfirmationUrl(const char* value) { SetConfirmationUrl(value); return *this;}
private:
Aws::String m_confirmationUrl;
bool m_confirmationUrlHasBeenSet;
};
} // namespace Model
} // namespace IoT
} // namespace Aws