Interface CfnTemplate.TableFieldCustomTextContentProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.TableFieldCustomTextContentProperty.Jsii$Proxy
- Enclosing class:
- CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.TableFieldCustomTextContentProperty
extends software.amazon.jsii.JsiiSerializable
The custom text content (value, font configuration) for the table link content 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.*;
TableFieldCustomTextContentProperty tableFieldCustomTextContentProperty = 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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.TableFieldCustomTextContentPropertystatic final classAn implementation forCfnTemplate.TableFieldCustomTextContentProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFontConfiguration
The font configuration of the custom text content for the table URL link content. -
getValue
The string value of the custom text content for the table URL link content. -
builder
-