/** * 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 { /** *

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

See Also:

AWS * API Reference

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

Attributes of Hyperledger Fabric relevant to a member on a Managed Blockchain * network that uses Hyperledger Fabric.

*/ inline const MemberFabricAttributes& GetFabric() const{ return m_fabric; } /** *

Attributes of Hyperledger Fabric relevant to a member on a Managed Blockchain * network that uses Hyperledger Fabric.

*/ inline bool FabricHasBeenSet() const { return m_fabricHasBeenSet; } /** *

Attributes of Hyperledger Fabric relevant to a member on a Managed Blockchain * network that uses Hyperledger Fabric.

*/ inline void SetFabric(const MemberFabricAttributes& value) { m_fabricHasBeenSet = true; m_fabric = value; } /** *

Attributes of Hyperledger Fabric relevant to a member on a Managed Blockchain * network that uses Hyperledger Fabric.

*/ inline void SetFabric(MemberFabricAttributes&& value) { m_fabricHasBeenSet = true; m_fabric = std::move(value); } /** *

Attributes of Hyperledger Fabric relevant to a member on a Managed Blockchain * network that uses Hyperledger Fabric.

*/ inline MemberFrameworkAttributes& WithFabric(const MemberFabricAttributes& value) { SetFabric(value); return *this;} /** *

Attributes of Hyperledger Fabric relevant to a member on a Managed Blockchain * network that uses Hyperledger Fabric.

*/ inline MemberFrameworkAttributes& WithFabric(MemberFabricAttributes&& value) { SetFabric(std::move(value)); return *this;} private: MemberFabricAttributes m_fabric; bool m_fabricHasBeenSet = false; }; } // namespace Model } // namespace ManagedBlockchain } // namespace Aws