/** * 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 IoT { namespace Model { /** *

Which audit checks are enabled and disabled for this account.

See * Also:

AWS * API Reference

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

True if this audit check is enabled for this account.

*/ inline bool GetEnabled() const{ return m_enabled; } /** *

True if this audit check is enabled for this account.

*/ inline bool EnabledHasBeenSet() const { return m_enabledHasBeenSet; } /** *

True if this audit check is enabled for this account.

*/ inline void SetEnabled(bool value) { m_enabledHasBeenSet = true; m_enabled = value; } /** *

True if this audit check is enabled for this account.

*/ inline AuditCheckConfiguration& WithEnabled(bool value) { SetEnabled(value); return *this;} private: bool m_enabled; bool m_enabledHasBeenSet = false; }; } // namespace Model } // namespace IoT } // namespace Aws