Interface CfnAnalysis.TextFieldControlDisplayOptionsProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnAnalysis.TextFieldControlDisplayOptionsProperty.Jsii$Proxy
- Enclosing class:
- CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.TextFieldControlDisplayOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The display options of a control.
 
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.*;
 TextFieldControlDisplayOptionsProperty textFieldControlDisplayOptionsProperty = TextFieldControlDisplayOptionsProperty.builder()
         .placeholderOptions(TextControlPlaceholderOptionsProperty.builder()
                 .visibility("visibility")
                 .build())
         .titleOptions(LabelOptionsProperty.builder()
                 .customLabel("customLabel")
                 .fontConfiguration(FontConfigurationProperty.builder()
                         .fontColor("fontColor")
                         .fontDecoration("fontDecoration")
                         .fontSize(FontSizeProperty.builder()
                                 .relative("relative")
                                 .build())
                         .fontStyle("fontStyle")
                         .fontWeight(FontWeightProperty.builder()
                                 .name("name")
                                 .build())
                         .build())
                 .visibility("visibility")
                 .build())
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.TextFieldControlDisplayOptionsPropertystatic final classAn implementation forCfnAnalysis.TextFieldControlDisplayOptionsProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getPlaceholderOptionsThe configuration of the placeholder options in a text field control.
- 
getTitleOptionsThe options to configure the title visibility, name, and font size.
- 
builder
 
-