com.pulumi.aws.cfg.kotlin.inputs.ConformancePackInputParameterArgs.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.cfg.kotlin.inputs
import com.pulumi.aws.cfg.inputs.ConformancePackInputParameterArgs.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 kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property parameterName The input key.
* @property parameterValue The input value.
*/
public data class ConformancePackInputParameterArgs(
public val parameterName: Output,
public val parameterValue: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.cfg.inputs.ConformancePackInputParameterArgs =
com.pulumi.aws.cfg.inputs.ConformancePackInputParameterArgs.builder()
.parameterName(parameterName.applyValue({ args0 -> args0 }))
.parameterValue(parameterValue.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ConformancePackInputParameterArgs].
*/
@PulumiTagMarker
public class ConformancePackInputParameterArgsBuilder internal constructor() {
private var parameterName: Output? = null
private var parameterValue: Output? = null
/**
* @param value The input key.
*/
@JvmName("flpdplrutmlunxsd")
public suspend fun parameterName(`value`: Output) {
this.parameterName = value
}
/**
* @param value The input value.
*/
@JvmName("venndyjmtqfpvahs")
public suspend fun parameterValue(`value`: Output) {
this.parameterValue = value
}
/**
* @param value The input key.
*/
@JvmName("hyoxnvephutugiux")
public suspend fun parameterName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.parameterName = mapped
}
/**
* @param value The input value.
*/
@JvmName("ssgerioepovfqdht")
public suspend fun parameterValue(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.parameterValue = mapped
}
internal fun build(): ConformancePackInputParameterArgs = ConformancePackInputParameterArgs(
parameterName = parameterName ?: throw PulumiNullFieldException("parameterName"),
parameterValue = parameterValue ?: throw PulumiNullFieldException("parameterValue"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy