/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace ConfigService { namespace Model { /** */ class DescribeRemediationConfigurationsRequest : public ConfigServiceRequest { public: AWS_CONFIGSERVICE_API DescribeRemediationConfigurationsRequest(); // 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 "DescribeRemediationConfigurations"; } AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override; AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

A list of Config rule names of remediation configurations for which you want * details.

*/ inline const Aws::Vector& GetConfigRuleNames() const{ return m_configRuleNames; } /** *

A list of Config rule names of remediation configurations for which you want * details.

*/ inline bool ConfigRuleNamesHasBeenSet() const { return m_configRuleNamesHasBeenSet; } /** *

A list of Config rule names of remediation configurations for which you want * details.

*/ inline void SetConfigRuleNames(const Aws::Vector& value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames = value; } /** *

A list of Config rule names of remediation configurations for which you want * details.

*/ inline void SetConfigRuleNames(Aws::Vector&& value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames = std::move(value); } /** *

A list of Config rule names of remediation configurations for which you want * details.

*/ inline DescribeRemediationConfigurationsRequest& WithConfigRuleNames(const Aws::Vector& value) { SetConfigRuleNames(value); return *this;} /** *

A list of Config rule names of remediation configurations for which you want * details.

*/ inline DescribeRemediationConfigurationsRequest& WithConfigRuleNames(Aws::Vector&& value) { SetConfigRuleNames(std::move(value)); return *this;} /** *

A list of Config rule names of remediation configurations for which you want * details.

*/ inline DescribeRemediationConfigurationsRequest& AddConfigRuleNames(const Aws::String& value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames.push_back(value); return *this; } /** *

A list of Config rule names of remediation configurations for which you want * details.

*/ inline DescribeRemediationConfigurationsRequest& AddConfigRuleNames(Aws::String&& value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames.push_back(std::move(value)); return *this; } /** *

A list of Config rule names of remediation configurations for which you want * details.

*/ inline DescribeRemediationConfigurationsRequest& AddConfigRuleNames(const char* value) { m_configRuleNamesHasBeenSet = true; m_configRuleNames.push_back(value); return *this; } private: Aws::Vector m_configRuleNames; bool m_configRuleNamesHasBeenSet = false; }; } // namespace Model } // namespace ConfigService } // namespace Aws