
com.pulumi.awsnative.eks.kotlin.outputs.ClusterEncryptionConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.eks.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* The encryption configuration for the cluster
* @property provider The encryption provider for the cluster.
* @property resources Specifies the resources to be encrypted. The only supported value is "secrets".
*/
public data class ClusterEncryptionConfig(
public val provider: ClusterProvider? = null,
public val resources: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.eks.outputs.ClusterEncryptionConfig): ClusterEncryptionConfig = ClusterEncryptionConfig(
provider = javaType.provider().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.eks.kotlin.outputs.ClusterProvider.Companion.toKotlin(args0)
})
}).orElse(null),
resources = javaType.resources().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy