Interface CfnTemplate.FontConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTemplate.FontConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnTemplate

@Stability(Stable) public static interface CfnTemplate.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: