/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Organization-wide Kubernetes data sources configurations.See
* Also:
AWS
* API Reference
Whether Kubernetes audit logs data source should be auto-enabled for new * members joining the organization.
*/ inline const OrganizationKubernetesAuditLogsConfiguration& GetAuditLogs() const{ return m_auditLogs; } /** *Whether Kubernetes audit logs data source should be auto-enabled for new * members joining the organization.
*/ inline bool AuditLogsHasBeenSet() const { return m_auditLogsHasBeenSet; } /** *Whether Kubernetes audit logs data source should be auto-enabled for new * members joining the organization.
*/ inline void SetAuditLogs(const OrganizationKubernetesAuditLogsConfiguration& value) { m_auditLogsHasBeenSet = true; m_auditLogs = value; } /** *Whether Kubernetes audit logs data source should be auto-enabled for new * members joining the organization.
*/ inline void SetAuditLogs(OrganizationKubernetesAuditLogsConfiguration&& value) { m_auditLogsHasBeenSet = true; m_auditLogs = std::move(value); } /** *Whether Kubernetes audit logs data source should be auto-enabled for new * members joining the organization.
*/ inline OrganizationKubernetesConfiguration& WithAuditLogs(const OrganizationKubernetesAuditLogsConfiguration& value) { SetAuditLogs(value); return *this;} /** *Whether Kubernetes audit logs data source should be auto-enabled for new * members joining the organization.
*/ inline OrganizationKubernetesConfiguration& WithAuditLogs(OrganizationKubernetesAuditLogsConfiguration&& value) { SetAuditLogs(std::move(value)); return *this;} private: OrganizationKubernetesAuditLogsConfiguration m_auditLogs; bool m_auditLogsHasBeenSet = false; }; } // namespace Model } // namespace GuardDuty } // namespace Aws