interface ReferenceLineValueLabelConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.ReferenceLineValueLabelConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_ReferenceLineValueLabelConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.ReferenceLineValueLabelConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.ReferenceLineValueLabelConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » ReferenceLineValueLabelConfigurationProperty |
The value label configuration of the label in a reference line.
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 referenceLineValueLabelConfigurationProperty: quicksight.CfnDashboardPropsMixin.ReferenceLineValueLabelConfigurationProperty = {
formatConfiguration: {
currencyDisplayFormatConfiguration: {
decimalPlacesConfiguration: {
decimalPlaces: 123,
},
negativeValueConfiguration: {
displayMode: 'displayMode',
},
nullValueFormatConfiguration: {
nullString: 'nullString',
},
numberScale: 'numberScale',
prefix: 'prefix',
separatorConfiguration: {
decimalSeparator: 'decimalSeparator',
thousandsSeparator: {
groupingStyle: 'groupingStyle',
symbol: 'symbol',
visibility: 'visibility',
},
},
suffix: 'suffix',
symbol: 'symbol',
},
numberDisplayFormatConfiguration: {
decimalPlacesConfiguration: {
decimalPlaces: 123,
},
negativeValueConfiguration: {
displayMode: 'displayMode',
},
nullValueFormatConfiguration: {
nullString: 'nullString',
},
numberScale: 'numberScale',
prefix: 'prefix',
separatorConfiguration: {
decimalSeparator: 'decimalSeparator',
thousandsSeparator: {
groupingStyle: 'groupingStyle',
symbol: 'symbol',
visibility: 'visibility',
},
},
suffix: 'suffix',
},
percentageDisplayFormatConfiguration: {
decimalPlacesConfiguration: {
decimalPlaces: 123,
},
negativeValueConfiguration: {
displayMode: 'displayMode',
},
nullValueFormatConfiguration: {
nullString: 'nullString',
},
prefix: 'prefix',
separatorConfiguration: {
decimalSeparator: 'decimalSeparator',
thousandsSeparator: {
groupingStyle: 'groupingStyle',
symbol: 'symbol',
visibility: 'visibility',
},
},
suffix: 'suffix',
},
},
relativePosition: 'relativePosition',
};
Properties
| Name | Type | Description |
|---|---|---|
| format | IResolvable | Numeric | The format configuration of the value label. |
| relative | string | The relative position of the value label. Choose one of the following options:. |
formatConfiguration?
Type:
IResolvable | Numeric
(optional)
The format configuration of the value label.
relativePosition?
Type:
string
(optional)
The relative position of the value label. Choose one of the following options:.
BEFORE_CUSTOM_LABELAFTER_CUSTOM_LABEL

.NET
Go
Java
Python
TypeScript