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

78 lines
1.9 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/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 ManagedBlockchain
{
namespace Model
{
class AWS_MANAGEDBLOCKCHAIN_API CreateNodeResult
{
public:
CreateNodeResult();
CreateNodeResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateNodeResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The unique identifier of the node.</p>
*/
inline const Aws::String& GetNodeId() const{ return m_nodeId; }
/**
* <p>The unique identifier of the node.</p>
*/
inline void SetNodeId(const Aws::String& value) { m_nodeId = value; }
/**
* <p>The unique identifier of the node.</p>
*/
inline void SetNodeId(Aws::String&& value) { m_nodeId = std::move(value); }
/**
* <p>The unique identifier of the node.</p>
*/
inline void SetNodeId(const char* value) { m_nodeId.assign(value); }
/**
* <p>The unique identifier of the node.</p>
*/
inline CreateNodeResult& WithNodeId(const Aws::String& value) { SetNodeId(value); return *this;}
/**
* <p>The unique identifier of the node.</p>
*/
inline CreateNodeResult& WithNodeId(Aws::String&& value) { SetNodeId(std::move(value)); return *this;}
/**
* <p>The unique identifier of the node.</p>
*/
inline CreateNodeResult& WithNodeId(const char* value) { SetNodeId(value); return *this;}
private:
Aws::String m_nodeId;
};
} // namespace Model
} // namespace ManagedBlockchain
} // namespace Aws