/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace Neptune { namespace Model { class ModifyDBClusterParameterGroupResult { public: AWS_NEPTUNE_API ModifyDBClusterParameterGroupResult(); AWS_NEPTUNE_API ModifyDBClusterParameterGroupResult(const Aws::AmazonWebServiceResult& result); AWS_NEPTUNE_API ModifyDBClusterParameterGroupResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The name of the DB cluster parameter group.

Constraints:

  • *

    Must be 1 to 255 letters or numbers.

  • First character must * be a letter

  • Cannot end with a hyphen or contain two * consecutive hyphens

This value is stored as a * lowercase string.

*/ inline const Aws::String& GetDBClusterParameterGroupName() const{ return m_dBClusterParameterGroupName; } /** *

The name of the DB cluster parameter group.

Constraints:

  • *

    Must be 1 to 255 letters or numbers.

  • First character must * be a letter

  • Cannot end with a hyphen or contain two * consecutive hyphens

This value is stored as a * lowercase string.

*/ inline void SetDBClusterParameterGroupName(const Aws::String& value) { m_dBClusterParameterGroupName = value; } /** *

The name of the DB cluster parameter group.

Constraints:

  • *

    Must be 1 to 255 letters or numbers.

  • First character must * be a letter

  • Cannot end with a hyphen or contain two * consecutive hyphens

This value is stored as a * lowercase string.

*/ inline void SetDBClusterParameterGroupName(Aws::String&& value) { m_dBClusterParameterGroupName = std::move(value); } /** *

The name of the DB cluster parameter group.

Constraints:

  • *

    Must be 1 to 255 letters or numbers.

  • First character must * be a letter

  • Cannot end with a hyphen or contain two * consecutive hyphens

This value is stored as a * lowercase string.

*/ inline void SetDBClusterParameterGroupName(const char* value) { m_dBClusterParameterGroupName.assign(value); } /** *

The name of the DB cluster parameter group.

Constraints:

  • *

    Must be 1 to 255 letters or numbers.

  • First character must * be a letter

  • Cannot end with a hyphen or contain two * consecutive hyphens

This value is stored as a * lowercase string.

*/ inline ModifyDBClusterParameterGroupResult& WithDBClusterParameterGroupName(const Aws::String& value) { SetDBClusterParameterGroupName(value); return *this;} /** *

The name of the DB cluster parameter group.

Constraints:

  • *

    Must be 1 to 255 letters or numbers.

  • First character must * be a letter

  • Cannot end with a hyphen or contain two * consecutive hyphens

This value is stored as a * lowercase string.

*/ inline ModifyDBClusterParameterGroupResult& WithDBClusterParameterGroupName(Aws::String&& value) { SetDBClusterParameterGroupName(std::move(value)); return *this;} /** *

The name of the DB cluster parameter group.

Constraints:

  • *

    Must be 1 to 255 letters or numbers.

  • First character must * be a letter

  • Cannot end with a hyphen or contain two * consecutive hyphens

This value is stored as a * lowercase string.

*/ inline ModifyDBClusterParameterGroupResult& WithDBClusterParameterGroupName(const char* value) { SetDBClusterParameterGroupName(value); return *this;} inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline ModifyDBClusterParameterGroupResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline ModifyDBClusterParameterGroupResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_dBClusterParameterGroupName; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace Neptune } // namespace Aws