Interface CfnDashboard.ParameterDateTimePickerControlProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.ParameterDateTimePickerControlProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.ParameterDateTimePickerControlProperty
extends software.amazon.jsii.JsiiSerializable
A control from a date parameter that specifies 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.*;
ParameterDateTimePickerControlProperty parameterDateTimePickerControlProperty = ParameterDateTimePickerControlProperty.builder()
.parameterControlId("parameterControlId")
.sourceParameterName("sourceParameterName")
.title("title")
// the properties below are optional
.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())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.ParameterDateTimePickerControlPropertystatic final classAn implementation forCfnDashboard.ParameterDateTimePickerControlProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameterControlId
The ID of theParameterDateTimePickerControl.- See Also:
-
getSourceParameterName
The name of theParameterDateTimePickerControl.- See Also:
-
getTitle
The title of theParameterDateTimePickerControl.- See Also:
-
getDisplayOptions
The display options of a control.Returns union: either
IResolvableorCfnDashboard.DateTimePickerControlDisplayOptionsProperty- See Also:
-
builder
-