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-config/include/aws/config/model/DescribeConfigRuleEvaluationStatusRequest.h

209 lines
9.4 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/config/ConfigService_EXPORTS.h>
#include <aws/config/ConfigServiceRequest.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace ConfigService
{
namespace Model
{
/**
* <p/><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigRuleEvaluationStatusRequest">AWS
* API Reference</a></p>
*/
class AWS_CONFIGSERVICE_API DescribeConfigRuleEvaluationStatusRequest : public ConfigServiceRequest
{
public:
DescribeConfigRuleEvaluationStatusRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "DescribeConfigRuleEvaluationStatus"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The name of the AWS managed Config rules for which you want status
* information. If you do not specify any names, AWS Config returns status
* information for all AWS managed Config rules that you use.</p>
*/
inline const Aws::Vector<Aws::String>& GetConfigRuleNames() const{ return m_configRuleNames; }
/**
* <p>The name of the AWS managed Config rules for which you want status
* information. If you do not specify any names, AWS Config returns status
* information for all AWS managed Config rules that you use.</p>
*/
inline bool ConfigRuleNamesHasBeenSet() const { return m_configRuleNamesHasBeenSet; }
/**
* <p>The name of the AWS managed Config rules for which you want status
* information. If you do not specify any names, AWS Config returns status
* information for all AWS managed Config rules that you use.</p>
*/
inline void SetConfigRuleNames(const Aws::Vector<Aws::String>& value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames = value; }
/**
* <p>The name of the AWS managed Config rules for which you want status
* information. If you do not specify any names, AWS Config returns status
* information for all AWS managed Config rules that you use.</p>
*/
inline void SetConfigRuleNames(Aws::Vector<Aws::String>&& value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames = std::move(value); }
/**
* <p>The name of the AWS managed Config rules for which you want status
* information. If you do not specify any names, AWS Config returns status
* information for all AWS managed Config rules that you use.</p>
*/
inline DescribeConfigRuleEvaluationStatusRequest& WithConfigRuleNames(const Aws::Vector<Aws::String>& value) { SetConfigRuleNames(value); return *this;}
/**
* <p>The name of the AWS managed Config rules for which you want status
* information. If you do not specify any names, AWS Config returns status
* information for all AWS managed Config rules that you use.</p>
*/
inline DescribeConfigRuleEvaluationStatusRequest& WithConfigRuleNames(Aws::Vector<Aws::String>&& value) { SetConfigRuleNames(std::move(value)); return *this;}
/**
* <p>The name of the AWS managed Config rules for which you want status
* information. If you do not specify any names, AWS Config returns status
* information for all AWS managed Config rules that you use.</p>
*/
inline DescribeConfigRuleEvaluationStatusRequest& AddConfigRuleNames(const Aws::String& value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames.push_back(value); return *this; }
/**
* <p>The name of the AWS managed Config rules for which you want status
* information. If you do not specify any names, AWS Config returns status
* information for all AWS managed Config rules that you use.</p>
*/
inline DescribeConfigRuleEvaluationStatusRequest& AddConfigRuleNames(Aws::String&& value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames.push_back(std::move(value)); return *this; }
/**
* <p>The name of the AWS managed Config rules for which you want status
* information. If you do not specify any names, AWS Config returns status
* information for all AWS managed Config rules that you use.</p>
*/
inline DescribeConfigRuleEvaluationStatusRequest& AddConfigRuleNames(const char* value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames.push_back(value); return *this; }
/**
* <p>The <code>nextToken</code> string returned on a previous page that you use to
* get the next page of results in a paginated response.</p>
*/
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
/**
* <p>The <code>nextToken</code> string returned on a previous page that you use to
* get the next page of results in a paginated response.</p>
*/
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
/**
* <p>The <code>nextToken</code> string returned on a previous page that you use to
* get the next page of results in a paginated response.</p>
*/
inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
/**
* <p>The <code>nextToken</code> string returned on a previous page that you use to
* get the next page of results in a paginated response.</p>
*/
inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
/**
* <p>The <code>nextToken</code> string returned on a previous page that you use to
* get the next page of results in a paginated response.</p>
*/
inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
/**
* <p>The <code>nextToken</code> string returned on a previous page that you use to
* get the next page of results in a paginated response.</p>
*/
inline DescribeConfigRuleEvaluationStatusRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
/**
* <p>The <code>nextToken</code> string returned on a previous page that you use to
* get the next page of results in a paginated response.</p>
*/
inline DescribeConfigRuleEvaluationStatusRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
/**
* <p>The <code>nextToken</code> string returned on a previous page that you use to
* get the next page of results in a paginated response.</p>
*/
inline DescribeConfigRuleEvaluationStatusRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
/**
* <p>The number of rule evaluation results that you want returned.</p> <p>This
* parameter is required if the rule limit for your account is more than the
* default of 150 rules.</p> <p>For information about requesting a rule limit
* increase, see <a
* href="http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_config">AWS
* Config Limits</a> in the <i>AWS General Reference Guide</i>.</p>
*/
inline int GetLimit() const{ return m_limit; }
/**
* <p>The number of rule evaluation results that you want returned.</p> <p>This
* parameter is required if the rule limit for your account is more than the
* default of 150 rules.</p> <p>For information about requesting a rule limit
* increase, see <a
* href="http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_config">AWS
* Config Limits</a> in the <i>AWS General Reference Guide</i>.</p>
*/
inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
/**
* <p>The number of rule evaluation results that you want returned.</p> <p>This
* parameter is required if the rule limit for your account is more than the
* default of 150 rules.</p> <p>For information about requesting a rule limit
* increase, see <a
* href="http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_config">AWS
* Config Limits</a> in the <i>AWS General Reference Guide</i>.</p>
*/
inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
/**
* <p>The number of rule evaluation results that you want returned.</p> <p>This
* parameter is required if the rule limit for your account is more than the
* default of 150 rules.</p> <p>For information about requesting a rule limit
* increase, see <a
* href="http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_config">AWS
* Config Limits</a> in the <i>AWS General Reference Guide</i>.</p>
*/
inline DescribeConfigRuleEvaluationStatusRequest& WithLimit(int value) { SetLimit(value); return *this;}
private:
Aws::Vector<Aws::String> m_configRuleNames;
bool m_configRuleNamesHasBeenSet;
Aws::String m_nextToken;
bool m_nextTokenHasBeenSet;
int m_limit;
bool m_limitHasBeenSet;
};
} // namespace Model
} // namespace ConfigService
} // namespace Aws