interface NumericFormatConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.QuickSight.CfnAnalysis.NumericFormatConfigurationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_NumericFormatConfigurationProperty |
![]() | software.amazon.awscdk.services.quicksight.CfnAnalysis.NumericFormatConfigurationProperty |
![]() | aws_cdk.aws_quicksight.CfnAnalysis.NumericFormatConfigurationProperty |
![]() | aws-cdk-lib » aws_quicksight » CfnAnalysis » NumericFormatConfigurationProperty |
The options that determine the numeric format configuration.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
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-lib';
const numericFormatConfigurationProperty: quicksight.CfnAnalysis.NumericFormatConfigurationProperty = {
currencyDisplayFormatConfiguration: {
decimalPlacesConfiguration: {
decimalPlaces: 123,
},
negativeValueConfiguration: {
displayMode: 'displayMode',
},
nullValueFormatConfiguration: {
nullString: 'nullString',
},
numberScale: 'numberScale',
prefix: 'prefix',
separatorConfiguration: {
decimalSeparator: 'decimalSeparator',
thousandsSeparator: {
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: {
symbol: 'symbol',
visibility: 'visibility',
},
},
suffix: 'suffix',
},
percentageDisplayFormatConfiguration: {
decimalPlacesConfiguration: {
decimalPlaces: 123,
},
negativeValueConfiguration: {
displayMode: 'displayMode',
},
nullValueFormatConfiguration: {
nullString: 'nullString',
},
prefix: 'prefix',
separatorConfiguration: {
decimalSeparator: 'decimalSeparator',
thousandsSeparator: {
symbol: 'symbol',
visibility: 'visibility',
},
},
suffix: 'suffix',
},
};
Properties
Name | Type | Description |
---|---|---|
currency | IResolvable | Currency | The options that determine the currency display format configuration. |
number | IResolvable | Number | The options that determine the number display format configuration. |
percentage | IResolvable | Percentage | The options that determine the percentage display format configuration. |
currencyDisplayFormatConfiguration?
Type:
IResolvable
|
Currency
(optional)
The options that determine the currency display format configuration.
numberDisplayFormatConfiguration?
Type:
IResolvable
|
Number
(optional)
The options that determine the number display format configuration.
percentageDisplayFormatConfiguration?
Type:
IResolvable
|
Percentage
(optional)
The options that determine the percentage display format configuration.