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

com.pulumi.awsnative.nimblestudio.kotlin.outputs.StudioComponentScriptParameterKeyValue.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.nimblestudio.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * 

A parameter for a studio component script, in the form of a key:value pair.

* @property key

A script parameter key.

* @property value

A script parameter value.

*/ public data class StudioComponentScriptParameterKeyValue( public val key: String? = null, public val `value`: String? = null, ) { public companion object { public fun toKotlin(javaType: com.pulumi.awsnative.nimblestudio.outputs.StudioComponentScriptParameterKeyValue): StudioComponentScriptParameterKeyValue = StudioComponentScriptParameterKeyValue( key = javaType.key().map({ args0 -> args0 }).orElse(null), `value` = javaType.`value`().map({ args0 -> args0 }).orElse(null), ) } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy