86 lines
3.0 KiB
C++
86 lines
3.0 KiB
C++
/**
|
|
* 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/managedblockchain/model/MemberFabricLogPublishingConfiguration.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace ManagedBlockchain
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Configuration properties for logging events associated with a member of a
|
|
* Managed Blockchain network.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/MemberLogPublishingConfiguration">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_MANAGEDBLOCKCHAIN_API MemberLogPublishingConfiguration
|
|
{
|
|
public:
|
|
MemberLogPublishingConfiguration();
|
|
MemberLogPublishingConfiguration(Aws::Utils::Json::JsonView jsonValue);
|
|
MemberLogPublishingConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>Configuration properties for logging events associated with a member of a
|
|
* Managed Blockchain network using the Hyperledger Fabric framework.</p>
|
|
*/
|
|
inline const MemberFabricLogPublishingConfiguration& GetFabric() const{ return m_fabric; }
|
|
|
|
/**
|
|
* <p>Configuration properties for logging events associated with a member of a
|
|
* Managed Blockchain network using the Hyperledger Fabric framework.</p>
|
|
*/
|
|
inline bool FabricHasBeenSet() const { return m_fabricHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Configuration properties for logging events associated with a member of a
|
|
* Managed Blockchain network using the Hyperledger Fabric framework.</p>
|
|
*/
|
|
inline void SetFabric(const MemberFabricLogPublishingConfiguration& value) { m_fabricHasBeenSet = true; m_fabric = value; }
|
|
|
|
/**
|
|
* <p>Configuration properties for logging events associated with a member of a
|
|
* Managed Blockchain network using the Hyperledger Fabric framework.</p>
|
|
*/
|
|
inline void SetFabric(MemberFabricLogPublishingConfiguration&& value) { m_fabricHasBeenSet = true; m_fabric = std::move(value); }
|
|
|
|
/**
|
|
* <p>Configuration properties for logging events associated with a member of a
|
|
* Managed Blockchain network using the Hyperledger Fabric framework.</p>
|
|
*/
|
|
inline MemberLogPublishingConfiguration& WithFabric(const MemberFabricLogPublishingConfiguration& value) { SetFabric(value); return *this;}
|
|
|
|
/**
|
|
* <p>Configuration properties for logging events associated with a member of a
|
|
* Managed Blockchain network using the Hyperledger Fabric framework.</p>
|
|
*/
|
|
inline MemberLogPublishingConfiguration& WithFabric(MemberFabricLogPublishingConfiguration&& value) { SetFabric(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
MemberFabricLogPublishingConfiguration m_fabric;
|
|
bool m_fabricHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace ManagedBlockchain
|
|
} // namespace Aws
|