/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace ManagedBlockchain { namespace Model { /** *

Configuration properties relevant to a member for the blockchain framework * that the Managed Blockchain network uses.

See Also:

AWS * API Reference

*/ class MemberFrameworkConfiguration { public: AWS_MANAGEDBLOCKCHAIN_API MemberFrameworkConfiguration(); AWS_MANAGEDBLOCKCHAIN_API MemberFrameworkConfiguration(Aws::Utils::Json::JsonView jsonValue); AWS_MANAGEDBLOCKCHAIN_API MemberFrameworkConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MANAGEDBLOCKCHAIN_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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