/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Configuration properties relevant to a member for the blockchain framework
* that the Managed Blockchain network uses.See Also:
AWS
* API Reference
Attributes of Hyperledger Fabric for a member on a Managed Blockchain network * that uses Hyperledger Fabric.
*/ inline const MemberFabricConfiguration& GetFabric() const{ return m_fabric; } /** *Attributes of Hyperledger Fabric for a member on a Managed Blockchain network * that uses Hyperledger Fabric.
*/ inline bool FabricHasBeenSet() const { return m_fabricHasBeenSet; } /** *Attributes of Hyperledger Fabric for a member on a Managed Blockchain network * that uses Hyperledger Fabric.
*/ inline void SetFabric(const MemberFabricConfiguration& value) { m_fabricHasBeenSet = true; m_fabric = value; } /** *Attributes of Hyperledger Fabric for a member on a Managed Blockchain network * that uses Hyperledger Fabric.
*/ inline void SetFabric(MemberFabricConfiguration&& value) { m_fabricHasBeenSet = true; m_fabric = std::move(value); } /** *Attributes of Hyperledger Fabric for a member on a Managed Blockchain network * that uses Hyperledger Fabric.
*/ inline MemberFrameworkConfiguration& WithFabric(const MemberFabricConfiguration& value) { SetFabric(value); return *this;} /** *Attributes of Hyperledger Fabric for a member on a Managed Blockchain network * that uses Hyperledger Fabric.
*/ inline MemberFrameworkConfiguration& WithFabric(MemberFabricConfiguration&& value) { SetFabric(std::move(value)); return *this;} private: MemberFabricConfiguration m_fabric; bool m_fabricHasBeenSet = false; }; } // namespace Model } // namespace ManagedBlockchain } // namespace Aws