/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Organization-wide EBS volumes scan configuration.See Also:
* AWS
* API Reference
Whether scanning EBS volumes should be auto-enabled for new members joining * the organization.
*/ inline bool GetAutoEnable() const{ return m_autoEnable; } /** *Whether scanning EBS volumes should be auto-enabled for new members joining * the organization.
*/ inline bool AutoEnableHasBeenSet() const { return m_autoEnableHasBeenSet; } /** *Whether scanning EBS volumes should be auto-enabled for new members joining * the organization.
*/ inline void SetAutoEnable(bool value) { m_autoEnableHasBeenSet = true; m_autoEnable = value; } /** *Whether scanning EBS volumes should be auto-enabled for new members joining * the organization.
*/ inline OrganizationEbsVolumes& WithAutoEnable(bool value) { SetAutoEnable(value); return *this;} private: bool m_autoEnable; bool m_autoEnableHasBeenSet = false; }; } // namespace Model } // namespace GuardDuty } // namespace Aws