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
2.0 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 CreateMemberResult
{
public:
CreateMemberResult();
CreateMemberResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateMemberResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The unique identifier of the member.</p>
*/
inline const Aws::String& GetMemberId() const{ return m_memberId; }
/**
* <p>The unique identifier of the member.</p>
*/
inline void SetMemberId(const Aws::String& value) { m_memberId = value; }
/**
* <p>The unique identifier of the member.</p>
*/
inline void SetMemberId(Aws::String&& value) { m_memberId = std::move(value); }
/**
* <p>The unique identifier of the member.</p>
*/
inline void SetMemberId(const char* value) { m_memberId.assign(value); }
/**
* <p>The unique identifier of the member.</p>
*/
inline CreateMemberResult& WithMemberId(const Aws::String& value) { SetMemberId(value); return *this;}
/**
* <p>The unique identifier of the member.</p>
*/
inline CreateMemberResult& WithMemberId(Aws::String&& value) { SetMemberId(std::move(value)); return *this;}
/**
* <p>The unique identifier of the member.</p>
*/
inline CreateMemberResult& WithMemberId(const char* value) { SetMemberId(value); return *this;}
private:
Aws::String m_memberId;
};
} // namespace Model
} // namespace ManagedBlockchain
} // namespace Aws