interface TableFieldLinkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.TableFieldLinkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_TableFieldLinkConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.TableFieldLinkConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.TableFieldLinkConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » 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/cfn-property-mixins';
const tableFieldLinkConfigurationProperty: quicksight.CfnTemplatePropsMixin.TableFieldLinkConfigurationProperty = {
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',
};
Properties
| Name | Type | Description |
|---|---|---|
| content? | IResolvable | Table | The URL content (text, icon) for the table link configuration. |
| target? | string | The URL target (new tab, new window, same tab) for the table link configuration. |
content?
Type:
IResolvable | Table
(optional)
The URL content (text, icon) for the table link configuration.
target?
Type:
string
(optional)
The URL target (new tab, new window, same tab) for the table link configuration.

.NET
Go
Java
Python
TypeScript