Interface CfnTemplate.TableCellStyleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.TableCellStyleProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.TableCellStyleProperty
extends software.amazon.jsii.JsiiSerializable
The table cell style for a cell in pivot table or table visual.
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.*; TableCellStyleProperty tableCellStyleProperty = TableCellStyleProperty.builder() .backgroundColor("backgroundColor") .border(GlobalTableBorderOptionsProperty.builder() .sideSpecificBorder(TableSideBorderOptionsProperty.builder() .bottom(TableBorderOptionsProperty.builder() .color("color") .style("style") .thickness(123) .build()) .innerHorizontal(TableBorderOptionsProperty.builder() .color("color") .style("style") .thickness(123) .build()) .innerVertical(TableBorderOptionsProperty.builder() .color("color") .style("style") .thickness(123) .build()) .left(TableBorderOptionsProperty.builder() .color("color") .style("style") .thickness(123) .build()) .right(TableBorderOptionsProperty.builder() .color("color") .style("style") .thickness(123) .build()) .top(TableBorderOptionsProperty.builder() .color("color") .style("style") .thickness(123) .build()) .build()) .uniformBorder(TableBorderOptionsProperty.builder() .color("color") .style("style") .thickness(123) .build()) .build()) .fontConfiguration(FontConfigurationProperty.builder() .fontColor("fontColor") .fontDecoration("fontDecoration") .fontSize(FontSizeProperty.builder() .relative("relative") .build()) .fontStyle("fontStyle") .fontWeight(FontWeightProperty.builder() .name("name") .build()) .build()) .height(123) .horizontalTextAlignment("horizontalTextAlignment") .textWrap("textWrap") .verticalTextAlignment("verticalTextAlignment") .visibility("visibility") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.TableCellStyleProperty
static final class
An implementation forCfnTemplate.TableCellStyleProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The background color for the table cells.default Object
The borders for the table cells.default Object
The font configuration of the table cells.default Number
The height color for the table cells.default String
The horizontal text alignment (left, center, right, auto) for the table cells.default String
The text wrap (none, wrap) for the table cells.default String
The vertical text alignment (top, middle, bottom) for the table cells.default String
The visibility of the table cells.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBackgroundColor
The background color for the table cells.- See Also:
-
getBorder
The borders for the table cells.- See Also:
-
getFontConfiguration
The font configuration of the table cells.- See Also:
-
getHeight
The height color for the table cells.- See Also:
-
getHorizontalTextAlignment
The horizontal text alignment (left, center, right, auto) for the table cells.- See Also:
-
getTextWrap
The text wrap (none, wrap) for the table cells.- See Also:
-
getVerticalTextAlignment
The vertical text alignment (top, middle, bottom) for the table cells.- See Also:
-
getVisibility
The visibility of the table cells.- See Also:
-
builder
-