/** * 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 UpdateSystemTemplateResult { public: UpdateSystemTemplateResult(); UpdateSystemTemplateResult(const Aws::AmazonWebServiceResult& result); UpdateSystemTemplateResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

An object containing summary information about the updated system.

*/ inline const SystemTemplateSummary& GetSummary() const{ return m_summary; } /** *

An object containing summary information about the updated system.

*/ inline void SetSummary(const SystemTemplateSummary& value) { m_summary = value; } /** *

An object containing summary information about the updated system.

*/ inline void SetSummary(SystemTemplateSummary&& value) { m_summary = std::move(value); } /** *

An object containing summary information about the updated system.

*/ inline UpdateSystemTemplateResult& WithSummary(const SystemTemplateSummary& value) { SetSummary(value); return *this;} /** *

An object containing summary information about the updated system.

*/ inline UpdateSystemTemplateResult& WithSummary(SystemTemplateSummary&& value) { SetSummary(std::move(value)); return *this;} private: SystemTemplateSummary m_summary; }; } // namespace Model } // namespace IoTThingsGraph } // namespace Aws