/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The data that is output as a result of the assistant
* association.See Also:
AWS
* API Reference
The knowledge base where output data is sent.
*/ inline const KnowledgeBaseAssociationData& GetKnowledgeBaseAssociation() const{ return m_knowledgeBaseAssociation; } /** *The knowledge base where output data is sent.
*/ inline bool KnowledgeBaseAssociationHasBeenSet() const { return m_knowledgeBaseAssociationHasBeenSet; } /** *The knowledge base where output data is sent.
*/ inline void SetKnowledgeBaseAssociation(const KnowledgeBaseAssociationData& value) { m_knowledgeBaseAssociationHasBeenSet = true; m_knowledgeBaseAssociation = value; } /** *The knowledge base where output data is sent.
*/ inline void SetKnowledgeBaseAssociation(KnowledgeBaseAssociationData&& value) { m_knowledgeBaseAssociationHasBeenSet = true; m_knowledgeBaseAssociation = std::move(value); } /** *The knowledge base where output data is sent.
*/ inline AssistantAssociationOutputData& WithKnowledgeBaseAssociation(const KnowledgeBaseAssociationData& value) { SetKnowledgeBaseAssociation(value); return *this;} /** *The knowledge base where output data is sent.
*/ inline AssistantAssociationOutputData& WithKnowledgeBaseAssociation(KnowledgeBaseAssociationData&& value) { SetKnowledgeBaseAssociation(std::move(value)); return *this;} private: KnowledgeBaseAssociationData m_knowledgeBaseAssociation; bool m_knowledgeBaseAssociationHasBeenSet = false; }; } // namespace Model } // namespace ConnectWisdomService } // namespace Aws