Interface CfnTemplate.FilterDateTimePickerControlProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.FilterDateTimePickerControlProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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
.displayOptions(DateTimePickerControlDisplayOptionsProperty.builder()
.dateTimeFormat("dateTimeFormat")
.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())
.type("type")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.FilterDateTimePickerControlPropertystatic final classAn implementation forCfnTemplate.FilterDateTimePickerControlProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe display options of a control.The ID of theFilterDateTimePickerControl.The source filter ID of theFilterDateTimePickerControl.getTitle()The title of theFilterDateTimePickerControl.default StringgetType()The date time picker type of aFilterDateTimePickerControl.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFilterControlId
The ID of theFilterDateTimePickerControl. -
getSourceFilterId
The source filter ID of theFilterDateTimePickerControl. -
getTitle
The title of theFilterDateTimePickerControl. -
getDisplayOptions
The display options of a control. -
getType
The date time picker type of aFilterDateTimePickerControl. 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.
-
builder
-