/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template 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& result); DescribePlacementResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

An object describing the placement.

*/ inline const PlacementDescription& GetPlacement() const{ return m_placement; } /** *

An object describing the placement.

*/ inline void SetPlacement(const PlacementDescription& value) { m_placement = value; } /** *

An object describing the placement.

*/ inline void SetPlacement(PlacementDescription&& value) { m_placement = std::move(value); } /** *

An object describing the placement.

*/ inline DescribePlacementResult& WithPlacement(const PlacementDescription& value) { SetPlacement(value); return *this;} /** *

An object describing the placement.

*/ inline DescribePlacementResult& WithPlacement(PlacementDescription&& value) { SetPlacement(std::move(value)); return *this;} private: PlacementDescription m_placement; }; } // namespace Model } // namespace IoT1ClickProjects } // namespace Aws