Interface CfnTemplate.TableFieldLinkContentConfigurationProperty

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

@Stability(Stable) public static interface CfnTemplate.TableFieldLinkContentConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The URL content (text, icon) for the table link 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.*;
 TableFieldLinkContentConfigurationProperty tableFieldLinkContentConfigurationProperty = TableFieldLinkContentConfigurationProperty.builder()
         .customIconContent(TableFieldCustomIconContentProperty.builder()
                 .icon("icon")
                 .build())
         .customTextContent(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())
         .build();
 

See Also: