Interface CfnTopic.DefaultFormattingProperty

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

@Stability(Stable) public static interface CfnTopic.DefaultFormattingProperty extends software.amazon.jsii.JsiiSerializable
A structure that represents a default formatting definition.

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.*;
 DefaultFormattingProperty defaultFormattingProperty = DefaultFormattingProperty.builder()
         .displayFormat("displayFormat")
         .displayFormatOptions(DisplayFormatOptionsProperty.builder()
                 .blankCellFormat("blankCellFormat")
                 .currencySymbol("currencySymbol")
                 .dateFormat("dateFormat")
                 .decimalSeparator("decimalSeparator")
                 .fractionDigits(123)
                 .groupingSeparator("groupingSeparator")
                 .negativeFormat(NegativeFormatProperty.builder()
                         .prefix("prefix")
                         .suffix("suffix")
                         .build())
                 .prefix("prefix")
                 .suffix("suffix")
                 .unitScaler("unitScaler")
                 .useBlankCellFormat(false)
                 .useGrouping(false)
                 .build())
         .build();
 

See Also: