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

com.pulumi.awsnative.imagebuilder.kotlin.outputs.ContainerRecipeComponentParameter.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.imagebuilder.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * Contains a key/value pair that sets the named component parameter.
 * @property name The name of the component parameter to set.
 * @property value Sets the value for the named component parameter.
 */
public data class ContainerRecipeComponentParameter(
    public val name: String,
    public val `value`: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.imagebuilder.outputs.ContainerRecipeComponentParameter): ContainerRecipeComponentParameter = ContainerRecipeComponentParameter(
            name = javaType.name(),
            `value` = javaType.`value`().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy