interface ParameterSliderControlProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.ParameterSliderControlProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_ParameterSliderControlProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.ParameterSliderControlProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.ParameterSliderControlProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » ParameterSliderControlProperty |
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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const parameterSliderControlProperty: quicksight.CfnDashboardPropsMixin.ParameterSliderControlProperty = {
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,
parameterControlId: 'parameterControlId',
sourceParameterName: 'sourceParameterName',
stepSize: 123,
title: 'title',
};
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. |
| parameter | string | The ID of the ParameterSliderControl . |
| source | string | The source parameter name of the ParameterSliderControl . |
| step | number | The number of increments that the slider bar is divided into. |
| title? | string | The title of the ParameterSliderControl . |
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.
parameterControlId?
Type:
string
(optional)
The ID of the ParameterSliderControl .
sourceParameterName?
Type:
string
(optional)
The source parameter name of the ParameterSliderControl .
stepSize?
Type:
number
(optional, default: 0)
The number of increments that the slider bar is divided into.
title?
Type:
string
(optional)
The title of the ParameterSliderControl .

.NET
Go
Java
Python
TypeScript