interface TableFieldLinkContentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.TableFieldLinkContentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_TableFieldLinkContentConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.TableFieldLinkContentConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.TableFieldLinkContentConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const tableFieldLinkContentConfigurationProperty: quicksight_mixins.CfnAnalysisPropsMixin.TableFieldLinkContentConfigurationProperty = {
customIconContent: {
icon: 'icon',
},
customTextContent: {
fontConfiguration: {
fontColor: 'fontColor',
fontDecoration: 'fontDecoration',
fontFamily: 'fontFamily',
fontSize: {
absolute: 'absolute',
relative: 'relative',
},
fontStyle: 'fontStyle',
fontWeight: {
name: 'name',
},
},
value: 'value',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | IResolvable | Table | The custom icon content for the table link content configuration. |
| custom | IResolvable | Table | The custom text content (value, font configuration) for the table link content configuration. |
customIconContent?
Type:
IResolvable | Table
(optional)
The custom icon content for the table link content configuration.
customTextContent?
Type:
IResolvable | Table
(optional)
The custom text content (value, font configuration) for the table link content configuration.

.NET
Go
Java
Python
TypeScript