All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.cloudformation.kotlin.inputs.StackSetParameterArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.11.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.cloudformation.kotlin.inputs

import com.pulumi.awsnative.cloudformation.inputs.StackSetParameterArgs.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 parameterKey The key associated with the parameter. If you don't specify a key and value for a particular parameter, AWS CloudFormation uses the default value that is specified in your template.
 * @property parameterValue The input value associated with the parameter.
 */
public data class StackSetParameterArgs(
    public val parameterKey: Output,
    public val parameterValue: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.cloudformation.inputs.StackSetParameterArgs =
        com.pulumi.awsnative.cloudformation.inputs.StackSetParameterArgs.builder()
            .parameterKey(parameterKey.applyValue({ args0 -> args0 }))
            .parameterValue(parameterValue.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [StackSetParameterArgs].
 */
@PulumiTagMarker
public class StackSetParameterArgsBuilder internal constructor() {
    private var parameterKey: Output? = null

    private var parameterValue: Output? = null

    /**
     * @param value The key associated with the parameter. If you don't specify a key and value for a particular parameter, AWS CloudFormation uses the default value that is specified in your template.
     */
    @JvmName("eurrdkqetskpqpvy")
    public suspend fun parameterKey(`value`: Output) {
        this.parameterKey = value
    }

    /**
     * @param value The input value associated with the parameter.
     */
    @JvmName("rmtsqruvmicfqaac")
    public suspend fun parameterValue(`value`: Output) {
        this.parameterValue = value
    }

    /**
     * @param value The key associated with the parameter. If you don't specify a key and value for a particular parameter, AWS CloudFormation uses the default value that is specified in your template.
     */
    @JvmName("qcweeithqxwanimg")
    public suspend fun parameterKey(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.parameterKey = mapped
    }

    /**
     * @param value The input value associated with the parameter.
     */
    @JvmName("djxxxridpuunerne")
    public suspend fun parameterValue(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.parameterValue = mapped
    }

    internal fun build(): StackSetParameterArgs = StackSetParameterArgs(
        parameterKey = parameterKey ?: throw PulumiNullFieldException("parameterKey"),
        parameterValue = parameterValue ?: throw PulumiNullFieldException("parameterValue"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy