Interface CfnTopic.DisplayFormatOptionsProperty

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

@Stability(Stable) public static interface CfnTopic.DisplayFormatOptionsProperty extends software.amazon.jsii.JsiiSerializable
A structure that represents additional options for display formatting.

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.*;
 DisplayFormatOptionsProperty displayFormatOptionsProperty = 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();
 

See Also: