Interface CfnDashboardPropsMixin.TableFieldLinkConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboardPropsMixin.TableFieldLinkConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDashboardPropsMixin
@Stability(Stable)
public static interface CfnDashboardPropsMixin.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.mixins.preview.services.quicksight.mixins.*;
TableFieldLinkConfigurationProperty tableFieldLinkConfigurationProperty = TableFieldLinkConfigurationProperty.builder()
.content(TableFieldLinkContentConfigurationProperty.builder()
.customIconContent(TableFieldCustomIconContentProperty.builder()
.icon("icon")
.build())
.customTextContent(TableFieldCustomTextContentProperty.builder()
.fontConfiguration(FontConfigurationProperty.builder()
.fontColor("fontColor")
.fontDecoration("fontDecoration")
.fontFamily("fontFamily")
.fontSize(FontSizeProperty.builder()
.absolute("absolute")
.relative("relative")
.build())
.fontStyle("fontStyle")
.fontWeight(FontWeightProperty.builder()
.name("name")
.build())
.build())
.value("value")
.build())
.build())
.target("target")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDashboardPropsMixin.TableFieldLinkConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContent
The URL content (text, icon) for the table link configuration.Returns union: either
IResolvableorCfnDashboardPropsMixin.TableFieldLinkContentConfigurationProperty- See Also:
-
getTarget
The URL target (new tab, new window, same tab) for the table link configuration.- See Also:
-
builder
@Stability(Stable) static CfnDashboardPropsMixin.TableFieldLinkConfigurationProperty.Builder builder()
-