/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The number of conformance packs that are compliant and
* noncompliant.See Also:
AWS
* API Reference
Number of compliant conformance packs.
*/ inline int GetCompliantConformancePackCount() const{ return m_compliantConformancePackCount; } /** *Number of compliant conformance packs.
*/ inline bool CompliantConformancePackCountHasBeenSet() const { return m_compliantConformancePackCountHasBeenSet; } /** *Number of compliant conformance packs.
*/ inline void SetCompliantConformancePackCount(int value) { m_compliantConformancePackCountHasBeenSet = true; m_compliantConformancePackCount = value; } /** *Number of compliant conformance packs.
*/ inline AggregateConformancePackComplianceCount& WithCompliantConformancePackCount(int value) { SetCompliantConformancePackCount(value); return *this;} /** *Number of noncompliant conformance packs.
*/ inline int GetNonCompliantConformancePackCount() const{ return m_nonCompliantConformancePackCount; } /** *Number of noncompliant conformance packs.
*/ inline bool NonCompliantConformancePackCountHasBeenSet() const { return m_nonCompliantConformancePackCountHasBeenSet; } /** *Number of noncompliant conformance packs.
*/ inline void SetNonCompliantConformancePackCount(int value) { m_nonCompliantConformancePackCountHasBeenSet = true; m_nonCompliantConformancePackCount = value; } /** *Number of noncompliant conformance packs.
*/ inline AggregateConformancePackComplianceCount& WithNonCompliantConformancePackCount(int value) { SetNonCompliantConformancePackCount(value); return *this;} private: int m_compliantConformancePackCount; bool m_compliantConformancePackCountHasBeenSet = false; int m_nonCompliantConformancePackCount; bool m_nonCompliantConformancePackCountHasBeenSet = false; }; } // namespace Model } // namespace ConfigService } // namespace Aws