/** * 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 Neptune { namespace Model { /** */ class DeleteDBParameterGroupRequest : public NeptuneRequest { public: AWS_NEPTUNE_API DeleteDBParameterGroupRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DeleteDBParameterGroup"; } AWS_NEPTUNE_API Aws::String SerializePayload() const override; protected: AWS_NEPTUNE_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The name of the DB parameter group.

Constraints:

  • Must * be the name of an existing DB parameter group

  • You can't delete * a default DB parameter group

  • Cannot be associated with any DB * instances

*/ inline const Aws::String& GetDBParameterGroupName() const{ return m_dBParameterGroupName; } /** *

The name of the DB parameter group.

Constraints:

  • Must * be the name of an existing DB parameter group

  • You can't delete * a default DB parameter group

  • Cannot be associated with any DB * instances

*/ inline bool DBParameterGroupNameHasBeenSet() const { return m_dBParameterGroupNameHasBeenSet; } /** *

The name of the DB parameter group.

Constraints:

  • Must * be the name of an existing DB parameter group

  • You can't delete * a default DB parameter group

  • Cannot be associated with any DB * instances

*/ inline void SetDBParameterGroupName(const Aws::String& value) { m_dBParameterGroupNameHasBeenSet = true; m_dBParameterGroupName = value; } /** *

The name of the DB parameter group.

Constraints:

  • Must * be the name of an existing DB parameter group

  • You can't delete * a default DB parameter group

  • Cannot be associated with any DB * instances

*/ inline void SetDBParameterGroupName(Aws::String&& value) { m_dBParameterGroupNameHasBeenSet = true; m_dBParameterGroupName = std::move(value); } /** *

The name of the DB parameter group.

Constraints:

  • Must * be the name of an existing DB parameter group

  • You can't delete * a default DB parameter group

  • Cannot be associated with any DB * instances

*/ inline void SetDBParameterGroupName(const char* value) { m_dBParameterGroupNameHasBeenSet = true; m_dBParameterGroupName.assign(value); } /** *

The name of the DB parameter group.

Constraints:

  • Must * be the name of an existing DB parameter group

  • You can't delete * a default DB parameter group

  • Cannot be associated with any DB * instances

*/ inline DeleteDBParameterGroupRequest& WithDBParameterGroupName(const Aws::String& value) { SetDBParameterGroupName(value); return *this;} /** *

The name of the DB parameter group.

Constraints:

  • Must * be the name of an existing DB parameter group

  • You can't delete * a default DB parameter group

  • Cannot be associated with any DB * instances

*/ inline DeleteDBParameterGroupRequest& WithDBParameterGroupName(Aws::String&& value) { SetDBParameterGroupName(std::move(value)); return *this;} /** *

The name of the DB parameter group.

Constraints:

  • Must * be the name of an existing DB parameter group

  • You can't delete * a default DB parameter group

  • Cannot be associated with any DB * instances

*/ inline DeleteDBParameterGroupRequest& WithDBParameterGroupName(const char* value) { SetDBParameterGroupName(value); return *this;} private: Aws::String m_dBParameterGroupName; bool m_dBParameterGroupNameHasBeenSet = false; }; } // namespace Model } // namespace Neptune } // namespace Aws