/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ConfigService { namespace Model { /** *

See Also:

AWS * API Reference

*/ class AWS_CONFIGSERVICE_API GetComplianceSummaryByConfigRuleResult { public: GetComplianceSummaryByConfigRuleResult(); GetComplianceSummaryByConfigRuleResult(const Aws::AmazonWebServiceResult& result); GetComplianceSummaryByConfigRuleResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The number of AWS Config rules that are compliant and the number that are * noncompliant, up to a maximum of 25 for each.

*/ inline const ComplianceSummary& GetComplianceSummary() const{ return m_complianceSummary; } /** *

The number of AWS Config rules that are compliant and the number that are * noncompliant, up to a maximum of 25 for each.

*/ inline void SetComplianceSummary(const ComplianceSummary& value) { m_complianceSummary = value; } /** *

The number of AWS Config rules that are compliant and the number that are * noncompliant, up to a maximum of 25 for each.

*/ inline void SetComplianceSummary(ComplianceSummary&& value) { m_complianceSummary = std::move(value); } /** *

The number of AWS Config rules that are compliant and the number that are * noncompliant, up to a maximum of 25 for each.

*/ inline GetComplianceSummaryByConfigRuleResult& WithComplianceSummary(const ComplianceSummary& value) { SetComplianceSummary(value); return *this;} /** *

The number of AWS Config rules that are compliant and the number that are * noncompliant, up to a maximum of 25 for each.

*/ inline GetComplianceSummaryByConfigRuleResult& WithComplianceSummary(ComplianceSummary&& value) { SetComplianceSummary(std::move(value)); return *this;} private: ComplianceSummary m_complianceSummary; }; } // namespace Model } // namespace ConfigService } // namespace Aws