Interface CfnDashboardPropsMixin.ParameterSliderControlProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboardPropsMixin.ParameterSliderControlProperty.Jsii$Proxy
- Enclosing class:
CfnDashboardPropsMixin
@Stability(Stable)
public static interface CfnDashboardPropsMixin.ParameterSliderControlProperty
extends software.amazon.jsii.JsiiSerializable
A control to display a horizontal toggle bar.
This is used to change a value by sliding the toggle.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.quicksight.*;
ParameterSliderControlProperty parameterSliderControlProperty = ParameterSliderControlProperty.builder()
.displayOptions(SliderControlDisplayOptionsProperty.builder()
.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())
.maximumValue(123)
.minimumValue(123)
.parameterControlId("parameterControlId")
.sourceParameterName("sourceParameterName")
.stepSize(123)
.title("title")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboardPropsMixin.ParameterSliderControlPropertystatic final classAn implementation forCfnDashboardPropsMixin.ParameterSliderControlProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe display options of a control.default NumberThe larger value that is displayed at the right of the slider.default NumberThe smaller value that is displayed at the left of the slider.default StringThe ID of theParameterSliderControl.default StringThe source parameter name of theParameterSliderControl.default NumberThe number of increments that the slider bar is divided into.default StringgetTitle()The title of theParameterSliderControl.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDisplayOptions
The display options of a control.Returns union: either
IResolvableorCfnDashboardPropsMixin.SliderControlDisplayOptionsProperty- See Also:
-
getMaximumValue
The larger value that is displayed at the right of the slider.Default: - 0
- See Also:
-
getMinimumValue
The smaller value that is displayed at the left of the slider.Default: - 0
- See Also:
-
getParameterControlId
The ID of theParameterSliderControl.- See Also:
-
getSourceParameterName
The source parameter name of theParameterSliderControl.- See Also:
-
getStepSize
The number of increments that the slider bar is divided into.Default: - 0
- See Also:
-
getTitle
The title of theParameterSliderControl.- See Also:
-
builder
-