@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:18.794Z") @Stability(value=Stable) public interface CfnThemeProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
CfnThemeProps cfnThemeProps = CfnThemeProps.builder()
.awsAccountId("awsAccountId")
.themeId("themeId")
// the properties below are optional
.baseThemeId("baseThemeId")
.configuration(ThemeConfigurationProperty.builder()
.dataColorPalette(DataColorPaletteProperty.builder()
.colors(List.of("colors"))
.emptyFillColor("emptyFillColor")
.minMaxGradient(List.of("minMaxGradient"))
.build())
.sheet(SheetStyleProperty.builder()
.tile(TileStyleProperty.builder()
.border(BorderStyleProperty.builder()
.show(false)
.build())
.build())
.tileLayout(TileLayoutStyleProperty.builder()
.gutter(GutterStyleProperty.builder()
.show(false)
.build())
.margin(MarginStyleProperty.builder()
.show(false)
.build())
.build())
.build())
.typography(TypographyProperty.builder()
.fontFamilies(List.of(FontProperty.builder()
.fontFamily("fontFamily")
.build()))
.build())
.uiColorPalette(UIColorPaletteProperty.builder()
.accent("accent")
.accentForeground("accentForeground")
.danger("danger")
.dangerForeground("dangerForeground")
.dimension("dimension")
.dimensionForeground("dimensionForeground")
.measure("measure")
.measureForeground("measureForeground")
.primaryBackground("primaryBackground")
.primaryForeground("primaryForeground")
.secondaryBackground("secondaryBackground")
.secondaryForeground("secondaryForeground")
.success("success")
.successForeground("successForeground")
.warning("warning")
.warningForeground("warningForeground")
.build())
.build())
.name("name")
.permissions(List.of(ResourcePermissionProperty.builder()
.actions(List.of("actions"))
.principal("principal")
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.versionDescription("versionDescription")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnThemeProps.Builder
A builder for
CfnThemeProps |
static class |
CfnThemeProps.Jsii$Proxy
An implementation for
CfnThemeProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnThemeProps.Builder |
builder() |
String |
getAwsAccountId()
`AWS::QuickSight::Theme.AwsAccountId`.
|
default String |
getBaseThemeId()
`AWS::QuickSight::Theme.BaseThemeId`.
|
default Object |
getConfiguration()
`AWS::QuickSight::Theme.Configuration`.
|
default String |
getName()
`AWS::QuickSight::Theme.Name`.
|
default Object |
getPermissions()
`AWS::QuickSight::Theme.Permissions`.
|
default List<CfnTag> |
getTags()
`AWS::QuickSight::Theme.Tags`.
|
String |
getThemeId()
`AWS::QuickSight::Theme.ThemeId`.
|
default String |
getVersionDescription()
`AWS::QuickSight::Theme.VersionDescription`.
|
@Stability(value=Stable) @NotNull String getAwsAccountId()
@Stability(value=Stable) @Nullable default String getBaseThemeId()
@Stability(value=Stable) @Nullable default Object getConfiguration()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default Object getPermissions()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @NotNull String getThemeId()
@Stability(value=Stable) @Nullable default String getVersionDescription()
@Stability(value=Stable) static CfnThemeProps.Builder builder()
CfnThemeProps.Builder of CfnThemePropsCopyright © 2021. All rights reserved.