Interface CfnAnalysis.VisualSubtitleLabelOptionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnalysis.VisualSubtitleLabelOptionsProperty.Jsii$Proxy
Enclosing class:
CfnAnalysis

@Stability(Stable) public static interface CfnAnalysis.VisualSubtitleLabelOptionsProperty extends software.amazon.jsii.JsiiSerializable
The subtitle 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 software.amazon.awscdk.services.quicksight.*;
 VisualSubtitleLabelOptionsProperty visualSubtitleLabelOptionsProperty = VisualSubtitleLabelOptionsProperty.builder()
         .formatText(LongFormatTextProperty.builder()
                 .plainText("plainText")
                 .richText("richText")
                 .build())
         .visibility("visibility")
         .build();
 

See Also: