interface ShortFormatTextProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.ShortFormatTextProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_ShortFormatTextProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.ShortFormatTextProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.ShortFormatTextProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » ShortFormatTextProperty |
The text format for the title.
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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const shortFormatTextProperty: quicksight.CfnTemplatePropsMixin.ShortFormatTextProperty = {
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