/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace ConfigService { namespace Model { /** *

See Also:

AWS * API Reference

*/ class GetComplianceDetailsByConfigRuleRequest : public ConfigServiceRequest { public: AWS_CONFIGSERVICE_API GetComplianceDetailsByConfigRuleRequest(); // 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 "GetComplianceDetailsByConfigRule"; } AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override; AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the Config rule for which you want compliance information.

*/ inline const Aws::String& GetConfigRuleName() const{ return m_configRuleName; } /** *

The name of the Config rule for which you want compliance information.

*/ inline bool ConfigRuleNameHasBeenSet() const { return m_configRuleNameHasBeenSet; } /** *

The name of the Config rule for which you want compliance information.

*/ inline void SetConfigRuleName(const Aws::String& value) { m_configRuleNameHasBeenSet = true; m_configRuleName = value; } /** *

The name of the Config rule for which you want compliance information.

*/ inline void SetConfigRuleName(Aws::String&& value) { m_configRuleNameHasBeenSet = true; m_configRuleName = std::move(value); } /** *

The name of the Config rule for which you want compliance information.

*/ inline void SetConfigRuleName(const char* value) { m_configRuleNameHasBeenSet = true; m_configRuleName.assign(value); } /** *

The name of the Config rule for which you want compliance information.

*/ inline GetComplianceDetailsByConfigRuleRequest& WithConfigRuleName(const Aws::String& value) { SetConfigRuleName(value); return *this;} /** *

The name of the Config rule for which you want compliance information.

*/ inline GetComplianceDetailsByConfigRuleRequest& WithConfigRuleName(Aws::String&& value) { SetConfigRuleName(std::move(value)); return *this;} /** *

The name of the Config rule for which you want compliance information.

*/ inline GetComplianceDetailsByConfigRuleRequest& WithConfigRuleName(const char* value) { SetConfigRuleName(value); return *this;} /** *

Filters the results by compliance.

INSUFFICIENT_DATA is * a valid ComplianceType that is returned when an Config rule cannot * be evaluated. However, INSUFFICIENT_DATA cannot be used as a * ComplianceType for filtering results.

*/ inline const Aws::Vector& GetComplianceTypes() const{ return m_complianceTypes; } /** *

Filters the results by compliance.

INSUFFICIENT_DATA is * a valid ComplianceType that is returned when an Config rule cannot * be evaluated. However, INSUFFICIENT_DATA cannot be used as a * ComplianceType for filtering results.

*/ inline bool ComplianceTypesHasBeenSet() const { return m_complianceTypesHasBeenSet; } /** *

Filters the results by compliance.

INSUFFICIENT_DATA is * a valid ComplianceType that is returned when an Config rule cannot * be evaluated. However, INSUFFICIENT_DATA cannot be used as a * ComplianceType for filtering results.

*/ inline void SetComplianceTypes(const Aws::Vector& value) { m_complianceTypesHasBeenSet = true; m_complianceTypes = value; } /** *

Filters the results by compliance.

INSUFFICIENT_DATA is * a valid ComplianceType that is returned when an Config rule cannot * be evaluated. However, INSUFFICIENT_DATA cannot be used as a * ComplianceType for filtering results.

*/ inline void SetComplianceTypes(Aws::Vector&& value) { m_complianceTypesHasBeenSet = true; m_complianceTypes = std::move(value); } /** *

Filters the results by compliance.

INSUFFICIENT_DATA is * a valid ComplianceType that is returned when an Config rule cannot * be evaluated. However, INSUFFICIENT_DATA cannot be used as a * ComplianceType for filtering results.

*/ inline GetComplianceDetailsByConfigRuleRequest& WithComplianceTypes(const Aws::Vector& value) { SetComplianceTypes(value); return *this;} /** *

Filters the results by compliance.

INSUFFICIENT_DATA is * a valid ComplianceType that is returned when an Config rule cannot * be evaluated. However, INSUFFICIENT_DATA cannot be used as a * ComplianceType for filtering results.

*/ inline GetComplianceDetailsByConfigRuleRequest& WithComplianceTypes(Aws::Vector&& value) { SetComplianceTypes(std::move(value)); return *this;} /** *

Filters the results by compliance.

INSUFFICIENT_DATA is * a valid ComplianceType that is returned when an Config rule cannot * be evaluated. However, INSUFFICIENT_DATA cannot be used as a * ComplianceType for filtering results.

*/ inline GetComplianceDetailsByConfigRuleRequest& AddComplianceTypes(const ComplianceType& value) { m_complianceTypesHasBeenSet = true; m_complianceTypes.push_back(value); return *this; } /** *

Filters the results by compliance.

INSUFFICIENT_DATA is * a valid ComplianceType that is returned when an Config rule cannot * be evaluated. However, INSUFFICIENT_DATA cannot be used as a * ComplianceType for filtering results.

*/ inline GetComplianceDetailsByConfigRuleRequest& AddComplianceTypes(ComplianceType&& value) { m_complianceTypesHasBeenSet = true; m_complianceTypes.push_back(std::move(value)); return *this; } /** *

The maximum number of evaluation results returned on each page. The default * is 10. You cannot specify a number greater than 100. If you specify 0, Config * uses the default.

*/ inline int GetLimit() const{ return m_limit; } /** *

The maximum number of evaluation results returned on each page. The default * is 10. You cannot specify a number greater than 100. If you specify 0, Config * uses the default.

*/ inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; } /** *

The maximum number of evaluation results returned on each page. The default * is 10. You cannot specify a number greater than 100. If you specify 0, Config * uses the default.

*/ inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; } /** *

The maximum number of evaluation results returned on each page. The default * is 10. You cannot specify a number greater than 100. If you specify 0, Config * uses the default.

*/ inline GetComplianceDetailsByConfigRuleRequest& WithLimit(int value) { SetLimit(value); return *this;} /** *

The nextToken string returned on a previous page that you use to * get the next page of results in a paginated response.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

The nextToken string returned on a previous page that you use to * get the next page of results in a paginated response.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

The nextToken string returned on a previous page that you use to * get the next page of results in a paginated response.

*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *

The nextToken string returned on a previous page that you use to * get the next page of results in a paginated response.

*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *

The nextToken string returned on a previous page that you use to * get the next page of results in a paginated response.

*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *

The nextToken string returned on a previous page that you use to * get the next page of results in a paginated response.

*/ inline GetComplianceDetailsByConfigRuleRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

The nextToken string returned on a previous page that you use to * get the next page of results in a paginated response.

*/ inline GetComplianceDetailsByConfigRuleRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

The nextToken string returned on a previous page that you use to * get the next page of results in a paginated response.

*/ inline GetComplianceDetailsByConfigRuleRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::String m_configRuleName; bool m_configRuleNameHasBeenSet = false; Aws::Vector m_complianceTypes; bool m_complianceTypesHasBeenSet = false; int m_limit; bool m_limitHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace ConfigService } // namespace Aws