Interface CfnDashboard.ITableFieldOptionProperty
The options for a table field.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ITableFieldOptionProperty
Syntax (vb)
Public Interface ITableFieldOptionProperty
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.AWS.QuickSight;
var tableFieldOptionProperty = new TableFieldOptionProperty {
FieldId = "fieldId",
// the properties below are optional
CustomLabel = "customLabel",
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",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
// the properties below are optional
Value = "value"
}
},
Target = "target"
}
},
Visibility = "visibility",
Width = "width"
};
Synopsis
Properties
CustomLabel | The custom label for a table field. |
FieldId | The field ID for a table field. |
UrlStyling | The URL configuration for a table field. |
Visibility | The visibility of a table field. |
Width | The width for a table field. |
Properties
CustomLabel
The custom label for a table field.
virtual string CustomLabel { get; }
Property Value
System.String
Remarks
FieldId
The field ID for a table field.
string FieldId { get; }
Property Value
System.String
Remarks
UrlStyling
The URL configuration for a table field.
virtual object UrlStyling { get; }
Property Value
System.Object
Remarks
Visibility
The visibility of a table field.
virtual string Visibility { get; }
Property Value
System.String
Remarks
Width
The width for a table field.
virtual string Width { get; }
Property Value
System.String