com.pulumi.awsnative.quicksight.kotlin.outputs.AnalysisDefaultNewSheetConfiguration.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 com.pulumi.awsnative.quicksight.kotlin.enums.AnalysisSheetContentType
import kotlin.Suppress
/**
*
* @property interactiveLayoutConfiguration The options that determine the default settings for interactive layout configuration.
* @property paginatedLayoutConfiguration The options that determine the default settings for a paginated layout configuration.
* @property sheetContentType The option that determines the sheet content type.
*/
public data class AnalysisDefaultNewSheetConfiguration(
public val interactiveLayoutConfiguration: AnalysisDefaultInteractiveLayoutConfiguration? = null,
public val paginatedLayoutConfiguration: AnalysisDefaultPaginatedLayoutConfiguration? = null,
public val sheetContentType: AnalysisSheetContentType? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.AnalysisDefaultNewSheetConfiguration): AnalysisDefaultNewSheetConfiguration = AnalysisDefaultNewSheetConfiguration(
interactiveLayoutConfiguration = javaType.interactiveLayoutConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.AnalysisDefaultInteractiveLayoutConfiguration.Companion.toKotlin(args0)
})
}).orElse(null),
paginatedLayoutConfiguration = javaType.paginatedLayoutConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.AnalysisDefaultPaginatedLayoutConfiguration.Companion.toKotlin(args0)
})
}).orElse(null),
sheetContentType = javaType.sheetContentType().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.enums.AnalysisSheetContentType.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}