/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/opsworkscm/OpsWorksCM_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { template<typename RESULT_TYPE> class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace OpsWorksCM { namespace Model { class DisassociateNodeResult { public: AWS_OPSWORKSCM_API DisassociateNodeResult(); AWS_OPSWORKSCM_API DisassociateNodeResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_OPSWORKSCM_API DisassociateNodeResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>Contains a token which can be passed to the * <code>DescribeNodeAssociationStatus</code> API call to get the status of the * disassociation request. </p> */ inline const Aws::String& GetNodeAssociationStatusToken() const{ return m_nodeAssociationStatusToken; } /** * <p>Contains a token which can be passed to the * <code>DescribeNodeAssociationStatus</code> API call to get the status of the * disassociation request. </p> */ inline void SetNodeAssociationStatusToken(const Aws::String& value) { m_nodeAssociationStatusToken = value; } /** * <p>Contains a token which can be passed to the * <code>DescribeNodeAssociationStatus</code> API call to get the status of the * disassociation request. </p> */ inline void SetNodeAssociationStatusToken(Aws::String&& value) { m_nodeAssociationStatusToken = std::move(value); } /** * <p>Contains a token which can be passed to the * <code>DescribeNodeAssociationStatus</code> API call to get the status of the * disassociation request. </p> */ inline void SetNodeAssociationStatusToken(const char* value) { m_nodeAssociationStatusToken.assign(value); } /** * <p>Contains a token which can be passed to the * <code>DescribeNodeAssociationStatus</code> API call to get the status of the * disassociation request. </p> */ inline DisassociateNodeResult& WithNodeAssociationStatusToken(const Aws::String& value) { SetNodeAssociationStatusToken(value); return *this;} /** * <p>Contains a token which can be passed to the * <code>DescribeNodeAssociationStatus</code> API call to get the status of the * disassociation request. </p> */ inline DisassociateNodeResult& WithNodeAssociationStatusToken(Aws::String&& value) { SetNodeAssociationStatusToken(std::move(value)); return *this;} /** * <p>Contains a token which can be passed to the * <code>DescribeNodeAssociationStatus</code> API call to get the status of the * disassociation request. </p> */ inline DisassociateNodeResult& WithNodeAssociationStatusToken(const char* value) { SetNodeAssociationStatusToken(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 DisassociateNodeResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DisassociateNodeResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DisassociateNodeResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_nodeAssociationStatusToken; Aws::String m_requestId; }; } // namespace Model } // namespace OpsWorksCM } // namespace Aws