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

Not supported by Neptune.

See Also:

AWS * API Reference

*/ class OptionGroupMembership { public: AWS_NEPTUNE_API OptionGroupMembership(); AWS_NEPTUNE_API OptionGroupMembership(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_NEPTUNE_API OptionGroupMembership& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_NEPTUNE_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_NEPTUNE_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

Not supported by Neptune.

*/ inline const Aws::String& GetOptionGroupName() const{ return m_optionGroupName; } /** *

Not supported by Neptune.

*/ inline bool OptionGroupNameHasBeenSet() const { return m_optionGroupNameHasBeenSet; } /** *

Not supported by Neptune.

*/ inline void SetOptionGroupName(const Aws::String& value) { m_optionGroupNameHasBeenSet = true; m_optionGroupName = value; } /** *

Not supported by Neptune.

*/ inline void SetOptionGroupName(Aws::String&& value) { m_optionGroupNameHasBeenSet = true; m_optionGroupName = std::move(value); } /** *

Not supported by Neptune.

*/ inline void SetOptionGroupName(const char* value) { m_optionGroupNameHasBeenSet = true; m_optionGroupName.assign(value); } /** *

Not supported by Neptune.

*/ inline OptionGroupMembership& WithOptionGroupName(const Aws::String& value) { SetOptionGroupName(value); return *this;} /** *

Not supported by Neptune.

*/ inline OptionGroupMembership& WithOptionGroupName(Aws::String&& value) { SetOptionGroupName(std::move(value)); return *this;} /** *

Not supported by Neptune.

*/ inline OptionGroupMembership& WithOptionGroupName(const char* value) { SetOptionGroupName(value); return *this;} /** *

Not supported by Neptune.

*/ inline const Aws::String& GetStatus() const{ return m_status; } /** *

Not supported by Neptune.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

Not supported by Neptune.

*/ inline void SetStatus(const Aws::String& value) { m_statusHasBeenSet = true; m_status = value; } /** *

Not supported by Neptune.

*/ inline void SetStatus(Aws::String&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

Not supported by Neptune.

*/ inline void SetStatus(const char* value) { m_statusHasBeenSet = true; m_status.assign(value); } /** *

Not supported by Neptune.

*/ inline OptionGroupMembership& WithStatus(const Aws::String& value) { SetStatus(value); return *this;} /** *

Not supported by Neptune.

*/ inline OptionGroupMembership& WithStatus(Aws::String&& value) { SetStatus(std::move(value)); return *this;} /** *

Not supported by Neptune.

*/ inline OptionGroupMembership& WithStatus(const char* value) { SetStatus(value); return *this;} private: Aws::String m_optionGroupName; bool m_optionGroupNameHasBeenSet = false; Aws::String m_status; bool m_statusHasBeenSet = false; }; } // namespace Model } // namespace Neptune } // namespace Aws