com.pulumi.aws.eks.kotlin.inputs.ClusterEncryptionConfigArgs.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.eks.kotlin.inputs
import com.pulumi.aws.eks.inputs.ClusterEncryptionConfigArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property provider Configuration block with provider for encryption. Detailed below.
* @property resources List of strings with resources to be encrypted. Valid values: `secrets`.
*/
public data class ClusterEncryptionConfigArgs(
public val provider: Output,
public val resources: Output>,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.eks.inputs.ClusterEncryptionConfigArgs =
com.pulumi.aws.eks.inputs.ClusterEncryptionConfigArgs.builder()
.provider(provider.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.resources(resources.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [ClusterEncryptionConfigArgs].
*/
@PulumiTagMarker
public class ClusterEncryptionConfigArgsBuilder internal constructor() {
private var provider: Output? = null
private var resources: Output>? = null
/**
* @param value Configuration block with provider for encryption. Detailed below.
*/
@JvmName("yqblhnalsivoiaqq")
public suspend fun provider(`value`: Output) {
this.provider = value
}
/**
* @param value List of strings with resources to be encrypted. Valid values: `secrets`.
*/
@JvmName("jggdyehvlnwfnjlh")
public suspend fun resources(`value`: Output>) {
this.resources = value
}
@JvmName("xqjctsssqyxqqwld")
public suspend fun resources(vararg values: Output) {
this.resources = Output.all(values.asList())
}
/**
* @param values List of strings with resources to be encrypted. Valid values: `secrets`.
*/
@JvmName("whwhadlkdgvrntht")
public suspend fun resources(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy