com.pulumi.aws.guardduty.kotlin.outputs.OrganizationConfigurationDatasourcesKubernetesAuditLogs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.guardduty.kotlin.outputs
import kotlin.Boolean
import kotlin.Suppress
/**
*
* @property enable If true, enables Kubernetes audit logs as a data source for [Kubernetes protection](https://docs.aws.amazon.com/guardduty/latest/ug/kubernetes-protection.html).
* Defaults to `true`.
*/
public data class OrganizationConfigurationDatasourcesKubernetesAuditLogs(
public val enable: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.guardduty.outputs.OrganizationConfigurationDatasourcesKubernetesAuditLogs): OrganizationConfigurationDatasourcesKubernetesAuditLogs =
OrganizationConfigurationDatasourcesKubernetesAuditLogs(
enable = javaType.enable(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy