/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that contains information on the status of S3 data event logs as a
* data source for the detector. See Also:
AWS
* API Reference
A value that describes whether S3 data event logs are automatically enabled * for new members of an organization.
*/ inline const Aws::String& GetStatus() const{ return m_status; } /** *A value that describes whether S3 data event logs are automatically enabled * for new members of an organization.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *A value that describes whether S3 data event logs are automatically enabled * for new members of an organization.
*/ inline void SetStatus(const Aws::String& value) { m_statusHasBeenSet = true; m_status = value; } /** *A value that describes whether S3 data event logs are automatically enabled * for new members of an organization.
*/ inline void SetStatus(Aws::String&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *A value that describes whether S3 data event logs are automatically enabled * for new members of an organization.
*/ inline void SetStatus(const char* value) { m_statusHasBeenSet = true; m_status.assign(value); } /** *A value that describes whether S3 data event logs are automatically enabled * for new members of an organization.
*/ inline AwsGuardDutyDetectorDataSourcesS3LogsDetails& WithStatus(const Aws::String& value) { SetStatus(value); return *this;} /** *A value that describes whether S3 data event logs are automatically enabled * for new members of an organization.
*/ inline AwsGuardDutyDetectorDataSourcesS3LogsDetails& WithStatus(Aws::String&& value) { SetStatus(std::move(value)); return *this;} /** *A value that describes whether S3 data event logs are automatically enabled * for new members of an organization.
*/ inline AwsGuardDutyDetectorDataSourcesS3LogsDetails& WithStatus(const char* value) { SetStatus(value); return *this;} private: Aws::String m_status; bool m_statusHasBeenSet = false; }; } // namespace Model } // namespace SecurityHub } // namespace Aws