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

The number of conformance packs that are compliant and * noncompliant.

See Also:

AWS * API Reference

*/ class AggregateConformancePackComplianceCount { public: AWS_CONFIGSERVICE_API AggregateConformancePackComplianceCount(); AWS_CONFIGSERVICE_API AggregateConformancePackComplianceCount(Aws::Utils::Json::JsonView jsonValue); AWS_CONFIGSERVICE_API AggregateConformancePackComplianceCount& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_CONFIGSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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