aws-cdk-lib.aws_quicksight.CfnTemplate.TableFieldLinkConfigurationProperty

interface TableFieldLinkConfigurationProperty

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

The link configuration of a table field URL.

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 tableFieldLinkConfigurationProperty: quicksight.CfnTemplate.TableFieldLinkConfigurationProperty = {
  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',
};

Properties

NameTypeDescription
contentIResolvable | TableFieldLinkContentConfigurationPropertyThe URL content (text, icon) for the table link configuration.
targetstringThe URL target (new tab, new window, same tab) for the table link configuration.

content

Type: IResolvable | TableFieldLinkContentConfigurationProperty

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


target

Type: string

The URL target (new tab, new window, same tab) for the table link configuration.