/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes whether S3 data event logs will be enabled as a data
* source.See Also:
AWS
* API Reference
The status of S3 data event logs as a data source.
*/ inline bool GetEnable() const{ return m_enable; } /** *The status of S3 data event logs as a data source.
*/ inline bool EnableHasBeenSet() const { return m_enableHasBeenSet; } /** *The status of S3 data event logs as a data source.
*/ inline void SetEnable(bool value) { m_enableHasBeenSet = true; m_enable = value; } /** *The status of S3 data event logs as a data source.
*/ inline S3LogsConfiguration& WithEnable(bool value) { SetEnable(value); return *this;} private: bool m_enable; bool m_enableHasBeenSet = false; }; } // namespace Model } // namespace GuardDuty } // namespace Aws