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

com.pulumi.awsnative.quicksight.kotlin.outputs.DashboardParameterTextFieldControl.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.quicksight.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property displayOptions The display options of a control.
 * @property parameterControlId The ID of the `ParameterTextFieldControl` .
 * @property sourceParameterName The source parameter name of the `ParameterTextFieldControl` .
 * @property title The title of the `ParameterTextFieldControl` .
 */
public data class DashboardParameterTextFieldControl(
    public val displayOptions: DashboardTextFieldControlDisplayOptions? = null,
    public val parameterControlId: String,
    public val sourceParameterName: String,
    public val title: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.DashboardParameterTextFieldControl): DashboardParameterTextFieldControl = DashboardParameterTextFieldControl(
            displayOptions = javaType.displayOptions().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.quicksight.kotlin.outputs.DashboardTextFieldControlDisplayOptions.Companion.toKotlin(args0)
                })
            }).orElse(null),
            parameterControlId = javaType.parameterControlId(),
            sourceParameterName = javaType.sourceParameterName(),
            title = javaType.title(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy