/** * 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 MediaConnect { namespace Model { class AWS_MEDIACONNECT_API UpdateFlowResult { public: UpdateFlowResult(); UpdateFlowResult(const Aws::AmazonWebServiceResult& result); UpdateFlowResult& operator=(const Aws::AmazonWebServiceResult& result); inline const Flow& GetFlow() const{ return m_flow; } inline void SetFlow(const Flow& value) { m_flow = value; } inline void SetFlow(Flow&& value) { m_flow = std::move(value); } inline UpdateFlowResult& WithFlow(const Flow& value) { SetFlow(value); return *this;} inline UpdateFlowResult& WithFlow(Flow&& value) { SetFlow(std::move(value)); return *this;} private: Flow m_flow; }; } // namespace Model } // namespace MediaConnect } // namespace Aws