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

A structure that encapsulates the specified signaling channel's metadata and * properties.

*/ inline const ChannelInfo& GetChannelInfo() const{ return m_channelInfo; } /** *

A structure that encapsulates the specified signaling channel's metadata and * properties.

*/ inline void SetChannelInfo(const ChannelInfo& value) { m_channelInfo = value; } /** *

A structure that encapsulates the specified signaling channel's metadata and * properties.

*/ inline void SetChannelInfo(ChannelInfo&& value) { m_channelInfo = std::move(value); } /** *

A structure that encapsulates the specified signaling channel's metadata and * properties.

*/ inline DescribeSignalingChannelResult& WithChannelInfo(const ChannelInfo& value) { SetChannelInfo(value); return *this;} /** *

A structure that encapsulates the specified signaling channel's metadata and * properties.

*/ inline DescribeSignalingChannelResult& WithChannelInfo(ChannelInfo&& value) { SetChannelInfo(std::move(value)); return *this;} private: ChannelInfo m_channelInfo; }; } // namespace Model } // namespace KinesisVideo } // namespace Aws