/**
* 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 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 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 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 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 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;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetComplianceSummaryByConfigRuleResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetComplianceSummaryByConfigRuleResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetComplianceSummaryByConfigRuleResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ComplianceSummary m_complianceSummary; Aws::String m_requestId; }; } // namespace Model } // namespace ConfigService } // namespace Aws