Interface CfnTemplate.DefaultRelativeDateTimeControlOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.DefaultRelativeDateTimeControlOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.DefaultRelativeDateTimeControlOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The default options that correspond to the
RelativeDateTime filter control type.
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.*;
DefaultRelativeDateTimeControlOptionsProperty defaultRelativeDateTimeControlOptionsProperty = DefaultRelativeDateTimeControlOptionsProperty.builder()
.commitMode("commitMode")
.displayOptions(RelativeDateTimeControlDisplayOptionsProperty.builder()
.dateTimeFormat("dateTimeFormat")
.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 classstatic final classAn implementation forCfnTemplate.DefaultRelativeDateTimeControlOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCommitMode
The visibility configuration of the Apply button on aRelativeDateTimeControl.- See Also:
-
getDisplayOptions
The display options of a control.Returns union: either
IResolvableorCfnTemplate.RelativeDateTimeControlDisplayOptionsProperty- See Also:
-
builder
@Stability(Stable) static CfnTemplate.DefaultRelativeDateTimeControlOptionsProperty.Builder builder()
-