/**
* 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 to be reset.
*/ inline const Aws::String& GetParameterGroupName() const{ return m_parameterGroupName; } /** *The name of the cluster parameter group to be reset.
*/ inline bool ParameterGroupNameHasBeenSet() const { return m_parameterGroupNameHasBeenSet; } /** *The name of the cluster parameter group to be reset.
*/ inline void SetParameterGroupName(const Aws::String& value) { m_parameterGroupNameHasBeenSet = true; m_parameterGroupName = value; } /** *The name of the cluster parameter group to be reset.
*/ inline void SetParameterGroupName(Aws::String&& value) { m_parameterGroupNameHasBeenSet = true; m_parameterGroupName = std::move(value); } /** *The name of the cluster parameter group to be reset.
*/ inline void SetParameterGroupName(const char* value) { m_parameterGroupNameHasBeenSet = true; m_parameterGroupName.assign(value); } /** *The name of the cluster parameter group to be reset.
*/ inline ResetClusterParameterGroupRequest& WithParameterGroupName(const Aws::String& value) { SetParameterGroupName(value); return *this;} /** *The name of the cluster parameter group to be reset.
*/ inline ResetClusterParameterGroupRequest& WithParameterGroupName(Aws::String&& value) { SetParameterGroupName(std::move(value)); return *this;} /** *The name of the cluster parameter group to be reset.
*/ inline ResetClusterParameterGroupRequest& WithParameterGroupName(const char* value) { SetParameterGroupName(value); return *this;} /** *If true
, all parameters in the specified parameter group will be
* reset to their default values.
Default: true
If true
, all parameters in the specified parameter group will be
* reset to their default values.
Default: true
If true
, all parameters in the specified parameter group will be
* reset to their default values.
Default: true
If true
, all parameters in the specified parameter group will be
* reset to their default values.
Default: true
An array of names of parameters to be reset. If ResetAllParameters * option is not used, then at least one parameter name must be supplied.
*Constraints: A maximum of 20 parameters can be reset in a single request.
*/ inline const Aws::VectorAn array of names of parameters to be reset. If ResetAllParameters * option is not used, then at least one parameter name must be supplied.
*Constraints: A maximum of 20 parameters can be reset in a single request.
*/ inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; } /** *An array of names of parameters to be reset. If ResetAllParameters * option is not used, then at least one parameter name must be supplied.
*Constraints: A maximum of 20 parameters can be reset in a single request.
*/ inline void SetParameters(const Aws::VectorAn array of names of parameters to be reset. If ResetAllParameters * option is not used, then at least one parameter name must be supplied.
*Constraints: A maximum of 20 parameters can be reset in a single request.
*/ inline void SetParameters(Aws::VectorAn array of names of parameters to be reset. If ResetAllParameters * option is not used, then at least one parameter name must be supplied.
*Constraints: A maximum of 20 parameters can be reset in a single request.
*/ inline ResetClusterParameterGroupRequest& WithParameters(const Aws::VectorAn array of names of parameters to be reset. If ResetAllParameters * option is not used, then at least one parameter name must be supplied.
*Constraints: A maximum of 20 parameters can be reset in a single request.
*/ inline ResetClusterParameterGroupRequest& WithParameters(Aws::VectorAn array of names of parameters to be reset. If ResetAllParameters * option is not used, then at least one parameter name must be supplied.
*Constraints: A maximum of 20 parameters can be reset in a single request.
*/ inline ResetClusterParameterGroupRequest& AddParameters(const Parameter& value) { m_parametersHasBeenSet = true; m_parameters.push_back(value); return *this; } /** *An array of names of parameters to be reset. If ResetAllParameters * option is not used, then at least one parameter name must be supplied.
*Constraints: A maximum of 20 parameters can be reset in a single request.
*/ inline ResetClusterParameterGroupRequest& AddParameters(Parameter&& value) { m_parametersHasBeenSet = true; m_parameters.push_back(std::move(value)); return *this; } private: Aws::String m_parameterGroupName; bool m_parameterGroupNameHasBeenSet = false; bool m_resetAllParameters; bool m_resetAllParametersHasBeenSet = false; Aws::Vector