/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the result of a successful invocation of the
* ModifyDBParameterGroup
or ResetDBParameterGroup
* action.See Also:
AWS
* API Reference
The name of the DB parameter group.
*/ inline const Aws::String& GetDBParameterGroupName() const{ return m_dBParameterGroupName; } /** *The name of the DB parameter group.
*/ inline void SetDBParameterGroupName(const Aws::String& value) { m_dBParameterGroupName = value; } /** *The name of the DB parameter group.
*/ inline void SetDBParameterGroupName(Aws::String&& value) { m_dBParameterGroupName = std::move(value); } /** *The name of the DB parameter group.
*/ inline void SetDBParameterGroupName(const char* value) { m_dBParameterGroupName.assign(value); } /** *The name of the DB parameter group.
*/ inline ResetDBParameterGroupResult& WithDBParameterGroupName(const Aws::String& value) { SetDBParameterGroupName(value); return *this;} /** *The name of the DB parameter group.
*/ inline ResetDBParameterGroupResult& WithDBParameterGroupName(Aws::String&& value) { SetDBParameterGroupName(std::move(value)); return *this;} /** *The name of the DB parameter group.
*/ inline ResetDBParameterGroupResult& WithDBParameterGroupName(const char* value) { SetDBParameterGroupName(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 ResetDBParameterGroupResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline ResetDBParameterGroupResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_dBParameterGroupName; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace RDS } // namespace Aws