/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
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