interface VisualTitleLabelOptionsProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.VisualTitleLabelOptionsProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.VisualTitleLabelOptionsProperty | 
  Python | aws_cdk.aws_quicksight.CfnTemplate.VisualTitleLabelOptionsProperty | 
  TypeScript  | @aws-cdk/aws-quicksight » CfnTemplate » VisualTitleLabelOptionsProperty | 
The title label options for a visual.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const visualTitleLabelOptionsProperty: quicksight.CfnTemplate.VisualTitleLabelOptionsProperty = {
  formatText: {
    plainText: 'plainText',
    richText: 'richText',
  },
  visibility: 'visibility',
};
Properties
| Name | Type | Description | 
|---|---|---|
| format | IResolvable | Short | The short text format of the title label, such as plain text or rich text. | 
| visibility? | string | The visibility of the title label. | 
formatText?
Type:
IResolvable | Short
(optional)
The short text format of the title label, such as plain text or rich text.
visibility?
Type:
string
(optional)
The visibility of the title label.

 .NET
 Java
 Python
 TypeScript