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

com.pulumi.awsnative.amplifyuibuilder.kotlin.outputs.FormInputValuePropertyBindingProperties.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.amplifyuibuilder.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property field The data field to bind the property to.
 * @property property The form property to bind to the data field.
 */
public data class FormInputValuePropertyBindingProperties(
    public val `field`: String? = null,
    public val `property`: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.amplifyuibuilder.outputs.FormInputValuePropertyBindingProperties): FormInputValuePropertyBindingProperties = FormInputValuePropertyBindingProperties(
            `field` = javaType.`field`().map({ args0 -> args0 }).orElse(null),
            `property` = javaType.`property`(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy