aws-cdk-lib.aws_quicksight.CfnTemplate.TableFieldOptionsProperty

interface TableFieldOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTemplate.TableFieldOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_TableFieldOptionsProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTemplate.TableFieldOptionsProperty
Pythonaws_cdk.aws_quicksight.CfnTemplate.TableFieldOptionsProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnTemplate » TableFieldOptionsProperty

The field options for a table visual.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const tableFieldOptionsProperty: quicksight.CfnTemplate.TableFieldOptionsProperty = {
  order: ['order'],
  selectedFieldOptions: [{
    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

NameTypeDescription
order?string[]The order of field IDs of the field options for a table visual.
selectedFieldOptions?IResolvable | IResolvable | TableFieldOptionProperty[]The selected field options for the table field options.

order?

Type: string[] (optional)

The order of field IDs of the field options for a table visual.


selectedFieldOptions?

Type: IResolvable | IResolvable | TableFieldOptionProperty[] (optional)

The selected field options for the table field options.