![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.amplifyuibuilder.kotlin.outputs.FormInputValueProperty.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.amplifyuibuilder.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property bindingProperties The information to bind fields to data at runtime.
* @property concat A list of form properties to concatenate to create the value to assign to this field property.
* @property value The value to assign to the input field.
*/
public data class FormInputValueProperty(
public val bindingProperties: FormInputValuePropertyBindingProperties? = null,
public val concat: List? = null,
public val `value`: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.amplifyuibuilder.outputs.FormInputValueProperty): FormInputValueProperty = FormInputValueProperty(
bindingProperties = javaType.bindingProperties().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.amplifyuibuilder.kotlin.outputs.FormInputValuePropertyBindingProperties.Companion.toKotlin(args0)
})
}).orElse(null),
concat = javaType.concat().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.amplifyuibuilder.kotlin.outputs.FormInputValueProperty.Companion.toKotlin(args0)
})
}),
`value` = javaType.`value`().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy