/** * 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 DBClusterOptionGroupStatus { public: AWS_NEPTUNE_API DBClusterOptionGroupStatus(); AWS_NEPTUNE_API DBClusterOptionGroupStatus(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_NEPTUNE_API DBClusterOptionGroupStatus& 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& GetDBClusterOptionGroupName() const{ return m_dBClusterOptionGroupName; } /** *

Not supported by Neptune.

*/ inline bool DBClusterOptionGroupNameHasBeenSet() const { return m_dBClusterOptionGroupNameHasBeenSet; } /** *

Not supported by Neptune.

*/ inline void SetDBClusterOptionGroupName(const Aws::String& value) { m_dBClusterOptionGroupNameHasBeenSet = true; m_dBClusterOptionGroupName = value; } /** *

Not supported by Neptune.

*/ inline void SetDBClusterOptionGroupName(Aws::String&& value) { m_dBClusterOptionGroupNameHasBeenSet = true; m_dBClusterOptionGroupName = std::move(value); } /** *

Not supported by Neptune.

*/ inline void SetDBClusterOptionGroupName(const char* value) { m_dBClusterOptionGroupNameHasBeenSet = true; m_dBClusterOptionGroupName.assign(value); } /** *

Not supported by Neptune.

*/ inline DBClusterOptionGroupStatus& WithDBClusterOptionGroupName(const Aws::String& value) { SetDBClusterOptionGroupName(value); return *this;} /** *

Not supported by Neptune.

*/ inline DBClusterOptionGroupStatus& WithDBClusterOptionGroupName(Aws::String&& value) { SetDBClusterOptionGroupName(std::move(value)); return *this;} /** *

Not supported by Neptune.

*/ inline DBClusterOptionGroupStatus& WithDBClusterOptionGroupName(const char* value) { SetDBClusterOptionGroupName(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 DBClusterOptionGroupStatus& WithStatus(const Aws::String& value) { SetStatus(value); return *this;} /** *

Not supported by Neptune.

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

Not supported by Neptune.

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