Interface CfnTemplate.TableFieldURLConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.TableFieldURLConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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")
.fontFamily("fontFamily")
.fontSize(FontSizeProperty.builder()
.absolute("absolute")
.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.TableFieldURLConfigurationPropertystatic final classAn implementation forCfnTemplate.TableFieldURLConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getImageConfiguration
The image configuration of a table field URL.Returns union: either
IResolvableorCfnTemplate.TableFieldImageConfigurationProperty- See Also:
-
getLinkConfiguration
The link configuration of a table field URL.Returns union: either
IResolvableorCfnTemplate.TableFieldLinkConfigurationProperty- See Also:
-
builder
-