Interface CfnAnalysis.TableFieldOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.TableFieldOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.TableFieldOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The field options of a table visual.
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.*; TableFieldOptionsProperty tableFieldOptionsProperty = TableFieldOptionsProperty.builder() .order(List.of("order")) .pinnedFieldOptions(TablePinnedFieldOptionsProperty.builder() .pinnedLeftFields(List.of("pinnedLeftFields")) .build()) .selectedFieldOptions(List.of(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())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.TableFieldOptionsProperty
static final class
An implementation forCfnAnalysis.TableFieldOptionsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOrder
The order of the field IDs that are configured as field options for a table visual.- See Also:
-
getPinnedFieldOptions
The settings for the pinned columns of a table visual.- See Also:
-
getSelectedFieldOptions
The field options to be configured to a table.- See Also:
-
builder
-