/** * 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 IoTThingsGraph { namespace Model { class AWS_IOTTHINGSGRAPH_API GetSystemTemplateResult { public: GetSystemTemplateResult(); GetSystemTemplateResult(const Aws::AmazonWebServiceResult& result); GetSystemTemplateResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

An object that contains summary data about the system.

*/ inline const SystemTemplateDescription& GetDescription() const{ return m_description; } /** *

An object that contains summary data about the system.

*/ inline void SetDescription(const SystemTemplateDescription& value) { m_description = value; } /** *

An object that contains summary data about the system.

*/ inline void SetDescription(SystemTemplateDescription&& value) { m_description = std::move(value); } /** *

An object that contains summary data about the system.

*/ inline GetSystemTemplateResult& WithDescription(const SystemTemplateDescription& value) { SetDescription(value); return *this;} /** *

An object that contains summary data about the system.

*/ inline GetSystemTemplateResult& WithDescription(SystemTemplateDescription&& value) { SetDescription(std::move(value)); return *this;} private: SystemTemplateDescription m_description; }; } // namespace Model } // namespace IoTThingsGraph } // namespace Aws