Interface CfnDashboard.FontConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.FontConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.FontConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configures the display properties of the given text.
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.*; FontConfigurationProperty fontConfigurationProperty = FontConfigurationProperty.builder() .fontColor("fontColor") .fontDecoration("fontDecoration") .fontSize(FontSizeProperty.builder() .relative("relative") .build()) .fontStyle("fontStyle") .fontWeight(FontWeightProperty.builder() .name("name") .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.FontConfigurationProperty
static final class
An implementation forCfnDashboard.FontConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
Determines the color of the text.default String
Determines the appearance of decorative lines on the text.default Object
The option that determines the text display size.default String
Determines the text display face that is inherited by the given font family.default Object
The option that determines the text display weight, or boldness.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFontColor
Determines the color of the text. -
getFontDecoration
Determines the appearance of decorative lines on the text. -
getFontSize
The option that determines the text display size. -
getFontStyle
Determines the text display face that is inherited by the given font family. -
getFontWeight
The option that determines the text display weight, or boldness. -
builder
-