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

Properties of the node configuration.

*/ inline const Node& GetNode() const{ return m_node; } /** *

Properties of the node configuration.

*/ inline void SetNode(const Node& value) { m_node = value; } /** *

Properties of the node configuration.

*/ inline void SetNode(Node&& value) { m_node = std::move(value); } /** *

Properties of the node configuration.

*/ inline GetNodeResult& WithNode(const Node& value) { SetNode(value); return *this;} /** *

Properties of the node configuration.

*/ inline GetNodeResult& WithNode(Node&& value) { SetNode(std::move(value)); return *this;} private: Node m_node; }; } // namespace Model } // namespace ManagedBlockchain } // namespace Aws