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-dax/include/aws/dax/model/DescribeParametersResult.h

125 lines
4.0 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/dax/DAX_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/dax/model/Parameter.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace DAX
{
namespace Model
{
class AWS_DAX_API DescribeParametersResult
{
public:
DescribeParametersResult();
DescribeParametersResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DescribeParametersResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>Provides an identifier to allow retrieval of paginated results.</p>
*/
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
/**
* <p>Provides an identifier to allow retrieval of paginated results.</p>
*/
inline void SetNextToken(const Aws::String& value) { m_nextToken = value; }
/**
* <p>Provides an identifier to allow retrieval of paginated results.</p>
*/
inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); }
/**
* <p>Provides an identifier to allow retrieval of paginated results.</p>
*/
inline void SetNextToken(const char* value) { m_nextToken.assign(value); }
/**
* <p>Provides an identifier to allow retrieval of paginated results.</p>
*/
inline DescribeParametersResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
/**
* <p>Provides an identifier to allow retrieval of paginated results.</p>
*/
inline DescribeParametersResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
/**
* <p>Provides an identifier to allow retrieval of paginated results.</p>
*/
inline DescribeParametersResult& WithNextToken(const char* value) { SetNextToken(value); return *this;}
/**
* <p>A list of parameters within a parameter group. Each element in the list
* represents one parameter.</p>
*/
inline const Aws::Vector<Parameter>& GetParameters() const{ return m_parameters; }
/**
* <p>A list of parameters within a parameter group. Each element in the list
* represents one parameter.</p>
*/
inline void SetParameters(const Aws::Vector<Parameter>& value) { m_parameters = value; }
/**
* <p>A list of parameters within a parameter group. Each element in the list
* represents one parameter.</p>
*/
inline void SetParameters(Aws::Vector<Parameter>&& value) { m_parameters = std::move(value); }
/**
* <p>A list of parameters within a parameter group. Each element in the list
* represents one parameter.</p>
*/
inline DescribeParametersResult& WithParameters(const Aws::Vector<Parameter>& value) { SetParameters(value); return *this;}
/**
* <p>A list of parameters within a parameter group. Each element in the list
* represents one parameter.</p>
*/
inline DescribeParametersResult& WithParameters(Aws::Vector<Parameter>&& value) { SetParameters(std::move(value)); return *this;}
/**
* <p>A list of parameters within a parameter group. Each element in the list
* represents one parameter.</p>
*/
inline DescribeParametersResult& AddParameters(const Parameter& value) { m_parameters.push_back(value); return *this; }
/**
* <p>A list of parameters within a parameter group. Each element in the list
* represents one parameter.</p>
*/
inline DescribeParametersResult& AddParameters(Parameter&& value) { m_parameters.push_back(std::move(value)); return *this; }
private:
Aws::String m_nextToken;
Aws::Vector<Parameter> m_parameters;
};
} // namespace Model
} // namespace DAX
} // namespace Aws