Interface CfnAnalysis.FilterSliderControlProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.FilterSliderControlProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.FilterSliderControlProperty
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.services.quicksight.*; FilterSliderControlProperty filterSliderControlProperty = FilterSliderControlProperty.builder() .filterControlId("filterControlId") .maximumValue(123) .minimumValue(123) .sourceFilterId("sourceFilterId") .stepSize(123) .title("title") // the properties below are optional .displayOptions(SliderControlDisplayOptionsProperty.builder() .infoIconLabelOptions(SheetControlInfoIconLabelOptionsProperty.builder() .infoIconText("infoIconText") .visibility("visibility") .build()) .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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.FilterSliderControlProperty
static final class
An implementation forCfnAnalysis.FilterSliderControlProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The display options of a control.The ID of theFilterSliderControl
.The larger value that is displayed at the right of the slider.The smaller value that is displayed at the left of the slider.The source filter ID of theFilterSliderControl
.The number of increments that the slider bar is divided into.getTitle()
The title of theFilterSliderControl
.default String
getType()
The type of theFilterSliderControl
.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFilterControlId
The ID of theFilterSliderControl
.- 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:
-
getSourceFilterId
The source filter ID of theFilterSliderControl
.- See Also:
-
getStepSize
The number of increments that the slider bar is divided into.Default: - 0
- See Also:
-
getTitle
The title of theFilterSliderControl
.- See Also:
-
getDisplayOptions
The display options of a control.- See Also:
-
getType
The type of theFilterSliderControl
. Choose one of the following options:.SINGLE_POINT
: Filter against(equals) a single data point.RANGE
: Filter data that is in a specified range.
- See Also:
-
builder
-