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