Interface CfnAnalysis.FilterDateTimePickerControlProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.FilterDateTimePickerControlProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.FilterDateTimePickerControlProperty
extends software.amazon.jsii.JsiiSerializable
A control from a date filter that is used to specify date and time.
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.*; FilterDateTimePickerControlProperty filterDateTimePickerControlProperty = FilterDateTimePickerControlProperty.builder() .filterControlId("filterControlId") .sourceFilterId("sourceFilterId") .title("title") // the properties below are optional .commitMode("commitMode") .displayOptions(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() .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 class
A builder forCfnAnalysis.FilterDateTimePickerControlProperty
static final class
An implementation forCfnAnalysis.FilterDateTimePickerControlProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The visibility configurationof the Apply button on aDateTimePickerControl
.default Object
The display options of a control.The ID of theFilterDateTimePickerControl
.The source filter ID of theFilterDateTimePickerControl
.getTitle()
The title of theFilterDateTimePickerControl
.default String
getType()
The type of theFilterDropDownControl
.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFilterControlId
The ID of theFilterDateTimePickerControl
.- See Also:
-
getSourceFilterId
The source filter ID of theFilterDateTimePickerControl
.- See Also:
-
getTitle
The title of theFilterDateTimePickerControl
.- See Also:
-
getCommitMode
The visibility configurationof the Apply button on aDateTimePickerControl
.- See Also:
-
getDisplayOptions
The display options of a control.- See Also:
-
getType
The type of theFilterDropDownControl
. Choose one of the following options:.MULTI_SELECT
: The user can select multiple entries from a dropdown menu.SINGLE_SELECT
: The user can select a single entry from a dropdown menu.
- See Also:
-
builder
-