interface TableFieldOptionProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.TableFieldOptionProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.TableFieldOptionProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.TableFieldOptionProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnTemplate » TableFieldOptionProperty |
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 * as quicksight from '@aws-cdk/aws-quicksight';
const tableFieldOptionProperty: quicksight.CfnTemplate.TableFieldOptionProperty = {
fieldId: 'fieldId',
// the properties below are optional
customLabel: 'customLabel',
urlStyling: {
imageConfiguration: {
sizingOptions: {
tableCellImageScalingConfiguration: 'tableCellImageScalingConfiguration',
},
},
linkConfiguration: {
content: {
customIconContent: {
icon: 'icon',
},
customTextContent: {
fontConfiguration: {
fontColor: 'fontColor',
fontDecoration: 'fontDecoration',
fontSize: {
relative: 'relative',
},
fontStyle: 'fontStyle',
fontWeight: {
name: 'name',
},
},
// the properties below are optional
value: 'value',
},
},
target: 'target',
},
},
visibility: 'visibility',
width: 'width',
};
Properties
Name | Type | Description |
---|---|---|
field | string | The field ID for a table field. |
custom | string | The custom label for a table field. |
url | IResolvable | Table | The URL configuration for a table field. |
visibility? | string | The visibility of a table field. |
width? | string | The width for a table field. |
fieldId
Type:
string
The field ID for a table field.
customLabel?
Type:
string
(optional)
The custom label for a table field.
urlStyling?
Type:
IResolvable
|
Table
(optional)
The URL configuration for a table field.
visibility?
Type:
string
(optional)
The visibility of a table field.
width?
Type:
string
(optional)
The width for a table field.