Interface CfnAnalysis.CurrencyDisplayFormatConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnalysis.CurrencyDisplayFormatConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnAnalysis

@Stability(Stable) public static interface CfnAnalysis.CurrencyDisplayFormatConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*;
 CurrencyDisplayFormatConfigurationProperty currencyDisplayFormatConfigurationProperty = CurrencyDisplayFormatConfigurationProperty.builder()
         .decimalPlacesConfiguration(DecimalPlacesConfigurationProperty.builder()
                 .decimalPlaces(123)
                 .build())
         .negativeValueConfiguration(NegativeValueConfigurationProperty.builder()
                 .displayMode("displayMode")
                 .build())
         .nullValueFormatConfiguration(NullValueFormatConfigurationProperty.builder()
                 .nullString("nullString")
                 .build())
         .numberScale("numberScale")
         .prefix("prefix")
         .separatorConfiguration(NumericSeparatorConfigurationProperty.builder()
                 .decimalSeparator("decimalSeparator")
                 .thousandsSeparator(ThousandSeparatorOptionsProperty.builder()
                         .symbol("symbol")
                         .visibility("visibility")
                         .build())
                 .build())
         .suffix("suffix")
         .symbol("symbol")
         .build();
 
  • Method Details

    • getDecimalPlacesConfiguration

      @Stability(Stable) @Nullable default Object getDecimalPlacesConfiguration()
      The option that determines the decimal places configuration.
    • getNegativeValueConfiguration

      @Stability(Stable) @Nullable default Object getNegativeValueConfiguration()
      The options that determine the negative value configuration.
    • getNullValueFormatConfiguration

      @Stability(Stable) @Nullable default Object getNullValueFormatConfiguration()
      The options that determine the null value format configuration.
    • getNumberScale

      @Stability(Stable) @Nullable default String getNumberScale()
      Determines the number scale value for the currency format.
    • getPrefix

      @Stability(Stable) @Nullable default String getPrefix()
      Determines the prefix value of the currency format.
    • getSeparatorConfiguration

      @Stability(Stable) @Nullable default Object getSeparatorConfiguration()
      The options that determine the numeric separator configuration.
    • getSuffix

      @Stability(Stable) @Nullable default String getSuffix()
      Determines the suffix value of the currency format.
    • getSymbol

      @Stability(Stable) @Nullable default String getSymbol()
      Determines the symbol for the currency format.
    • builder

      Returns:
      a CfnAnalysis.CurrencyDisplayFormatConfigurationProperty.Builder of CfnAnalysis.CurrencyDisplayFormatConfigurationProperty