interface TableFieldOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.TableFieldOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_TableFieldOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.TableFieldOptionsProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.TableFieldOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » TableFieldOptionsProperty |
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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const tableFieldOptionsProperty: quicksight_mixins.CfnAnalysisPropsMixin.TableFieldOptionsProperty = {
order: ['order'],
pinnedFieldOptions: {
pinnedLeftFields: ['pinnedLeftFields'],
},
selectedFieldOptions: [{
customLabel: 'customLabel',
fieldId: 'fieldId',
urlStyling: {
imageConfiguration: {
sizingOptions: {
tableCellImageScalingConfiguration: 'tableCellImageScalingConfiguration',
},
},
linkConfiguration: {
content: {
customIconContent: {
icon: 'icon',
},
customTextContent: {
fontConfiguration: {
fontColor: 'fontColor',
fontDecoration: 'fontDecoration',
fontFamily: 'fontFamily',
fontSize: {
absolute: 'absolute',
relative: 'relative',
},
fontStyle: 'fontStyle',
fontWeight: {
name: 'name',
},
},
value: 'value',
},
},
target: 'target',
},
},
visibility: 'visibility',
width: 'width',
}],
transposedTableOptions: [{
columnIndex: 123,
columnType: 'columnType',
columnWidth: 'columnWidth',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| order? | string[] | The order of the field IDs that are configured as field options for a table visual. |
| pinned | IResolvable | Table | The settings for the pinned columns of a table visual. |
| selected | IResolvable | (IResolvable | Table)[] | The field options to be configured to a table. |
| transposed | IResolvable | (IResolvable | Transposed)[] | The TableOptions of a transposed table. |
order?
Type:
string[]
(optional)
The order of the field IDs that are configured as field options for a table visual.
pinnedFieldOptions?
Type:
IResolvable | Table
(optional)
The settings for the pinned columns of a table visual.
selectedFieldOptions?
Type:
IResolvable | (IResolvable | Table)[]
(optional)
The field options to be configured to a table.
transposedTableOptions?
Type:
IResolvable | (IResolvable | Transposed)[]
(optional)
The TableOptions of a transposed table.

.NET
Go
Java
Python
TypeScript