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

io.burkard.cdk.services.quicksight.cfnTheme.ThemeConfigurationProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.quicksight.cfnTheme

@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object ThemeConfigurationProperty {

  def apply(
    dataColorPalette: Option[software.amazon.awscdk.services.quicksight.CfnTheme.DataColorPaletteProperty] = None,
    sheet: Option[software.amazon.awscdk.services.quicksight.CfnTheme.SheetStyleProperty] = None,
    typography: Option[software.amazon.awscdk.services.quicksight.CfnTheme.TypographyProperty] = None,
    uiColorPalette: Option[software.amazon.awscdk.services.quicksight.CfnTheme.UIColorPaletteProperty] = None
  ): software.amazon.awscdk.services.quicksight.CfnTheme.ThemeConfigurationProperty =
    (new software.amazon.awscdk.services.quicksight.CfnTheme.ThemeConfigurationProperty.Builder)
      .dataColorPalette(dataColorPalette.orNull)
      .sheet(sheet.orNull)
      .typography(typography.orNull)
      .uiColorPalette(uiColorPalette.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy