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

A list of Config rule names.

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

A list of Config rule names.

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

A list of Config rule names.

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

A list of Config rule names.

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

A list of Config rule names.

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

A list of Config rule names.

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

A list of Config rule names.

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

A list of Config rule names.

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

A list of resource keys to be processed with the current request. Each * element in the list consists of the resource type and resource ID.

*/ inline const Aws::Vector& GetResourceKeys() const{ return m_resourceKeys; } /** *

A list of resource keys to be processed with the current request. Each * element in the list consists of the resource type and resource ID.

*/ inline bool ResourceKeysHasBeenSet() const { return m_resourceKeysHasBeenSet; } /** *

A list of resource keys to be processed with the current request. Each * element in the list consists of the resource type and resource ID.

*/ inline void SetResourceKeys(const Aws::Vector& value) { m_resourceKeysHasBeenSet = true; m_resourceKeys = value; } /** *

A list of resource keys to be processed with the current request. Each * element in the list consists of the resource type and resource ID.

*/ inline void SetResourceKeys(Aws::Vector&& value) { m_resourceKeysHasBeenSet = true; m_resourceKeys = std::move(value); } /** *

A list of resource keys to be processed with the current request. Each * element in the list consists of the resource type and resource ID.

*/ inline DescribeRemediationExecutionStatusRequest& WithResourceKeys(const Aws::Vector& value) { SetResourceKeys(value); return *this;} /** *

A list of resource keys to be processed with the current request. Each * element in the list consists of the resource type and resource ID.

*/ inline DescribeRemediationExecutionStatusRequest& WithResourceKeys(Aws::Vector&& value) { SetResourceKeys(std::move(value)); return *this;} /** *

A list of resource keys to be processed with the current request. Each * element in the list consists of the resource type and resource ID.

*/ inline DescribeRemediationExecutionStatusRequest& AddResourceKeys(const ResourceKey& value) { m_resourceKeysHasBeenSet = true; m_resourceKeys.push_back(value); return *this; } /** *

A list of resource keys to be processed with the current request. Each * element in the list consists of the resource type and resource ID.

*/ inline DescribeRemediationExecutionStatusRequest& AddResourceKeys(ResourceKey&& value) { m_resourceKeysHasBeenSet = true; m_resourceKeys.push_back(std::move(value)); return *this; } /** *

The maximum number of RemediationExecutionStatuses returned on each page. The * default is maximum. If you specify 0, Config uses the default.

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

The maximum number of RemediationExecutionStatuses returned on each page. The * default is maximum. If you specify 0, Config uses the default.

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

The maximum number of RemediationExecutionStatuses returned on each page. The * default is maximum. If you specify 0, Config uses the default.

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

The maximum number of RemediationExecutionStatuses returned on each page. The * default is maximum. If you specify 0, Config uses the default.

*/ inline DescribeRemediationExecutionStatusRequest& 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 DescribeRemediationExecutionStatusRequest& 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 DescribeRemediationExecutionStatusRequest& 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 DescribeRemediationExecutionStatusRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::String m_configRuleName; bool m_configRuleNameHasBeenSet = false; Aws::Vector m_resourceKeys; bool m_resourceKeysHasBeenSet = false; int m_limit; bool m_limitHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace ConfigService } // namespace Aws