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

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

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

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

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property delimiter The delimiter that is used to separate the lines in text.
 * @property displayOptions The display options of a control.
 * @property parameterControlId The ID of the `ParameterTextAreaControl` .
 * @property sourceParameterName The source parameter name of the `ParameterTextAreaControl` .
 * @property title The title of the `ParameterTextAreaControl` .
 */
public data class DashboardParameterTextAreaControl(
    public val delimiter: String? = null,
    public val displayOptions: DashboardTextAreaControlDisplayOptions? = 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.DashboardParameterTextAreaControl): DashboardParameterTextAreaControl = DashboardParameterTextAreaControl(
            delimiter = javaType.delimiter().map({ args0 -> args0 }).orElse(null),
            displayOptions = javaType.displayOptions().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.quicksight.kotlin.outputs.DashboardTextAreaControlDisplayOptions.Companion.toKotlin(args0)
                })
            }).orElse(null),
            parameterControlId = javaType.parameterControlId(),
            sourceParameterName = javaType.sourceParameterName(),
            title = javaType.title(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy