/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ChimeSDKMessaging { namespace Model { class ListSubChannelsResult { public: AWS_CHIMESDKMESSAGING_API ListSubChannelsResult(); AWS_CHIMESDKMESSAGING_API ListSubChannelsResult(const Aws::AmazonWebServiceResult& result); AWS_CHIMESDKMESSAGING_API ListSubChannelsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ARN of elastic channel.

*/ inline const Aws::String& GetChannelArn() const{ return m_channelArn; } /** *

The ARN of elastic channel.

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

The ARN of elastic channel.

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

The ARN of elastic channel.

*/ inline void SetChannelArn(const char* value) { m_channelArn.assign(value); } /** *

The ARN of elastic channel.

*/ inline ListSubChannelsResult& WithChannelArn(const Aws::String& value) { SetChannelArn(value); return *this;} /** *

The ARN of elastic channel.

*/ inline ListSubChannelsResult& WithChannelArn(Aws::String&& value) { SetChannelArn(std::move(value)); return *this;} /** *

The ARN of elastic channel.

*/ inline ListSubChannelsResult& WithChannelArn(const char* value) { SetChannelArn(value); return *this;} /** *

The information about each sub-channel.

*/ inline const Aws::Vector& GetSubChannels() const{ return m_subChannels; } /** *

The information about each sub-channel.

*/ inline void SetSubChannels(const Aws::Vector& value) { m_subChannels = value; } /** *

The information about each sub-channel.

*/ inline void SetSubChannels(Aws::Vector&& value) { m_subChannels = std::move(value); } /** *

The information about each sub-channel.

*/ inline ListSubChannelsResult& WithSubChannels(const Aws::Vector& value) { SetSubChannels(value); return *this;} /** *

The information about each sub-channel.

*/ inline ListSubChannelsResult& WithSubChannels(Aws::Vector&& value) { SetSubChannels(std::move(value)); return *this;} /** *

The information about each sub-channel.

*/ inline ListSubChannelsResult& AddSubChannels(const SubChannelSummary& value) { m_subChannels.push_back(value); return *this; } /** *

The information about each sub-channel.

*/ inline ListSubChannelsResult& AddSubChannels(SubChannelSummary&& value) { m_subChannels.push_back(std::move(value)); return *this; } /** *

The token passed by previous API calls until all requested sub-channels are * returned.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

The token passed by previous API calls until all requested sub-channels are * returned.

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

The token passed by previous API calls until all requested sub-channels are * returned.

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

The token passed by previous API calls until all requested sub-channels are * returned.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

The token passed by previous API calls until all requested sub-channels are * returned.

*/ inline ListSubChannelsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

The token passed by previous API calls until all requested sub-channels are * returned.

*/ inline ListSubChannelsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

The token passed by previous API calls until all requested sub-channels are * returned.

*/ inline ListSubChannelsResult& WithNextToken(const char* value) { SetNextToken(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 ListSubChannelsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListSubChannelsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListSubChannelsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_channelArn; Aws::Vector m_subChannels; Aws::String m_nextToken; Aws::String m_requestId; }; } // namespace Model } // namespace ChimeSDKMessaging } // namespace Aws