Interface CfnAnalysis.TableFieldCustomTextContentProperty

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

@Stability(Stable) public static interface CfnAnalysis.TableFieldCustomTextContentProperty extends software.amazon.jsii.JsiiSerializable
The custom text content (value, font configuration) for the table link content configuration.

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.*;
 TableFieldCustomTextContentProperty tableFieldCustomTextContentProperty = TableFieldCustomTextContentProperty.builder()
         .fontConfiguration(FontConfigurationProperty.builder()
                 .fontColor("fontColor")
                 .fontDecoration("fontDecoration")
                 .fontSize(FontSizeProperty.builder()
                         .relative("relative")
                         .build())
                 .fontStyle("fontStyle")
                 .fontWeight(FontWeightProperty.builder()
                         .name("name")
                         .build())
                 .build())
         // the properties below are optional
         .value("value")
         .build();
 

See Also: