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

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

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

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

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property columnToMatch The column identifier that determines which column to look up for the source sheet control.
 * @property sourceSheetControlId The source sheet control ID of a `CascadingControlSource` .
 */
public data class TemplateCascadingControlSource(
    public val columnToMatch: TemplateColumnIdentifier? = null,
    public val sourceSheetControlId: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.TemplateCascadingControlSource): TemplateCascadingControlSource = TemplateCascadingControlSource(
            columnToMatch = javaType.columnToMatch().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateColumnIdentifier.Companion.toKotlin(args0)
                })
            }).orElse(null),
            sourceSheetControlId = javaType.sourceSheetControlId().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy