![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.outputs.DashboardBodySectionConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property content The configuration of content in a body section.
* @property pageBreakConfiguration The configuration of a page break for a section.
* @property sectionId The unique identifier of a body section.
* @property style The style options of a body section.
*/
public data class DashboardBodySectionConfiguration(
public val content: DashboardBodySectionContent,
public val pageBreakConfiguration: DashboardSectionPageBreakConfiguration? = null,
public val sectionId: String,
public val style: DashboardSectionStyle? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.DashboardBodySectionConfiguration): DashboardBodySectionConfiguration = DashboardBodySectionConfiguration(
content = javaType.content().let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.DashboardBodySectionContent.Companion.toKotlin(args0)
}),
pageBreakConfiguration = javaType.pageBreakConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.DashboardSectionPageBreakConfiguration.Companion.toKotlin(args0)
})
}).orElse(null),
sectionId = javaType.sectionId(),
style = javaType.style().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.DashboardSectionStyle.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy