interface CurrencyDisplayFormatConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.CurrencyDisplayFormatConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.CurrencyDisplayFormatConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.CurrencyDisplayFormatConfigurationProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnTemplate » CurrencyDisplayFormatConfigurationProperty |
The options that determine the currency 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 currencyDisplayFormatConfigurationProperty: quicksight.CfnTemplate.CurrencyDisplayFormatConfigurationProperty = {
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',
};
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 for the currency format. |
prefix? | string | Determines the prefix value of the currency format. |
separator | IResolvable | Numeric | The options that determine the numeric separator configuration. |
suffix? | string | Determines the suffix value of the currency format. |
symbol? | string | Determines the symbol for the currency 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 for the currency format.
prefix?
Type:
string
(optional)
Determines the prefix value of the currency format.
separatorConfiguration?
Type:
IResolvable
|
Numeric
(optional)
The options that determine the numeric separator configuration.
suffix?
Type:
string
(optional)
Determines the suffix value of the currency format.
symbol?
Type:
string
(optional)
Determines the symbol for the currency format.