This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-neptune/include/aws/neptune/model/ResetDBClusterParameterGroupResult.h

125 lines
5.1 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/neptune/Neptune_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/neptune/model/ResponseMetadata.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Xml
{
class XmlDocument;
} // namespace Xml
} // namespace Utils
namespace Neptune
{
namespace Model
{
class AWS_NEPTUNE_API ResetDBClusterParameterGroupResult
{
public:
ResetDBClusterParameterGroupResult();
ResetDBClusterParameterGroupResult(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
ResetDBClusterParameterGroupResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
/**
* <p>The name of the DB cluster parameter group.</p> <p>Constraints:</p> <ul> <li>
* <p>Must be 1 to 255 letters or numbers.</p> </li> <li> <p>First character must
* be a letter</p> </li> <li> <p>Cannot end with a hyphen or contain two
* consecutive hyphens</p> </li> </ul> <p>This value is stored as a
* lowercase string.</p>
*/
inline const Aws::String& GetDBClusterParameterGroupName() const{ return m_dBClusterParameterGroupName; }
/**
* <p>The name of the DB cluster parameter group.</p> <p>Constraints:</p> <ul> <li>
* <p>Must be 1 to 255 letters or numbers.</p> </li> <li> <p>First character must
* be a letter</p> </li> <li> <p>Cannot end with a hyphen or contain two
* consecutive hyphens</p> </li> </ul> <p>This value is stored as a
* lowercase string.</p>
*/
inline void SetDBClusterParameterGroupName(const Aws::String& value) { m_dBClusterParameterGroupName = value; }
/**
* <p>The name of the DB cluster parameter group.</p> <p>Constraints:</p> <ul> <li>
* <p>Must be 1 to 255 letters or numbers.</p> </li> <li> <p>First character must
* be a letter</p> </li> <li> <p>Cannot end with a hyphen or contain two
* consecutive hyphens</p> </li> </ul> <p>This value is stored as a
* lowercase string.</p>
*/
inline void SetDBClusterParameterGroupName(Aws::String&& value) { m_dBClusterParameterGroupName = std::move(value); }
/**
* <p>The name of the DB cluster parameter group.</p> <p>Constraints:</p> <ul> <li>
* <p>Must be 1 to 255 letters or numbers.</p> </li> <li> <p>First character must
* be a letter</p> </li> <li> <p>Cannot end with a hyphen or contain two
* consecutive hyphens</p> </li> </ul> <p>This value is stored as a
* lowercase string.</p>
*/
inline void SetDBClusterParameterGroupName(const char* value) { m_dBClusterParameterGroupName.assign(value); }
/**
* <p>The name of the DB cluster parameter group.</p> <p>Constraints:</p> <ul> <li>
* <p>Must be 1 to 255 letters or numbers.</p> </li> <li> <p>First character must
* be a letter</p> </li> <li> <p>Cannot end with a hyphen or contain two
* consecutive hyphens</p> </li> </ul> <p>This value is stored as a
* lowercase string.</p>
*/
inline ResetDBClusterParameterGroupResult& WithDBClusterParameterGroupName(const Aws::String& value) { SetDBClusterParameterGroupName(value); return *this;}
/**
* <p>The name of the DB cluster parameter group.</p> <p>Constraints:</p> <ul> <li>
* <p>Must be 1 to 255 letters or numbers.</p> </li> <li> <p>First character must
* be a letter</p> </li> <li> <p>Cannot end with a hyphen or contain two
* consecutive hyphens</p> </li> </ul> <p>This value is stored as a
* lowercase string.</p>
*/
inline ResetDBClusterParameterGroupResult& WithDBClusterParameterGroupName(Aws::String&& value) { SetDBClusterParameterGroupName(std::move(value)); return *this;}
/**
* <p>The name of the DB cluster parameter group.</p> <p>Constraints:</p> <ul> <li>
* <p>Must be 1 to 255 letters or numbers.</p> </li> <li> <p>First character must
* be a letter</p> </li> <li> <p>Cannot end with a hyphen or contain two
* consecutive hyphens</p> </li> </ul> <p>This value is stored as a
* lowercase string.</p>
*/
inline ResetDBClusterParameterGroupResult& 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 ResetDBClusterParameterGroupResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;}
inline ResetDBClusterParameterGroupResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;}
private:
Aws::String m_dBClusterParameterGroupName;
ResponseMetadata m_responseMetadata;
};
} // namespace Model
} // namespace Neptune
} // namespace Aws