This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files

209 lines
6.6 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/core/utils/memory/stl/AWSString.h>
#include <aws/managedblockchain/model/MemberFrameworkConfiguration.h>
#include <aws/managedblockchain/model/MemberLogPublishingConfiguration.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace ManagedBlockchain
{
namespace Model
{
/**
* <p>Configuration properties of the member.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/MemberConfiguration">AWS
* API Reference</a></p>
*/
class AWS_MANAGEDBLOCKCHAIN_API MemberConfiguration
{
public:
MemberConfiguration();
MemberConfiguration(Aws::Utils::Json::JsonView jsonValue);
MemberConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The name of the member.</p>
*/
inline const Aws::String& GetName() const{ return m_name; }
/**
* <p>The name of the member.</p>
*/
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
/**
* <p>The name of the member.</p>
*/
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
/**
* <p>The name of the member.</p>
*/
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
/**
* <p>The name of the member.</p>
*/
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
/**
* <p>The name of the member.</p>
*/
inline MemberConfiguration& WithName(const Aws::String& value) { SetName(value); return *this;}
/**
* <p>The name of the member.</p>
*/
inline MemberConfiguration& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
/**
* <p>The name of the member.</p>
*/
inline MemberConfiguration& WithName(const char* value) { SetName(value); return *this;}
/**
* <p>An optional description of the member.</p>
*/
inline const Aws::String& GetDescription() const{ return m_description; }
/**
* <p>An optional description of the member.</p>
*/
inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
/**
* <p>An optional description of the member.</p>
*/
inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
/**
* <p>An optional description of the member.</p>
*/
inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
/**
* <p>An optional description of the member.</p>
*/
inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
/**
* <p>An optional description of the member.</p>
*/
inline MemberConfiguration& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
/**
* <p>An optional description of the member.</p>
*/
inline MemberConfiguration& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
/**
* <p>An optional description of the member.</p>
*/
inline MemberConfiguration& WithDescription(const char* value) { SetDescription(value); return *this;}
/**
* <p>Configuration properties of the blockchain framework relevant to the
* member.</p>
*/
inline const MemberFrameworkConfiguration& GetFrameworkConfiguration() const{ return m_frameworkConfiguration; }
/**
* <p>Configuration properties of the blockchain framework relevant to the
* member.</p>
*/
inline bool FrameworkConfigurationHasBeenSet() const { return m_frameworkConfigurationHasBeenSet; }
/**
* <p>Configuration properties of the blockchain framework relevant to the
* member.</p>
*/
inline void SetFrameworkConfiguration(const MemberFrameworkConfiguration& value) { m_frameworkConfigurationHasBeenSet = true; m_frameworkConfiguration = value; }
/**
* <p>Configuration properties of the blockchain framework relevant to the
* member.</p>
*/
inline void SetFrameworkConfiguration(MemberFrameworkConfiguration&& value) { m_frameworkConfigurationHasBeenSet = true; m_frameworkConfiguration = std::move(value); }
/**
* <p>Configuration properties of the blockchain framework relevant to the
* member.</p>
*/
inline MemberConfiguration& WithFrameworkConfiguration(const MemberFrameworkConfiguration& value) { SetFrameworkConfiguration(value); return *this;}
/**
* <p>Configuration properties of the blockchain framework relevant to the
* member.</p>
*/
inline MemberConfiguration& WithFrameworkConfiguration(MemberFrameworkConfiguration&& value) { SetFrameworkConfiguration(std::move(value)); return *this;}
/**
* <p/>
*/
inline const MemberLogPublishingConfiguration& GetLogPublishingConfiguration() const{ return m_logPublishingConfiguration; }
/**
* <p/>
*/
inline bool LogPublishingConfigurationHasBeenSet() const { return m_logPublishingConfigurationHasBeenSet; }
/**
* <p/>
*/
inline void SetLogPublishingConfiguration(const MemberLogPublishingConfiguration& value) { m_logPublishingConfigurationHasBeenSet = true; m_logPublishingConfiguration = value; }
/**
* <p/>
*/
inline void SetLogPublishingConfiguration(MemberLogPublishingConfiguration&& value) { m_logPublishingConfigurationHasBeenSet = true; m_logPublishingConfiguration = std::move(value); }
/**
* <p/>
*/
inline MemberConfiguration& WithLogPublishingConfiguration(const MemberLogPublishingConfiguration& value) { SetLogPublishingConfiguration(value); return *this;}
/**
* <p/>
*/
inline MemberConfiguration& WithLogPublishingConfiguration(MemberLogPublishingConfiguration&& value) { SetLogPublishingConfiguration(std::move(value)); return *this;}
private:
Aws::String m_name;
bool m_nameHasBeenSet;
Aws::String m_description;
bool m_descriptionHasBeenSet;
MemberFrameworkConfiguration m_frameworkConfiguration;
bool m_frameworkConfigurationHasBeenSet;
MemberLogPublishingConfiguration m_logPublishingConfiguration;
bool m_logPublishingConfigurationHasBeenSet;
};
} // namespace Model
} // namespace ManagedBlockchain
} // namespace Aws