Interface CfnTemplate.DateTimePickerControlDisplayOptionsProperty

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

@Stability(Stable) public static interface CfnTemplate.DateTimePickerControlDisplayOptionsProperty 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.*;
 DateTimePickerControlDisplayOptionsProperty dateTimePickerControlDisplayOptionsProperty = DateTimePickerControlDisplayOptionsProperty.builder()
         .dateTimeFormat("dateTimeFormat")
         .infoIconLabelOptions(SheetControlInfoIconLabelOptionsProperty.builder()
                 .infoIconText("infoIconText")
                 .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();
 

See Also: