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

com.pulumi.awsnative.datazone.kotlin.inputs.EnvironmentProfileEnvironmentParameterArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.datazone.kotlin.inputs

import com.pulumi.awsnative.datazone.inputs.EnvironmentProfileEnvironmentParameterArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * The parameter details of an environment profile.
 * @property name The name of an environment profile parameter.
 * @property value The value of an environment profile parameter.
 */
public data class EnvironmentProfileEnvironmentParameterArgs(
    public val name: Output? = null,
    public val `value`: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.datazone.inputs.EnvironmentProfileEnvironmentParameterArgs =
        com.pulumi.awsnative.datazone.inputs.EnvironmentProfileEnvironmentParameterArgs.builder()
            .name(name?.applyValue({ args0 -> args0 }))
            .`value`(`value`?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [EnvironmentProfileEnvironmentParameterArgs].
 */
@PulumiTagMarker
public class EnvironmentProfileEnvironmentParameterArgsBuilder internal constructor() {
    private var name: Output? = null

    private var `value`: Output? = null

    /**
     * @param value The name of an environment profile parameter.
     */
    @JvmName("itpqkxwtxjeitcty")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The value of an environment profile parameter.
     */
    @JvmName("qqhfbhqacttmpxss")
    public suspend fun `value`(`value`: Output) {
        this.`value` = value
    }

    /**
     * @param value The name of an environment profile parameter.
     */
    @JvmName("huxjxdrwljegqljj")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The value of an environment profile parameter.
     */
    @JvmName("rkwyjajgknmmrncg")
    public suspend fun `value`(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.`value` = mapped
    }

    internal fun build(): EnvironmentProfileEnvironmentParameterArgs =
        EnvironmentProfileEnvironmentParameterArgs(
            name = name,
            `value` = `value`,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy