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

The assistant association.

*/ inline const AssistantAssociationData& GetAssistantAssociation() const{ return m_assistantAssociation; } /** *

The assistant association.

*/ inline void SetAssistantAssociation(const AssistantAssociationData& value) { m_assistantAssociation = value; } /** *

The assistant association.

*/ inline void SetAssistantAssociation(AssistantAssociationData&& value) { m_assistantAssociation = std::move(value); } /** *

The assistant association.

*/ inline GetAssistantAssociationResult& WithAssistantAssociation(const AssistantAssociationData& value) { SetAssistantAssociation(value); return *this;} /** *

The assistant association.

*/ inline GetAssistantAssociationResult& WithAssistantAssociation(AssistantAssociationData&& value) { SetAssistantAssociation(std::move(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 GetAssistantAssociationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetAssistantAssociationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetAssistantAssociationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: AssistantAssociationData m_assistantAssociation; Aws::String m_requestId; }; } // namespace Model } // namespace ConnectWisdomService } // namespace Aws