aws-cdk-lib.aws_quicksight.CfnTemplate.TableFieldURLConfigurationProperty

interface TableFieldURLConfigurationProperty

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

The URL configuration 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const tableFieldURLConfigurationProperty: quicksight.CfnTemplate.TableFieldURLConfigurationProperty = {
  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',
  },
};

Properties

NameTypeDescription
imageConfiguration?IResolvable | TableFieldImageConfigurationPropertyThe image configuration of a table field URL.
linkConfiguration?IResolvable | TableFieldLinkConfigurationPropertyThe link configuration of a table field URL.

imageConfiguration?

Type: IResolvable | TableFieldImageConfigurationProperty (optional)

The image configuration of a table field URL.


linkConfiguration?

Type: IResolvable | TableFieldLinkConfigurationProperty (optional)

The link configuration of a table field URL.