Class CfnDashboardPropsMixin.TableFieldOptionsProperty
The field options of a table visual.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDashboardPropsMixin.TableFieldOptionsProperty : CfnDashboardPropsMixin.ITableFieldOptionsProperty
Syntax (vb)
Public Class CfnDashboardPropsMixin.TableFieldOptionsProperty Implements CfnDashboardPropsMixin.ITableFieldOptionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins;
var tableFieldOptionsProperty = new TableFieldOptionsProperty {
Order = new [] { "order" },
PinnedFieldOptions = new TablePinnedFieldOptionsProperty {
PinnedLeftFields = new [] { "pinnedLeftFields" }
},
SelectedFieldOptions = new [] { new TableFieldOptionProperty {
CustomLabel = "customLabel",
FieldId = "fieldId",
UrlStyling = new TableFieldURLConfigurationProperty {
ImageConfiguration = new TableFieldImageConfigurationProperty {
SizingOptions = new TableCellImageSizingConfigurationProperty {
TableCellImageScalingConfiguration = "tableCellImageScalingConfiguration"
}
},
LinkConfiguration = new TableFieldLinkConfigurationProperty {
Content = new TableFieldLinkContentConfigurationProperty {
CustomIconContent = new TableFieldCustomIconContentProperty {
Icon = "icon"
},
CustomTextContent = new TableFieldCustomTextContentProperty {
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontFamily = "fontFamily",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Value = "value"
}
},
Target = "target"
}
},
Visibility = "visibility",
Width = "width"
} },
TransposedTableOptions = new [] { new TransposedTableOptionProperty {
ColumnIndex = 123,
ColumnType = "columnType",
ColumnWidth = "columnWidth"
} }
};
Synopsis
Constructors
| TableFieldOptionsProperty() | The field options of a table visual. |
Properties
| Order | The order of the field IDs that are configured as field options for a table visual. |
| PinnedFieldOptions | The settings for the pinned columns of a table visual. |
| SelectedFieldOptions | The field options to be configured to a table. |
| TransposedTableOptions | The |
Constructors
TableFieldOptionsProperty()
The field options of a table visual.
public TableFieldOptionsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins;
var tableFieldOptionsProperty = new TableFieldOptionsProperty {
Order = new [] { "order" },
PinnedFieldOptions = new TablePinnedFieldOptionsProperty {
PinnedLeftFields = new [] { "pinnedLeftFields" }
},
SelectedFieldOptions = new [] { new TableFieldOptionProperty {
CustomLabel = "customLabel",
FieldId = "fieldId",
UrlStyling = new TableFieldURLConfigurationProperty {
ImageConfiguration = new TableFieldImageConfigurationProperty {
SizingOptions = new TableCellImageSizingConfigurationProperty {
TableCellImageScalingConfiguration = "tableCellImageScalingConfiguration"
}
},
LinkConfiguration = new TableFieldLinkConfigurationProperty {
Content = new TableFieldLinkContentConfigurationProperty {
CustomIconContent = new TableFieldCustomIconContentProperty {
Icon = "icon"
},
CustomTextContent = new TableFieldCustomTextContentProperty {
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontFamily = "fontFamily",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Value = "value"
}
},
Target = "target"
}
},
Visibility = "visibility",
Width = "width"
} },
TransposedTableOptions = new [] { new TransposedTableOptionProperty {
ColumnIndex = 123,
ColumnType = "columnType",
ColumnWidth = "columnWidth"
} }
};
Properties
Order
The order of the field IDs that are configured as field options for a table visual.
public string[]? Order { get; set; }
Property Value
string[]
Remarks
PinnedFieldOptions
The settings for the pinned columns of a table visual.
public object? PinnedFieldOptions { get; set; }
Property Value
Remarks
SelectedFieldOptions
The field options to be configured to a table.
public object? SelectedFieldOptions { get; set; }
Property Value
Remarks
TransposedTableOptions
The TableOptions of a transposed table.
public object? TransposedTableOptions { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnDashboardPropsMixin.ITransposedTableOptionProperty)[]