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

An array of objects, one for each association, that provides information * about the Amazon Lex bot and its association with the channel.

*/ inline const Aws::Vector& GetBotChannelAssociations() const{ return m_botChannelAssociations; } /** *

An array of objects, one for each association, that provides information * about the Amazon Lex bot and its association with the channel.

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

An array of objects, one for each association, that provides information * about the Amazon Lex bot and its association with the channel.

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

An array of objects, one for each association, that provides information * about the Amazon Lex bot and its association with the channel.

*/ inline GetBotChannelAssociationsResult& WithBotChannelAssociations(const Aws::Vector& value) { SetBotChannelAssociations(value); return *this;} /** *

An array of objects, one for each association, that provides information * about the Amazon Lex bot and its association with the channel.

*/ inline GetBotChannelAssociationsResult& WithBotChannelAssociations(Aws::Vector&& value) { SetBotChannelAssociations(std::move(value)); return *this;} /** *

An array of objects, one for each association, that provides information * about the Amazon Lex bot and its association with the channel.

*/ inline GetBotChannelAssociationsResult& AddBotChannelAssociations(const BotChannelAssociation& value) { m_botChannelAssociations.push_back(value); return *this; } /** *

An array of objects, one for each association, that provides information * about the Amazon Lex bot and its association with the channel.

*/ inline GetBotChannelAssociationsResult& AddBotChannelAssociations(BotChannelAssociation&& value) { m_botChannelAssociations.push_back(std::move(value)); return *this; } /** *

A pagination token that fetches the next page of associations. If the * response to this call is truncated, Amazon Lex returns a pagination token in the * response. To fetch the next page of associations, specify the pagination token * in the next request.

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

A pagination token that fetches the next page of associations. If the * response to this call is truncated, Amazon Lex returns a pagination token in the * response. To fetch the next page of associations, specify the pagination token * in the next request.

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

A pagination token that fetches the next page of associations. If the * response to this call is truncated, Amazon Lex returns a pagination token in the * response. To fetch the next page of associations, specify the pagination token * in the next request.

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

A pagination token that fetches the next page of associations. If the * response to this call is truncated, Amazon Lex returns a pagination token in the * response. To fetch the next page of associations, specify the pagination token * in the next request.

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

A pagination token that fetches the next page of associations. If the * response to this call is truncated, Amazon Lex returns a pagination token in the * response. To fetch the next page of associations, specify the pagination token * in the next request.

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

A pagination token that fetches the next page of associations. If the * response to this call is truncated, Amazon Lex returns a pagination token in the * response. To fetch the next page of associations, specify the pagination token * in the next request.

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

A pagination token that fetches the next page of associations. If the * response to this call is truncated, Amazon Lex returns a pagination token in the * response. To fetch the next page of associations, specify the pagination token * in the next request.

*/ inline GetBotChannelAssociationsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::Vector m_botChannelAssociations; Aws::String m_nextToken; }; } // namespace Model } // namespace LexModelBuildingService } // namespace Aws