This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files

68 lines
1.5 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/managedblockchain/ManagedBlockchain_EXPORTS.h>
#include <aws/managedblockchain/model/Node.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
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<Aws::Utils::Json::JsonValue>& result);
GetNodeResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>Properties of the node configuration.</p>
*/
inline const Node& GetNode() const{ return m_node; }
/**
* <p>Properties of the node configuration.</p>
*/
inline void SetNode(const Node& value) { m_node = value; }
/**
* <p>Properties of the node configuration.</p>
*/
inline void SetNode(Node&& value) { m_node = std::move(value); }
/**
* <p>Properties of the node configuration.</p>
*/
inline GetNodeResult& WithNode(const Node& value) { SetNode(value); return *this;}
/**
* <p>Properties of the node configuration.</p>
*/
inline GetNodeResult& WithNode(Node&& value) { SetNode(std::move(value)); return *this;}
private:
Node m_node;
};
} // namespace Model
} // namespace ManagedBlockchain
} // namespace Aws