/**
* 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 VPC Flow Logs as a data
* source for the detector. See Also:
AWS
* API Reference
Describes whether VPC Flow Logs are activated as a data source for the * detector.
*/ inline const Aws::String& GetStatus() const{ return m_status; } /** *Describes whether VPC Flow Logs are activated as a data source for the * detector.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *Describes whether VPC Flow Logs are activated as a data source for the * detector.
*/ inline void SetStatus(const Aws::String& value) { m_statusHasBeenSet = true; m_status = value; } /** *Describes whether VPC Flow Logs are activated as a data source for the * detector.
*/ inline void SetStatus(Aws::String&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *Describes whether VPC Flow Logs are activated as a data source for the * detector.
*/ inline void SetStatus(const char* value) { m_statusHasBeenSet = true; m_status.assign(value); } /** *Describes whether VPC Flow Logs are activated as a data source for the * detector.
*/ inline AwsGuardDutyDetectorDataSourcesFlowLogsDetails& WithStatus(const Aws::String& value) { SetStatus(value); return *this;} /** *Describes whether VPC Flow Logs are activated as a data source for the * detector.
*/ inline AwsGuardDutyDetectorDataSourcesFlowLogsDetails& WithStatus(Aws::String&& value) { SetStatus(std::move(value)); return *this;} /** *Describes whether VPC Flow Logs are activated as a data source for the * detector.
*/ inline AwsGuardDutyDetectorDataSourcesFlowLogsDetails& WithStatus(const char* value) { SetStatus(value); return *this;} private: Aws::String m_status; bool m_statusHasBeenSet = false; }; } // namespace Model } // namespace SecurityHub } // namespace Aws