/** * 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 IVS { namespace Model { class AWS_IVS_API GetStreamResult { public: GetStreamResult(); GetStreamResult(const Aws::AmazonWebServiceResult& result); GetStreamResult& operator=(const Aws::AmazonWebServiceResult& result); inline const Stream& GetStream() const{ return m_stream; } inline void SetStream(const Stream& value) { m_stream = value; } inline void SetStream(Stream&& value) { m_stream = std::move(value); } inline GetStreamResult& WithStream(const Stream& value) { SetStream(value); return *this;} inline GetStreamResult& WithStream(Stream&& value) { SetStream(std::move(value)); return *this;} private: Stream m_stream; }; } // namespace Model } // namespace IVS } // namespace Aws