Interface CfnAnalysis.TableFieldURLConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.TableFieldURLConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.TableFieldURLConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The URL configuration for a table field.
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.*; TableFieldURLConfigurationProperty tableFieldURLConfigurationProperty = TableFieldURLConfigurationProperty.builder() .imageConfiguration(TableFieldImageConfigurationProperty.builder() .sizingOptions(TableCellImageSizingConfigurationProperty.builder() .tableCellImageScalingConfiguration("tableCellImageScalingConfiguration") .build()) .build()) .linkConfiguration(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()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.TableFieldURLConfigurationProperty
static final class
An implementation forCfnAnalysis.TableFieldURLConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getImageConfiguration
The image configuration of a table field URL.- See Also:
-
getLinkConfiguration
The link configuration of a table field URL.- See Also:
-
builder
-