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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.TableFieldLinkConfigurationProperty
static final class
An implementation forCfnAnalysis.TableFieldLinkConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The URL content (text, icon) for the table link configuration.The URL target (new tab, new window, same tab) for the table link configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContent
The URL content (text, icon) for the table link configuration.- See Also:
-
getTarget
The URL target (new tab, new window, same tab) for the table link configuration.- See Also:
-
builder
-