/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input to ModifyDBClusterParameterGroup.See
* Also:
AWS
* API Reference
The name of the cluster parameter group to modify.
*/ inline const Aws::String& GetDBClusterParameterGroupName() const{ return m_dBClusterParameterGroupName; } /** *The name of the cluster parameter group to modify.
*/ inline bool DBClusterParameterGroupNameHasBeenSet() const { return m_dBClusterParameterGroupNameHasBeenSet; } /** *The name of the cluster parameter group to modify.
*/ inline void SetDBClusterParameterGroupName(const Aws::String& value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName = value; } /** *The name of the cluster parameter group to modify.
*/ inline void SetDBClusterParameterGroupName(Aws::String&& value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName = std::move(value); } /** *The name of the cluster parameter group to modify.
*/ inline void SetDBClusterParameterGroupName(const char* value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName.assign(value); } /** *The name of the cluster parameter group to modify.
*/ inline ModifyDBClusterParameterGroupRequest& WithDBClusterParameterGroupName(const Aws::String& value) { SetDBClusterParameterGroupName(value); return *this;} /** *The name of the cluster parameter group to modify.
*/ inline ModifyDBClusterParameterGroupRequest& WithDBClusterParameterGroupName(Aws::String&& value) { SetDBClusterParameterGroupName(std::move(value)); return *this;} /** *The name of the cluster parameter group to modify.
*/ inline ModifyDBClusterParameterGroupRequest& WithDBClusterParameterGroupName(const char* value) { SetDBClusterParameterGroupName(value); return *this;} /** *A list of parameters in the cluster parameter group to modify.
*/ inline const Aws::VectorA list of parameters in the cluster parameter group to modify.
*/ inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; } /** *A list of parameters in the cluster parameter group to modify.
*/ inline void SetParameters(const Aws::VectorA list of parameters in the cluster parameter group to modify.
*/ inline void SetParameters(Aws::VectorA list of parameters in the cluster parameter group to modify.
*/ inline ModifyDBClusterParameterGroupRequest& WithParameters(const Aws::VectorA list of parameters in the cluster parameter group to modify.
*/ inline ModifyDBClusterParameterGroupRequest& WithParameters(Aws::VectorA list of parameters in the cluster parameter group to modify.
*/ inline ModifyDBClusterParameterGroupRequest& AddParameters(const Parameter& value) { m_parametersHasBeenSet = true; m_parameters.push_back(value); return *this; } /** *A list of parameters in the cluster parameter group to modify.
*/ inline ModifyDBClusterParameterGroupRequest& AddParameters(Parameter&& value) { m_parametersHasBeenSet = true; m_parameters.push_back(std::move(value)); return *this; } private: Aws::String m_dBClusterParameterGroupName; bool m_dBClusterParameterGroupNameHasBeenSet = false; Aws::Vector