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

.NET
Go
Java
Python
TypeScript