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-data/include/aws/iot-data/model/DeleteThingShadowResult.h

63 lines
1.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/iot-data/IoTDataPlane_EXPORTS.h>
#include <aws/core/utils/stream/ResponseStream.h>
#include <aws/core/utils/Array.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace IoTDataPlane
{
namespace Model
{
/**
* <p>The output from the DeleteThingShadow operation.</p><p><h3>See Also:</h3>
* <a
* href="http://docs.aws.amazon.com/goto/WebAPI/iot-data-2015-05-28/DeleteThingShadowResponse">AWS
* API Reference</a></p>
*/
class AWS_IOTDATAPLANE_API DeleteThingShadowResult
{
public:
DeleteThingShadowResult();
//We have to define these because Microsoft doesn't auto generate them
DeleteThingShadowResult(DeleteThingShadowResult&&);
DeleteThingShadowResult& operator=(DeleteThingShadowResult&&);
//we delete these because Microsoft doesn't handle move generation correctly
//and we therefore don't trust them to get it right here either.
DeleteThingShadowResult(const DeleteThingShadowResult&) = delete;
DeleteThingShadowResult& operator=(const DeleteThingShadowResult&) = delete;
DeleteThingShadowResult(Aws::AmazonWebServiceResult<Aws::Utils::Stream::ResponseStream>&& result);
DeleteThingShadowResult& operator=(Aws::AmazonWebServiceResult<Aws::Utils::Stream::ResponseStream>&& result);
/**
* <p>The state information, in JSON format.</p>
*/
inline Aws::IOStream& GetPayload() { return m_payload.GetUnderlyingStream(); }
/**
* <p>The state information, in JSON format.</p>
*/
inline void ReplaceBody(Aws::IOStream* body) { m_payload = Aws::Utils::Stream::ResponseStream(body); }
private:
Aws::Utils::Stream::ResponseStream m_payload;
};
} // namespace Model
} // namespace IoTDataPlane
} // namespace Aws