interface LongFormatTextProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.LongFormatTextProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_LongFormatTextProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.LongFormatTextProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.LongFormatTextProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » LongFormatTextProperty |
The text format for a subtitle.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
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 longFormatTextProperty: quicksight_mixins.CfnDashboardPropsMixin.LongFormatTextProperty = {
plainText: 'plainText',
richText: 'richText',
};
Properties
| Name | Type | Description |
|---|---|---|
| plain | string | Plain text format. |
| rich | string | Rich text. |
plainText?
Type:
string
(optional)
Plain text format.
richText?
Type:
string
(optional)
Rich text.
Examples of rich text include bold, underline, and italics.

.NET
Go
Java
Python
TypeScript