Interface CfnAnalysis.TableFieldOptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.TableFieldOptionProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.TableFieldOptionProperty
extends software.amazon.jsii.JsiiSerializable
The options 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.*; TableFieldOptionProperty tableFieldOptionProperty = TableFieldOptionProperty.builder() .fieldId("fieldId") // the properties below are optional .customLabel("customLabel") .urlStyling(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()) .visibility("visibility") .width("width") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.TableFieldOptionProperty
static final class
An implementation forCfnAnalysis.TableFieldOptionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFieldId
The field ID for a table field.- See Also:
-
getCustomLabel
The custom label for a table field.- See Also:
-
getUrlStyling
The URL configuration for a table field.- See Also:
-
getVisibility
The visibility of a table field.- See Also:
-
getWidth
The width for a table field.- See Also:
-
builder
-