Interface CfnTemplate.NumberDisplayFormatConfigurationProperty

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

@Stability(Stable) public static interface CfnTemplate.NumberDisplayFormatConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*;
 NumberDisplayFormatConfigurationProperty numberDisplayFormatConfigurationProperty = NumberDisplayFormatConfigurationProperty.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")
         .build();
 

See Also: