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

The ARN of the channel flow.

*/ inline const Aws::String& GetChannelFlowArn() const{ return m_channelFlowArn; } /** *

The ARN of the channel flow.

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

The ARN of the channel flow.

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

The ARN of the channel flow.

*/ inline void SetChannelFlowArn(const char* value) { m_channelFlowArn.assign(value); } /** *

The ARN of the channel flow.

*/ inline UpdateChannelFlowResult& WithChannelFlowArn(const Aws::String& value) { SetChannelFlowArn(value); return *this;} /** *

The ARN of the channel flow.

*/ inline UpdateChannelFlowResult& WithChannelFlowArn(Aws::String&& value) { SetChannelFlowArn(std::move(value)); return *this;} /** *

The ARN of the channel flow.

*/ inline UpdateChannelFlowResult& WithChannelFlowArn(const char* value) { SetChannelFlowArn(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 UpdateChannelFlowResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateChannelFlowResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateChannelFlowResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_channelFlowArn; Aws::String m_requestId; }; } // namespace Model } // namespace ChimeSDKMessaging } // namespace Aws