interface NumberDisplayFormatConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.NumberDisplayFormatConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.NumberDisplayFormatConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.NumberDisplayFormatConfigurationProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnTemplate » NumberDisplayFormatConfigurationProperty |
The options that determine the number display format configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const numberDisplayFormatConfigurationProperty: quicksight.CfnTemplate.NumberDisplayFormatConfigurationProperty = {
decimalPlacesConfiguration: {
decimalPlaces: 123,
},
negativeValueConfiguration: {
displayMode: 'displayMode',
},
nullValueFormatConfiguration: {
nullString: 'nullString',
},
numberScale: 'numberScale',
prefix: 'prefix',
separatorConfiguration: {
decimalSeparator: 'decimalSeparator',
thousandsSeparator: {
symbol: 'symbol',
visibility: 'visibility',
},
},
suffix: 'suffix',
};
Properties
| Name | Type | Description |
|---|---|---|
| decimal | IResolvable | Decimal | The option that determines the decimal places configuration. |
| negative | IResolvable | Negative | The options that determine the negative value configuration. |
| null | IResolvable | Null | The options that determine the null value format configuration. |
| number | string | Determines the number scale value of the number format. |
| prefix? | string | Determines the prefix value of the number format. |
| separator | IResolvable | Numeric | The options that determine the numeric separator configuration. |
| suffix? | string | Determines the suffix value of the number format. |
decimalPlacesConfiguration?
Type:
IResolvable | Decimal
(optional)
The option that determines the decimal places configuration.
negativeValueConfiguration?
Type:
IResolvable | Negative
(optional)
The options that determine the negative value configuration.
nullValueFormatConfiguration?
Type:
IResolvable | Null
(optional)
The options that determine the null value format configuration.
numberScale?
Type:
string
(optional)
Determines the number scale value of the number format.
prefix?
Type:
string
(optional)
Determines the prefix value of the number format.
separatorConfiguration?
Type:
IResolvable | Numeric
(optional)
The options that determine the numeric separator configuration.
suffix?
Type:
string
(optional)
Determines the suffix value of the number format.

.NET
Java
Python
TypeScript