![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.eks.kotlin.outputs.Logging.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.eks.kotlin.outputs
import kotlin.Suppress
/**
* Enable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs based on log types. By default, cluster control plane logs aren't exported to CloudWatch Logs.
* @property clusterLogging The cluster control plane logging configuration for your cluster.
*/
public data class Logging(
public val clusterLogging: ClusterLoggingEnabledTypes? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.eks.outputs.Logging): Logging = Logging(
clusterLogging = javaType.clusterLogging().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.eks.kotlin.outputs.ClusterLoggingEnabledTypes.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy