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

The object that describes the specified workflow.

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

The object that describes the specified workflow.

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

The object that describes the specified workflow.

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

The object that describes the specified workflow.

*/ inline GetFlowTemplateResult& WithDescription(const FlowTemplateDescription& value) { SetDescription(value); return *this;} /** *

The object that describes the specified workflow.

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