/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the name of a cluster parameter group.See Also:
AWS
* API Reference
The name of a cluster parameter group.
Constraints:
Must be from 1 to 255 letters or numbers.
The first * character must be a letter.
Cannot end with a hyphen or * contain two consecutive hyphens.
This value is stored * as a lowercase string.
*/ inline const Aws::String& GetDBClusterParameterGroupName() const{ return m_dBClusterParameterGroupName; } /** *The name of a cluster parameter group.
Constraints:
Must be from 1 to 255 letters or numbers.
The first * character must be a letter.
Cannot end with a hyphen or * contain two consecutive hyphens.
This value is stored * as a lowercase string.
*/ inline void SetDBClusterParameterGroupName(const Aws::String& value) { m_dBClusterParameterGroupName = value; } /** *The name of a cluster parameter group.
Constraints:
Must be from 1 to 255 letters or numbers.
The first * character must be a letter.
Cannot end with a hyphen or * contain two consecutive hyphens.
This value is stored * as a lowercase string.
*/ inline void SetDBClusterParameterGroupName(Aws::String&& value) { m_dBClusterParameterGroupName = std::move(value); } /** *The name of a cluster parameter group.
Constraints:
Must be from 1 to 255 letters or numbers.
The first * character must be a letter.
Cannot end with a hyphen or * contain two consecutive hyphens.
This value is stored * as a lowercase string.
*/ inline void SetDBClusterParameterGroupName(const char* value) { m_dBClusterParameterGroupName.assign(value); } /** *The name of a cluster parameter group.
Constraints:
Must be from 1 to 255 letters or numbers.
The first * character must be a letter.
Cannot end with a hyphen or * contain two consecutive hyphens.
This value is stored * as a lowercase string.
*/ inline ModifyDBClusterParameterGroupResult& WithDBClusterParameterGroupName(const Aws::String& value) { SetDBClusterParameterGroupName(value); return *this;} /** *The name of a cluster parameter group.
Constraints:
Must be from 1 to 255 letters or numbers.
The first * character must be a letter.
Cannot end with a hyphen or * contain two consecutive hyphens.
This value is stored * as a lowercase string.
*/ inline ModifyDBClusterParameterGroupResult& WithDBClusterParameterGroupName(Aws::String&& value) { SetDBClusterParameterGroupName(std::move(value)); return *this;} /** *The name of a cluster parameter group.
Constraints:
Must be from 1 to 255 letters or numbers.
The first * character must be a letter.
Cannot end with a hyphen or * contain two consecutive hyphens.
This value is stored * as a lowercase string.
*/ inline ModifyDBClusterParameterGroupResult& WithDBClusterParameterGroupName(const char* value) { SetDBClusterParameterGroupName(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 ModifyDBClusterParameterGroupResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline ModifyDBClusterParameterGroupResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_dBClusterParameterGroupName; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace DocDB } // namespace Aws