interface CurrencyDisplayFormatConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.CurrencyDisplayFormatConfigurationProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_CurrencyDisplayFormatConfigurationProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.CurrencyDisplayFormatConfigurationProperty | 
  Python | aws_cdk.aws_quicksight.CfnTemplate.CurrencyDisplayFormatConfigurationProperty | 
  TypeScript  | aws-cdk-lib » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const currencyDisplayFormatConfigurationProperty: quicksight.CfnTemplate.CurrencyDisplayFormatConfigurationProperty = {
  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',
};
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.

 .NET
 Go
 Java
 Python
 TypeScript