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

The ARN of the channel.

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

The ARN of the channel.

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

The ARN of the channel.

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

The ARN of the channel.

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

The ARN of the channel.

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

The ARN of the channel.

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

The ARN of the channel.

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

The information for the requested channel memberships.

*/ inline const Aws::Vector& GetChannelMemberships() const{ return m_channelMemberships; } /** *

The information for the requested channel memberships.

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

The information for the requested channel memberships.

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

The information for the requested channel memberships.

*/ inline ListChannelMembershipsResult& WithChannelMemberships(const Aws::Vector& value) { SetChannelMemberships(value); return *this;} /** *

The information for the requested channel memberships.

*/ inline ListChannelMembershipsResult& WithChannelMemberships(Aws::Vector&& value) { SetChannelMemberships(std::move(value)); return *this;} /** *

The information for the requested channel memberships.

*/ inline ListChannelMembershipsResult& AddChannelMemberships(const ChannelMembershipSummary& value) { m_channelMemberships.push_back(value); return *this; } /** *

The information for the requested channel memberships.

*/ inline ListChannelMembershipsResult& AddChannelMemberships(ChannelMembershipSummary&& value) { m_channelMemberships.push_back(std::move(value)); return *this; } /** *

The token passed by previous API calls until all requested channel * memberships are returned.

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

The token passed by previous API calls until all requested channel * memberships are returned.

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

The token passed by previous API calls until all requested channel * memberships are returned.

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

The token passed by previous API calls until all requested channel * memberships are returned.

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

The token passed by previous API calls until all requested channel * memberships are returned.

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

The token passed by previous API calls until all requested channel * memberships are returned.

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

The token passed by previous API calls until all requested channel * memberships are returned.

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