
com.pulumi.awsnative.amplifyuibuilder.kotlin.outputs.ComponentBindingPropertiesValue.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.amplifyuibuilder.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property bindingProperties Describes the properties to customize with data at runtime.
* @property defaultValue The default value of the property.
* @property type The property type.
*/
public data class ComponentBindingPropertiesValue(
public val bindingProperties: ComponentBindingPropertiesValueProperties? = null,
public val defaultValue: String? = null,
public val type: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.amplifyuibuilder.outputs.ComponentBindingPropertiesValue): ComponentBindingPropertiesValue = ComponentBindingPropertiesValue(
bindingProperties = javaType.bindingProperties().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.amplifyuibuilder.kotlin.outputs.ComponentBindingPropertiesValueProperties.Companion.toKotlin(args0)
})
}).orElse(null),
defaultValue = javaType.defaultValue().map({ args0 -> args0 }).orElse(null),
type = javaType.type().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy