/**
* 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 Kubernetes data sources
* for the detector. See Also:
AWS
* API Reference
Describes whether Kubernetes audit logs are activated as a data source for * the detector.
*/ inline const AwsGuardDutyDetectorDataSourcesKubernetesAuditLogsDetails& GetAuditLogs() const{ return m_auditLogs; } /** *Describes whether Kubernetes audit logs are activated as a data source for * the detector.
*/ inline bool AuditLogsHasBeenSet() const { return m_auditLogsHasBeenSet; } /** *Describes whether Kubernetes audit logs are activated as a data source for * the detector.
*/ inline void SetAuditLogs(const AwsGuardDutyDetectorDataSourcesKubernetesAuditLogsDetails& value) { m_auditLogsHasBeenSet = true; m_auditLogs = value; } /** *Describes whether Kubernetes audit logs are activated as a data source for * the detector.
*/ inline void SetAuditLogs(AwsGuardDutyDetectorDataSourcesKubernetesAuditLogsDetails&& value) { m_auditLogsHasBeenSet = true; m_auditLogs = std::move(value); } /** *Describes whether Kubernetes audit logs are activated as a data source for * the detector.
*/ inline AwsGuardDutyDetectorDataSourcesKubernetesDetails& WithAuditLogs(const AwsGuardDutyDetectorDataSourcesKubernetesAuditLogsDetails& value) { SetAuditLogs(value); return *this;} /** *Describes whether Kubernetes audit logs are activated as a data source for * the detector.
*/ inline AwsGuardDutyDetectorDataSourcesKubernetesDetails& WithAuditLogs(AwsGuardDutyDetectorDataSourcesKubernetesAuditLogsDetails&& value) { SetAuditLogs(std::move(value)); return *this;} private: AwsGuardDutyDetectorDataSourcesKubernetesAuditLogsDetails m_auditLogs; bool m_auditLogsHasBeenSet = false; }; } // namespace Model } // namespace SecurityHub } // namespace Aws