aws-cdk-lib.aws_quicksight.CfnDashboard.TableFieldLinkContentConfigurationProperty

interface TableFieldLinkContentConfigurationProperty

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

The URL content (text, icon) for the table link configuration.

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 tableFieldLinkContentConfigurationProperty: quicksight.CfnDashboard.TableFieldLinkContentConfigurationProperty = {
  customIconContent: {
    icon: 'icon',
  },
  customTextContent: {
    fontConfiguration: {
      fontColor: 'fontColor',
      fontDecoration: 'fontDecoration',
      fontSize: {
        relative: 'relative',
      },
      fontStyle: 'fontStyle',
      fontWeight: {
        name: 'name',
      },
    },

    // the properties below are optional
    value: 'value',
  },
};

Properties

NameTypeDescription
customIconContent?IResolvable | TableFieldCustomIconContentPropertyThe custom icon content for the table link content configuration.
customTextContent?IResolvable | TableFieldCustomTextContentPropertyThe custom text content (value, font configuration) for the table link content configuration.

customIconContent?

Type: IResolvable | TableFieldCustomIconContentProperty (optional)

The custom icon content for the table link content configuration.


customTextContent?

Type: IResolvable | TableFieldCustomTextContentProperty (optional)

The custom text content (value, font configuration) for the table link content configuration.