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.*;
Object dateIconVisibility;
Object helperTextVisibility;
DateTimePickerControlDisplayOptionsProperty dateTimePickerControlDisplayOptionsProperty = DateTimePickerControlDisplayOptionsProperty.builder()
.dateIconVisibility(dateIconVisibility)
.dateTimeFormat("dateTimeFormat")
.helperTextVisibility(helperTextVisibility)
.infoIconLabelOptions(SheetControlInfoIconLabelOptionsProperty.builder()
.infoIconText("infoIconText")
.visibility("visibility")
.build())
.titleOptions(LabelOptionsProperty.builder()
.customLabel("customLabel")
.fontConfiguration(FontConfigurationProperty.builder()
.fontColor("fontColor")
.fontDecoration("fontDecoration")
.fontFamily("fontFamily")
.fontSize(FontSizeProperty.builder()
.absolute("absolute")
.relative("relative")
.build())
.fontStyle("fontStyle")
.fontWeight(FontWeightProperty.builder()
.name("name")
.build())
.build())
.visibility("visibility")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.DateTimePickerControlDisplayOptionsPropertystatic final classAn implementation forCfnTemplate.DateTimePickerControlDisplayOptionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe date icon visibility of theDateTimePickerControlDisplayOptions.default StringCustomize how dates are formatted in controls.default ObjectThe helper text visibility of theDateTimePickerControlDisplayOptions.default ObjectThe configuration of info icon label options.default ObjectThe options to configure the title visibility, name, and font size.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDateIconVisibility
The date icon visibility of theDateTimePickerControlDisplayOptions.- See Also:
-
getDateTimeFormat
Customize how dates are formatted in controls.- See Also:
-
getHelperTextVisibility
The helper text visibility of theDateTimePickerControlDisplayOptions.- See Also:
-
getInfoIconLabelOptions
The configuration of info icon label options.Returns union: either
IResolvableorCfnTemplate.SheetControlInfoIconLabelOptionsProperty- See Also:
-
getTitleOptions
The options to configure the title visibility, name, and font size.Returns union: either
IResolvableorCfnTemplate.LabelOptionsProperty- See Also:
-
builder
-