com.pulumi.awsnative.quicksight.kotlin.outputs.AnalysisParameterTextFieldControl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@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 AnalysisParameterTextFieldControl(
public val displayOptions: AnalysisTextFieldControlDisplayOptions? = 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.AnalysisParameterTextFieldControl): AnalysisParameterTextFieldControl = AnalysisParameterTextFieldControl(
displayOptions = javaType.displayOptions().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.AnalysisTextFieldControlDisplayOptions.Companion.toKotlin(args0)
})
}).orElse(null),
parameterControlId = javaType.parameterControlId(),
sourceParameterName = javaType.sourceParameterName(),
title = javaType.title(),
)
}
}