interface DefaultSliderControlOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.DefaultSliderControlOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_DefaultSliderControlOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.DefaultSliderControlOptionsProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.DefaultSliderControlOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » DefaultSliderControlOptionsProperty |
The default options that correspond to the Slider filter control type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const defaultSliderControlOptionsProperty: quicksight_mixins.CfnAnalysisPropsMixin.DefaultSliderControlOptionsProperty = {
displayOptions: {
infoIconLabelOptions: {
infoIconText: 'infoIconText',
visibility: 'visibility',
},
titleOptions: {
customLabel: 'customLabel',
fontConfiguration: {
fontColor: 'fontColor',
fontDecoration: 'fontDecoration',
fontFamily: 'fontFamily',
fontSize: {
absolute: 'absolute',
relative: 'relative',
},
fontStyle: 'fontStyle',
fontWeight: {
name: 'name',
},
},
visibility: 'visibility',
},
},
maximumValue: 123,
minimumValue: 123,
stepSize: 123,
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| display | IResolvable | Slider | The display options of a control. |
| maximum | number | The larger value that is displayed at the right of the slider. |
| minimum | number | The smaller value that is displayed at the left of the slider. |
| step | number | The number of increments that the slider bar is divided into. |
| type? | string | The type of the DefaultSliderControlOptions . Choose one of the following options:. |
displayOptions?
Type:
IResolvable | Slider
(optional)
The display options of a control.
maximumValue?
Type:
number
(optional, default: 0)
The larger value that is displayed at the right of the slider.
minimumValue?
Type:
number
(optional, default: 0)
The smaller value that is displayed at the left of the slider.
stepSize?
Type:
number
(optional, default: 0)
The number of increments that the slider bar is divided into.
type?
Type:
string
(optional)
The type of the DefaultSliderControlOptions . Choose one of the following options:.
SINGLE_POINT: Filter against(equals) a single data point.RANGE: Filter data that is in a specified range.

.NET
Go
Java
Python
TypeScript