/** * 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 CreateSignalingChannelResult { public: CreateSignalingChannelResult(); CreateSignalingChannelResult(const Aws::AmazonWebServiceResult& result); CreateSignalingChannelResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the created channel.

*/ inline const Aws::String& GetChannelARN() const{ return m_channelARN; } /** *

The Amazon Resource Name (ARN) of the created channel.

*/ inline void SetChannelARN(const Aws::String& value) { m_channelARN = value; } /** *

The Amazon Resource Name (ARN) of the created channel.

*/ inline void SetChannelARN(Aws::String&& value) { m_channelARN = std::move(value); } /** *

The Amazon Resource Name (ARN) of the created channel.

*/ inline void SetChannelARN(const char* value) { m_channelARN.assign(value); } /** *

The Amazon Resource Name (ARN) of the created channel.

*/ inline CreateSignalingChannelResult& WithChannelARN(const Aws::String& value) { SetChannelARN(value); return *this;} /** *

The Amazon Resource Name (ARN) of the created channel.

*/ inline CreateSignalingChannelResult& WithChannelARN(Aws::String&& value) { SetChannelARN(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the created channel.

*/ inline CreateSignalingChannelResult& WithChannelARN(const char* value) { SetChannelARN(value); return *this;} private: Aws::String m_channelARN; }; } // namespace Model } // namespace KinesisVideo } // namespace Aws