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

Information about the stream.

*/ inline const StreamInfo& GetStreamInfo() const{ return m_streamInfo; } /** *

Information about the stream.

*/ inline void SetStreamInfo(const StreamInfo& value) { m_streamInfo = value; } /** *

Information about the stream.

*/ inline void SetStreamInfo(StreamInfo&& value) { m_streamInfo = std::move(value); } /** *

Information about the stream.

*/ inline DescribeStreamResult& WithStreamInfo(const StreamInfo& value) { SetStreamInfo(value); return *this;} /** *

Information about the stream.

*/ inline DescribeStreamResult& WithStreamInfo(StreamInfo&& value) { SetStreamInfo(std::move(value)); return *this;} private: StreamInfo m_streamInfo; }; } // namespace Model } // namespace IoT } // namespace Aws