/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
The name of the cluster parameter group.
*/ inline const Aws::String& GetParameterGroupName() const{ return m_parameterGroupName; } /** *The name of the cluster parameter group.
*/ inline void SetParameterGroupName(const Aws::String& value) { m_parameterGroupName = value; } /** *The name of the cluster parameter group.
*/ inline void SetParameterGroupName(Aws::String&& value) { m_parameterGroupName = std::move(value); } /** *The name of the cluster parameter group.
*/ inline void SetParameterGroupName(const char* value) { m_parameterGroupName.assign(value); } /** *The name of the cluster parameter group.
*/ inline ResetClusterParameterGroupResult& WithParameterGroupName(const Aws::String& value) { SetParameterGroupName(value); return *this;} /** *The name of the cluster parameter group.
*/ inline ResetClusterParameterGroupResult& WithParameterGroupName(Aws::String&& value) { SetParameterGroupName(std::move(value)); return *this;} /** *The name of the cluster parameter group.
*/ inline ResetClusterParameterGroupResult& WithParameterGroupName(const char* value) { SetParameterGroupName(value); return *this;} /** *The status of the parameter group. For example, if you made a change to a * parameter group name-value pair, then the change could be pending a reboot of an * associated cluster.
*/ inline const Aws::String& GetParameterGroupStatus() const{ return m_parameterGroupStatus; } /** *The status of the parameter group. For example, if you made a change to a * parameter group name-value pair, then the change could be pending a reboot of an * associated cluster.
*/ inline void SetParameterGroupStatus(const Aws::String& value) { m_parameterGroupStatus = value; } /** *The status of the parameter group. For example, if you made a change to a * parameter group name-value pair, then the change could be pending a reboot of an * associated cluster.
*/ inline void SetParameterGroupStatus(Aws::String&& value) { m_parameterGroupStatus = std::move(value); } /** *The status of the parameter group. For example, if you made a change to a * parameter group name-value pair, then the change could be pending a reboot of an * associated cluster.
*/ inline void SetParameterGroupStatus(const char* value) { m_parameterGroupStatus.assign(value); } /** *The status of the parameter group. For example, if you made a change to a * parameter group name-value pair, then the change could be pending a reboot of an * associated cluster.
*/ inline ResetClusterParameterGroupResult& WithParameterGroupStatus(const Aws::String& value) { SetParameterGroupStatus(value); return *this;} /** *The status of the parameter group. For example, if you made a change to a * parameter group name-value pair, then the change could be pending a reboot of an * associated cluster.
*/ inline ResetClusterParameterGroupResult& WithParameterGroupStatus(Aws::String&& value) { SetParameterGroupStatus(std::move(value)); return *this;} /** *The status of the parameter group. For example, if you made a change to a * parameter group name-value pair, then the change could be pending a reboot of an * associated cluster.
*/ inline ResetClusterParameterGroupResult& WithParameterGroupStatus(const char* value) { SetParameterGroupStatus(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 ResetClusterParameterGroupResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline ResetClusterParameterGroupResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_parameterGroupName; Aws::String m_parameterGroupStatus; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace Redshift } // namespace Aws