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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTopic.DefaultFormattingProperty
static final class
An implementation forCfnTopic.DefaultFormattingProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDisplayFormat
The display format.Valid values for this structure are
AUTO
,PERCENT
,CURRENCY
,NUMBER
,DATE
, andSTRING
. -
getDisplayFormatOptions
The additional options for display formatting. -
builder
-