Interface CfnAnalysis.FontConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.FontConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.FontConfigurationProperty
static final class
An implementation forCfnAnalysis.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.- See Also:
-
getFontDecoration
Determines the appearance of decorative lines on the text.- See Also:
-
getFontSize
The option that determines the text display size.- See Also:
-
getFontStyle
Determines the text display face that is inherited by the given font family.- See Also:
-
getFontWeight
The option that determines the text display weight, or boldness.- See Also:
-
builder
-