Interface CfnAnalysis.TableFieldLinkConfigurationProperty

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

@Stability(Stable) public static interface CfnAnalysis.TableFieldLinkConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The link configuration of a table field URL.

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.*;
 TableFieldLinkConfigurationProperty tableFieldLinkConfigurationProperty = TableFieldLinkConfigurationProperty.builder()
         .content(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())
         .target("target")
         .build();
 

See Also: