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/GetTopicRuleDestinationResult.h

68 lines
1.8 KiB
C++

/**
* 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/iot/model/TopicRuleDestination.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace IoT
{
namespace Model
{
class AWS_IOT_API GetTopicRuleDestinationResult
{
public:
GetTopicRuleDestinationResult();
GetTopicRuleDestinationResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetTopicRuleDestinationResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The topic rule destination.</p>
*/
inline const TopicRuleDestination& GetTopicRuleDestination() const{ return m_topicRuleDestination; }
/**
* <p>The topic rule destination.</p>
*/
inline void SetTopicRuleDestination(const TopicRuleDestination& value) { m_topicRuleDestination = value; }
/**
* <p>The topic rule destination.</p>
*/
inline void SetTopicRuleDestination(TopicRuleDestination&& value) { m_topicRuleDestination = std::move(value); }
/**
* <p>The topic rule destination.</p>
*/
inline GetTopicRuleDestinationResult& WithTopicRuleDestination(const TopicRuleDestination& value) { SetTopicRuleDestination(value); return *this;}
/**
* <p>The topic rule destination.</p>
*/
inline GetTopicRuleDestinationResult& WithTopicRuleDestination(TopicRuleDestination&& value) { SetTopicRuleDestination(std::move(value)); return *this;}
private:
TopicRuleDestination m_topicRuleDestination;
};
} // namespace Model
} // namespace IoT
} // namespace Aws