Interface CfnTemplate.DefaultDateTimePickerControlOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.DefaultDateTimePickerControlOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.DefaultDateTimePickerControlOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The default options that correspond to the filter control type of a
DateTimePicker .
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;
DefaultDateTimePickerControlOptionsProperty defaultDateTimePickerControlOptionsProperty = DefaultDateTimePickerControlOptionsProperty.builder()
.commitMode("commitMode")
.displayOptions(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())
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.DefaultDateTimePickerControlOptionsPropertystatic final classAn implementation forCfnTemplate.DefaultDateTimePickerControlOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCommitMode
The visibility configuration of the Apply button on aDateTimePickerControl.- See Also:
-
getDisplayOptions
The display options of a control.Returns union: either
IResolvableorCfnTemplate.DateTimePickerControlDisplayOptionsProperty- See Also:
-
getType
The date time picker type of theDefaultDateTimePickerControlOptions. Choose one of the following options:.SINGLE_VALUED: The filter condition is a fixed date.DATE_RANGE: The filter condition is a date time range.
- See Also:
-
builder
-