68 lines
1.8 KiB
C++
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/iot1click-projects/IoT1ClickProjects_EXPORTS.h>
|
|
#include <aws/iot1click-projects/model/PlacementDescription.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace IoT1ClickProjects
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_IOT1CLICKPROJECTS_API DescribePlacementResult
|
|
{
|
|
public:
|
|
DescribePlacementResult();
|
|
DescribePlacementResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DescribePlacementResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>An object describing the placement.</p>
|
|
*/
|
|
inline const PlacementDescription& GetPlacement() const{ return m_placement; }
|
|
|
|
/**
|
|
* <p>An object describing the placement.</p>
|
|
*/
|
|
inline void SetPlacement(const PlacementDescription& value) { m_placement = value; }
|
|
|
|
/**
|
|
* <p>An object describing the placement.</p>
|
|
*/
|
|
inline void SetPlacement(PlacementDescription&& value) { m_placement = std::move(value); }
|
|
|
|
/**
|
|
* <p>An object describing the placement.</p>
|
|
*/
|
|
inline DescribePlacementResult& WithPlacement(const PlacementDescription& value) { SetPlacement(value); return *this;}
|
|
|
|
/**
|
|
* <p>An object describing the placement.</p>
|
|
*/
|
|
inline DescribePlacementResult& WithPlacement(PlacementDescription&& value) { SetPlacement(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
PlacementDescription m_placement;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace IoT1ClickProjects
|
|
} // namespace Aws
|