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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.TableFieldLinkContentConfigurationProperty
static final class
An implementation forCfnTemplate.TableFieldLinkContentConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCustomIconContent
The custom icon content for the table link content configuration. -
getCustomTextContent
The custom text content (value, font configuration) for the table link content configuration. -
builder
-