/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace KinesisVideo { namespace Model { class DescribeSignalingChannelResult { public: AWS_KINESISVIDEO_API DescribeSignalingChannelResult(); AWS_KINESISVIDEO_API DescribeSignalingChannelResult(const Aws::AmazonWebServiceResult& result); AWS_KINESISVIDEO_API 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;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeSignalingChannelResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeSignalingChannelResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeSignalingChannelResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ChannelInfo m_channelInfo; Aws::String m_requestId; }; } // namespace Model } // namespace KinesisVideo } // namespace Aws