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

Name of the conformance pack.

*/ inline const Aws::String& GetConformancePackName() const{ return m_conformancePackName; } /** *

Name of the conformance pack.

*/ inline bool ConformancePackNameHasBeenSet() const { return m_conformancePackNameHasBeenSet; } /** *

Name of the conformance pack.

*/ inline void SetConformancePackName(const Aws::String& value) { m_conformancePackNameHasBeenSet = true; m_conformancePackName = value; } /** *

Name of the conformance pack.

*/ inline void SetConformancePackName(Aws::String&& value) { m_conformancePackNameHasBeenSet = true; m_conformancePackName = std::move(value); } /** *

Name of the conformance pack.

*/ inline void SetConformancePackName(const char* value) { m_conformancePackNameHasBeenSet = true; m_conformancePackName.assign(value); } /** *

Name of the conformance pack.

*/ inline DescribeConformancePackComplianceRequest& WithConformancePackName(const Aws::String& value) { SetConformancePackName(value); return *this;} /** *

Name of the conformance pack.

*/ inline DescribeConformancePackComplianceRequest& WithConformancePackName(Aws::String&& value) { SetConformancePackName(std::move(value)); return *this;} /** *

Name of the conformance pack.

*/ inline DescribeConformancePackComplianceRequest& WithConformancePackName(const char* value) { SetConformancePackName(value); return *this;} /** *

A ConformancePackComplianceFilters object.

*/ inline const ConformancePackComplianceFilters& GetFilters() const{ return m_filters; } /** *

A ConformancePackComplianceFilters object.

*/ inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; } /** *

A ConformancePackComplianceFilters object.

*/ inline void SetFilters(const ConformancePackComplianceFilters& value) { m_filtersHasBeenSet = true; m_filters = value; } /** *

A ConformancePackComplianceFilters object.

*/ inline void SetFilters(ConformancePackComplianceFilters&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); } /** *

A ConformancePackComplianceFilters object.

*/ inline DescribeConformancePackComplianceRequest& WithFilters(const ConformancePackComplianceFilters& value) { SetFilters(value); return *this;} /** *

A ConformancePackComplianceFilters object.

*/ inline DescribeConformancePackComplianceRequest& WithFilters(ConformancePackComplianceFilters&& value) { SetFilters(std::move(value)); return *this;} /** *

The maximum number of Config rules within a conformance pack are returned on * each page.

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

The maximum number of Config rules within a conformance pack are returned on * each page.

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

The maximum number of Config rules within a conformance pack are returned on * each page.

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

The maximum number of Config rules within a conformance pack are returned on * each page.

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

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

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

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

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

The nextToken string returned in a previous request that you use * to request 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 in a previous request that you use * to request 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 in a previous request that you use * to request 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 in a previous request that you use * to request the next page of results in a paginated response.

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

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

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

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

*/ inline DescribeConformancePackComplianceRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::String m_conformancePackName; bool m_conformancePackNameHasBeenSet = false; ConformancePackComplianceFilters m_filters; bool m_filtersHasBeenSet = false; int m_limit; bool m_limitHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace ConfigService } // namespace Aws